@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100&display=swap");

/* gov bar */
.gov-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0px;
  padding: 0;
  grid-auto-rows: minmax(21px, auto);
  background: #dbe8f5;
}

.gov-item:nth-child(1) {
  grid-column-start: span 1;
  background: #3c67c0;
}
.gov-item:nth-child(1) > a > img {
  height: 18px;
  margin-right: 5px;
  /*margin-top:3px;*/
  justify-content: center;
  display: flex;
  object-fit: contain;
}
.gov-item:nth-child(2) {
  grid-column-start: span 3;
  justify-content: flex-start;
  display: flex;
}
.gov-item:nth-child(2) > a {
  text-decoration: none;
  margin-left: 10px;
  color: #3c67c0;
  font-size: 12px;
}
.gov-item:nth-child(3) {
  grid-column-start: span 2;
  justify-content: center;
  display: flex;
}
.gov-item:nth-child(3) > a {
  text-decoration: none;
  margin-left: 10px;
  color: black;
  font-size: 12px;
  text-transform: uppercase;
}
.gov-item:nth-child(3) > a:hover {
  font-weight: bold;
}

@media (max-width: 992px) {
  .gov-item:nth-child(1) {
    grid-column-start: span 2;
  }
  .gov-item:nth-child(2) {
    display: none;
  }
  .gov-item:nth-child(3) {
    grid-column-start: span 4;
    justify-content: flex-end;
    display: flex;
    margin-right: 10px;
  }
}
@media (max-width: 576px) {
  .gov-item:nth-child(1) {
    grid-column-start: span 3;
  }
  .gov-item:nth-child(2) {
    display: none;
  }
  .gov-item:nth-child(3) {
    display: none;
  }
}
/* gov bar */
p{
  text-align: left;
}

/* accessibility */
.hight-contrast {
  -webkit-filter: invert(1);
  filter: invert(1);
  background-color: #fff;
}

.font-size-xx-small {
  font-size: xx-small;
}
.font-size-x-small {
  font-size: x-small;
}
.font-size-small {
  font-size: small;
}
.font-size-large {
  font-size: large;
}
.font-size-x-large {
  font-size: x-large;
}
.font-size-xx-large {
  font-size: xx-large;
}

.accessibility-option-icon {
  width: 32px;
  height: 32px;
}
.accessibility-option {
  cursor: pointer;
}
.accessibility-option:hover {
  background-color: var(--mme-green);
  color: white;
}

.accessibility-option > a {
  text-decoration: none;
  color: black;
}
.accessibility-option:hover > a {
  color: white;
}

.tool-box-header {
  margin-top: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
}
.tool-box-header:hover {
  filter: var(--mme-gray-green-filter);
}
.btn-tool-box-header {
  border: 1px solid transparent;
  background-color: transparent;
  width: 32px;
  height: 32px;
}
.btn-tool-box-options {
  border: 1px solid transparent;
  background-color: transparent;
}

.navbar-form {
  display: flex;
  flex-direction: row;
  border-radius: 12px;
  border-top: 2px solid gray;
  border-right: 2px solid gray;
  border-bottom: 2px solid gray;
  border-left: 2px solid gray;
}
.search-field {
  border-radius: 10px;
  flex-grow: 2;
  border: none;
}

.search-field:focus {
  outline: none;
}
.search-button {
  background-color: var(--mme-gray);
  border-radius: 9px;
  border: none;
  color: white;
}
.btn-group {
  float: right;
}

/* accessibility */

/* Main menu  */

.logo-ppal {
  height: 80px;
  object-fit: contain;
}

.mme-nav-item {
  border-left: 1px solid var(--mme-gray);
  max-width: 150px;
  color: black;
  text-align: center;
  display: flex;
  align-items: center;
}

.nav-link .dropdown-icon {
  display: none;
}

.mme-nav-item.active::after {
  position: absolute;
  content: "";
  border-bottom: 4px solid var(--mme-green);
  width: 70%;
  transform: translateX(-50%);
  margin-bottom: 5px;
  bottom: 0px;
  left: 50%;
}

.mme-nav-item > a > text {
  color: black;
  font-size: 1rem;
}

.mme-navbar-nav li:first-child {
  border: none;
}

.mme-main-menu {
  right: auto;
  left: 50%;
  transform: translate(-50%, 0);
}

.mme-dropdown-menu {
  background: var(--mme-dark-gray);
  border-color: var(--mme-gray);
  border-radius: 0;
  max-width: 250px;
  min-width: 200px;
}

.mme-dropdown-menu > li > a {
  color: #ffffff;
  font-size: 1.2rem;
  display: inline-block;
  white-space: pre-wrap;
}

.mme-dropdown-menu > li > a:hover {
  background: var(--mme-green-selected);
  color: var(--mme-dark-gray);
  font-weight: bold;
}

.dropdown-icon {
  text-align: center;
  display: flex;
  align-items: center;
}
.dropdown-icon > i {
  color: #ffffff;
  font-size: 14pt;
}

.mme-dropdown-divider {
  color: #fff;
  opacity: 1;
  margin: 0 15px 0 15px;
}

.dropdown-item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.dropdown-item-img img {
  width: 125px;
  height: 125px;
}

/* ============ desktop view ============ */
@media all and (min-width: 1200px) {
  .dropdown-menu li {
    position: relative;
  }

  .navbar .nav-item:hover .mme-main-menu {
    display: block;
  }

  .dropdown-menu .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }

  .dropdown-menu .submenu-left {
    right: 100%;
    left: auto;
  }

  .dropdown-menu > li:hover {
    background-color: var(--mme-green-selected);
  }

  .dropdown-menu > li:hover > .submenu {
    display: block;
  }
}

.num-columnas2  {
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
      -moz-column-count: 2; /* Firefox */
      column-count: 2;
}
.lista-anidada ul  {
  -webkit-column-count: 3; /* Chrome, Safari, Opera */
      -moz-column-count: 3; /* Firefox */
      column-count: 3;
}


.num-columnas2_list > ul  {
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
      -moz-column-count: 2; /* Firefox */
      column-count: 2;
}

.intro_modelo  ul  {
    column-count: 2;
}
.intro_modelo ul li b{
  color: var(--mme-blue);
}
.intro_modelo ul li::marker{
  color: var(--mme-blue);
}
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 1199px) {
  .navbar-toggler {
    background-color: var(--mme-gray);
  }
  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0;
  }
  .navbar-toggler span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: white;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }

  .navbar-collapse {
    border: 1px solid var(--mme-gray);
    border-radius: 10px;
    margin-top: 10px;
  }
  .navbar-nav {
    margin: 10px;
  }
  .mme-main-menu {
    right: auto;
    left: 50%;
    transform: none;
  }
  .mme-nav-item {
    border-left: none;
    max-width: 100%;
    color: black;
    text-align: start;
    display: unset;
    align-items: unset;
  }
  .mme-nav-item > a {
    border-bottom: 1px solid var(--mme-gray);
  }

  .nav-link .dropdown-icon {
    display: block;
  }
  .nav-link .dropdown-icon > i {
    color: var(--mme-green);
    font-size: 1.5rem;
  }
  .nav-link.show .dropdown-icon {
    transform: rotate(90deg);
  }
  .mme-nav-item.active::after {
    position: absolute;
    content: "";
    border-bottom: none;
    width: 70%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    bottom: 0px;
    left: 50%;
  }
  .mme-dropdown-menu {
    background: var(--mme-dark-gray);
    border-color: var(--mme-gray);
    border-radius: 0;
    max-width: 100%;
    min-width: 100%;
  }

  .mme-dropdown-menu > li > a {
    color: #ffffff;
    display: inline-block;
    white-space: pre-wrap;
  }

  .dropdown-menu .dropdown-menu {
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    margin-bottom: 0.5rem;
  }
  .dropdown-menu > li:hover {
    background-color: var(--mme-green-selected);
    margin: 0 10px 0 15px;
  }
  .dropdown-menu > li:hover > a > text {
    margin-left: -15px;
  }
  .dropdown-menu > li:hover > a > div > i {
    margin-right: -7px;
  }

  .dropdown-item.open > div > i {
    transform: rotate(90deg);
    margin-right: -7px;
  }
  .lista-anidada ul  {
      -moz-column-count: 2; /* Firefox */
      column-count: 2;
  }
}
@media (max-width: 480px) {
  .logo-ppal {
    width: 230px;
    height: 100px;
    object-fit: contain;
  }
}
@media (max-width: 430px) {

  .cards-slider-room-button-moreinfo{
    font-size: 0.8rem !important;
    height: 2rem !important;
  }
}
/* ============ small devices .end// ============ */
/* Main menu  */

/* footer */
.footer-container {
  left: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0px;
  padding: 0;
  grid-auto-rows: minmax(285px, auto);
  background: var(--mme-blue);
}

.footer-item {
  margin: 30px 0 30px 0;
  color: white;
  padding: 1rem;
}
.img-gov-footer {
  width: 200px;
  object-fit: contain;
}
.footer-item > p {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.footer-item > div > p {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  text-align: left !important;
}
.footer-item > div > div > div > p {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}
.footer-item > div > p > a {
  text-decoration: none;
  color: white;
}

.footer-socialnetworks {
  margin: 1rem 0 0 0;
}

.footer-socialnetworks div a div {
  color: white;
}
.footer-socialnetworks div a,
div p a {
  text-decoration: none;
}

.footer-item:nth-child(1) {
  text-align: center;
}
.footer-item:nth-child(2) {
  border-left: 1px solid white;
}
.footer-item:nth-child(3) {
  border-left: 1px solid white;
}

@media (max-width: 992px) {
  .footer-item:nth-child(2) {
    grid-column-start: span 2;
  }
  .footer-item:nth-child(3) {
    grid-column-start: span 3;
    border-left: 0px solid white;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .footer-item {
    margin-top: 5px;
  }
  .footer-socialnetworks {
    margin: 1rem 0 0 0;
  }
  .footer-item:nth-child(1) {
    grid-column-start: span 3;
    text-align: center;
  }
  .footer-item:nth-child(2) {
    grid-column-start: span 3;
    border-left: 0px solid white;
  }
  .footer-item:nth-child(3) {
    grid-column-start: span 3;
    border-left: 0px solid white;
  }
  .lista-anidada ul  {
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
}
.intro_modelo  ul  {
  column-count: 1;
}
}


.w-90{
  width: 95.8% !important;
  margin: auto !important;
  background-color: #e8e4e4;
}
/* footer */

/* carousel */

.img-carousel {
  width: 100%;
  height: auto;
  /* object-fit: fill; */
}

/* @media (max-width: 992px) {
  .img-carousel {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .img-carousel {
    height: 215px;
  }
}

@media (max-width: 576px) {
  .img-carousel {
    height: auto;
  }
} */

.carousel-mme .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: -2.6rem;
  margin-left: 15%;
  list-style: none;
}

.carousel-mme .carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 30px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--mme-gray);
  background-clip: padding-box;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

.carousel-mme .carousel-indicators .active {
  opacity: 1;
  background-color: var(--mme-green);
  /* border: 1px solid var(--mme-green); */
}

.carousel-mme .carousel-caption {
  position: absolute;
  right: 10%;
  bottom: 1.25rem;
  left: 10%;
  padding-top: 1.25rem;
  padding-left: 1.25rem;
  color: #fff;
  text-align: left;
  background: rgba(51, 102, 204, 0.85);
}
/* carousel */

/* section spacing */
.section-spacing {
  margin-bottom: 5rem;
}
/* section spacing */

/* interesting-links  */
.interesting-links-container {
  background-color: var(--mme-soft-gray);
  border-bottom: 10px solid var(--mme-green);
}
.interesting-links-svg {
  filter: invert(100%) sepia(10%) saturate(1339%) hue-rotate(130deg)
    brightness(98%) contrast(100%);
  width: 4rem;
  height: 4rem;
}
.interesting-links-svg > image {
  width: 4rem;
  height: 4rem;
}

.interesting-links-title-container {
  background-color: var(--mme-green);
}

.interesting-links-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 10px;
  margin-left: 20px;
}

.interesting-links-item-container {
  height: 60px;
  border-top: 2px solid #c7c5c5;
  margin-left: 5px;
  margin-right: 5px;
}

.interesting-links-item-first {
  border-top: 2px solid transparent;
}

.interesting-links-item {
  font-weight: 800;
  font-size: 1rem;
}

.interesting-links-item-container div a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: black;
}
/* interesting-links  */

/* mme-section */
.mme-section-container {
  margin: 1rem 0 1rem;
  background-color: var(--mme-green);
  min-height: 50px;
}
.mme-section-title {
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  margin-top: 7px;
}
/* mme-section */

/* Titles */
.title-page {
  font-family: "Work Sans", sans-serif;
  font-size: 2.1rem;
  margin-top: 10px;
  margin-bottom: 10px;
  width: auto;
  border-bottom: 3pt solid var(--mme-green);
  padding-left: 0px !important;
  color: var(--mme-blue);
  font-weight: 600;
}
.title-page-h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.4rem;
  padding-left: 0px !important;
  color: var(--mme-blue);
  font-weight: 600;
}

.title-page-special {
  font-family: "Work Sans", sans-serif;
  font-size: 2.5rem;
  /* margin-top: 10px; */
  margin-bottom: 20px;
  color: var(--mme-blue);
  display: block;
  line-height: 1.25;
}

.title-page-special:after {
  display: block;
  clear: both;
  content: "";
  position: relative;
  left: 0;
  bottom: 0;
  max-width: 4.3rem;
  height: 1px;
  width: 50%;
  border-bottom: 3px solid var(--mme-green);
}
.intro-section > p {
  font-size: 1.2rem;
}

.img-intro-section {
  height: 550px !important;
}

/* Titles */

/* gaps */
.gaps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 550px;
  padding: 0px;
  grid-gap: 0px;
}

@media (max-width: 992px) {
  .gaps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gaps-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .title-page-special {
    font-size: 2rem;
  }
}

.gaps-card {
  position: relative;
  transition: 0.3s ease-out;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}

.gaps-card-img {
  margin: 0;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.gaps-card-img:hover {
  scale: 1;
}

.gaps-card-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 85px;
  background-color: #fff;
  transition: all 0.5s cubic-bezier(0.48, -0.28, 0.41, 1.4);
  overflow: hidden;
}
.gaps-card-content-large {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 85px;
  background-color: #fff;
  transition: all 0.5s cubic-bezier(0.48, -0.28, 0.41, 1.4);
  overflow: hidden;
}
.gaps-card-content-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  transition: all 0.5s cubic-bezier(0.48, -0.28, 0.41, 1.4);
  overflow: hidden;
}

.gap-item-link {
  cursor: pointer;
}

.gaps-card:hover .gaps-card-content {
  width: 100%;
  height: 75%;
  left: 0;
  bottom: 0;
}
.gaps-card:hover .gaps-card-content-large {
  width: 100%;
  height: 90%;
  left: 0;
  bottom: 0;
}

.gaps-text {
  position: relative;
  font-size: 1.1rem;
  min-height: 210px;
  max-height: 210px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.gaps-text  p{
  color: white !important;
}
.gaps-text-large {
  position: relative;
  font-size: 1.03rem;
  min-height: 210px;
  max-height: 510px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 15;
  -webkit-box-orient: vertical;
}
.divider {
  width: 100%;
}
.gaps-cards-button {
  background-color: var(--mme-green);
  color: white;
  border-radius: 15px;
  width: 40rem;
  height: 2.8rem;
  border: 4px solid white;
  text-align: center;
  font-size: 1.4rem;
  padding: 0px;
  text-decoration: none;
}
/* gaps */

/* links styles */
/* a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: white;
} */
/* links styles */

/* events and citizen spaces styles */
.events-calendar {
  margin-top: 100px;
  margin-left: 50px;
}

@media (max-width: 1200px) {
  .events-calendar {
    margin-top: 10px;
    margin-left: 25%;
  }
}

@media (max-width: 576px) {
  .events-calendar {
    margin-top: 10px;
    margin-left: 5%;
  }
}

.events-calendar > input {
  display: none;
}

.event {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 150px;
  bottom: 3px;
  left: calc(47% - 1.5px);
  content: " ";
  display: block;
  background: var(--mme-blue);
}

.event-description {
  width: 8px;
  height: 8px;
  border-radius: 150px;
  background: var(--mme-blue);
}

.event-description-text {
  font-size: 0.8rem;
  color: var(--mme-blue);
}
/* events and citizen spaces styles */

/* buttons */
.more-info-button {
  background-color: var(--mme-green);
  color: white;
  border-radius: 15px;
  width: 40rem;
  height: 3.2rem;
  border: 4px solid white;
  text-align: center;
  font-size: 1.8rem;
  padding: 0px;
  text-decoration: none;
  transition: 0.7s
}
.more-info-button:hover {
  background-color: var(--mme-dark-gray);
  color: white;
}

.more-info-button-large {
  background-color: var(--mme-green);
  color: white;
  border-radius: 15px;
  width: 65rem;
  height: 3.2rem;
  border: 4px solid white;
  text-align: center;
  font-size: 1.8rem;
  padding: 0px;
  text-decoration: none;
}
.more-info-button-large:hover {
  color: white;
}

.divider {
  width: 100%;
}
/* buttons */

/* Interesting news */
.interesting-news-container {
  background-color: var(--mme-soft-gray);
  border-bottom: 10px solid var(--mme-green);
}
.interesting-news-header {
  background-color: var(--mme-green);
  padding: 5px;
}
.interesting-news-svg {
  filter: invert(100%) sepia(10%) saturate(1339%) hue-rotate(130deg)
    brightness(98%) contrast(100%);
  width: 4rem;
  height: 4rem;
}
.interesting-news-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 10px;
  margin-left: 20px;
}
.interesting-news-svg > image {
  width: 4rem;
  height: 4rem;
}

.interesting-news-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  grid-auto-rows: minmax(80px, 80px);
}

.interesting-news-img {
  grid-column: 1 / 1;
  grid-row: 1;
  height: 80px;
  width: 100px;
  object-fit: cover;
}

.interesting-news-description {
  grid-column: 2 / 5;
  grid-row: 1;
}
.interesting-news-description > a > div {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Interesting news */

/* Sharing block */
.sharing-wrapper {
  background-color: var(--mme-soft-gray);
}
.sharing-item {
  padding: 10px;
  border-right: 2px solid black;
  height: 4rem;
}
.sharing-item > p {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.sharing-svg {
  width: 3rem;
  height: 3rem;
}

.sharing-svg > image {
  width: 3rem;
  height: 3rem;
}
/* Sharing block */

/* card slider */
.slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4px 16px;
}

#cards-container {
  overflow: hidden;
  margin: 20px;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 99999px;
}

.slider-card {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 80%;
  margin: 15px 7.5px;
}

.slider-card:hover {
  -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  /* cursor: pointer; */
}

.element-card {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  min-width: 30%;
  margin: 15px 7.5px;
}

.mme-item-card-icon {
  filter: var(--mme-green-filter);
  width: 150px;
  height: 150px;
}.mme-taps .nav-link > div
.mme-item-card-icon > image {
  width: 150px;
  height: 150px;
}

.mme-item-card-icon-black {
  width: 150px;
  height: 150px;
}
.mme-item-card-icon-black > image {
  width: 150px;
  height: 150px;
}

.cards-slider-title {
  color: var(--mme-blue);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  min-height: 55px;
  max-height: 55px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cards-slider-text {
  line-height: 1.25;
  min-height: 300px;
  max-height: 340px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 15;
  -webkit-box-orient: vertical;
  text-align: justify!important;
}
.cards-slider-text-small {
  line-height: 1.25;
  min-height: 150px;
  max-height: 340px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 15;
  -webkit-box-orient: vertical;
}

.cards-slider-room-button {
  background-color: var(--mme-green);
  color: white;
  border-radius: 15px;
  width: 40rem;
  height: 2.8rem;
  border: 4px solid white;
  text-align: center;
  font-size: 1.4rem;
  padding: 0px;
  text-decoration: none;
}
.cards-slider-room-button-moreinfo {
  background-color: var(--mme-green);
  color: white;
  border-radius: 15px;
  width: 60rem;
  height: 2.8rem;
  border: 4px solid white;
  text-align: center;
  font-size: 1.4rem;
  padding: 0px;
  text-decoration: none;
}

.cards-slider-room-button:hover {
  color: white;
}

.divider {
  width: 100%;
}
/* card slider */

/* MME taps */

.mme-taps .nav-link.active > div {
  background-color: var(--mme-green);
  color: var(--mme-dark-gray);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 600;
}

.mme-taps .nav-link > div {
  background-color: var(--mme-soft-gray);
  color: black-;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 600;
  width: 200px;
  min-height: 60px;
}

.mme-taps-content > * {
  font-size: 1.25rem;
  margin-top: 10px;
  text-align: left;
}

/* MME taps */

/* MME menu options */
/* Left vertical menu and show content in right panel. On mobile show the content below the button */
.wrapper-mme-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  grid-auto-rows: minmax(100px, auto);
}
.mme-menu-options {
  grid-column: 1 / 2;
  grid-row: 1/5;
  background-color: var(--mme-soft-gray);
  text-align: center;
}
.mme-menu-options2 {
  grid-column: 1 / 2;
  grid-row: 1/5;
  background-color: var(--mme-soft-gray);
  text-align: center;
}
.mme-menu-content {
  grid-column: 2 / 5;
  grid-row: 1 / 5;
}

.mme-menu-option.active {
  background-color: var(--mme-blue);
  color: white;
}
.mme-menu-option2.active2 {
  background-color: var(--mme-blue);
  color: white;
}
.mme-menu-option3.active3 {
  background-color: var(--mme-blue);
  color: white;
}
.mme-menu-option {
  border: 2px solid var(--mme-blue);
  border-radius: 20px;
  padding: 10px;
  margin: 20px;
  background-color: white;
  color: var(--mme-blue);
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
}
.mme-menu-option2 {
  border: 2px solid var(--mme-blue);
  border-radius: 20px;
  padding: 10px;
  margin: 20px;
  background-color: white;
  color: var(--mme-blue);
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
}

.mme-menu-option3 {
  border: 2px solid var(--mme-blue);
  border-radius: 20px;
  padding: 10px;
  margin: 20px;
  background-color: white;
  color: var(--mme-blue);
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
}

/* texto */

.convencional-text .intro-section p {
  font-size: 1.17rem;
}

.content-item-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-item-image > img {
  height: 200px;
  width: 200px;
  object-fit: cover;
}

.content-item-title {
  font-family: "Work Sans", sans-serif;
  font-size: 2rem;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--mme-blue);
  display: block;
}
.title-blue-no-line {
  font-family: "Work Sans", sans-serif;
  font-size: 2rem;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--mme-blue);
  font-weight: 600;
}

.content-item-title:after {
  display: block;
  clear: both;
  content: "";
  position: relative;
  left: 0;
  bottom: 0;
  max-width: 4.3rem;
  height: 1px;
  width: 50%;
  border-bottom: 3px solid var(--mme-green);
}

.mme-menu-content-item {
  display: none;
}
.mme-menu-content-item.active {
  display: block;
}
.mme-menu-content-item2 {
  display: none;
}
.mme-menu-content-item2.active2 {
  display: block;
}
.mme-menu-content-item3 {
  display: none;
}
.mme-menu-content-item3.active3 {
  display: block;
}

.num-columnas {
  column-count: 2;
  column-gap: 5px;
}
.num-columnas-data {
  column-count: 2;
  column-gap: 40px;
}

.num-list>ol>li{
  font-size: 1.2rem;
}
.num-list>ol>li::marker{
  color: #0d6efd;
  font-weight: bold;
}
.ul-list>ul>li{
  font-size: 1.2rem;
  color: #0d6efd;
}


.list-ul>ul>li{
  color: #0d6efd !important;
  text-decoration: underline;
}
.list-ul>ul>li::marker{
  color: #000;
}
.list-ul>ul>li>ul>li::marker{
  color: #000;
}

.num-columnas-ul >ul{
  column-count: 2;
  column-gap: 40px;
}

.num-columnas3 {
  column-count: 3;
  column-gap: 5px;
}

.num-columnas-ul >ul>li{
  color: #0d6efd !important;
}
.num-columnas-ul >ul>li :is(b,h4){
  color: black;
  text-decoration: underline;
}
.num-columnas-ul >ul>li::marker{
  color: black;
}
.num-columnas > ul > li > a {
  text-decoration: none;
}




@media (max-width: 768px) {
  .mme-menu-options {
    grid-column: 1 / 5;
    grid-row: 1/5;
    background-color: transparent;
  }
  .mme-menu-options2 {
    grid-column: 1 / 5;
    grid-row: 1/5;
    background-color: transparent;
  }
  .num-columnas {
    column-count: 1;
  }

  .num-columnas-data {
    column-count: 1;
  }
  .num-columnas-ul>ul {
    column-count: 1;
  }
  .num-columnas3 {
    column-count: 1 !important;
  }
  .mme-menu-content {
    display: none;
  }

  .mme-menu-content-movil {
    display: block;
  }


}

/* MME menu options */

/* MME icon menu options */
.wrapper-icon-menu-mme {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  grid-auto-rows: minmax(100px, auto);
}
.icon-menu-mme-header {
  grid-column: 1 / 5;
  grid-row: 1/1;
}
.icon-menu-mme-options {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-menu-mme-container {
  grid-column: 1 / 5;
  grid-row: 2 / 5;
}

.icon-menu-mme-option-mobil-content {
  display: none;
}

.icon-menu-mme-option {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-left: 4px solid var(--mme-gray);
  border-right: 4px solid var(--mme-gray);
  margin-left: -4px;
  cursor: pointer;
  min-height: 200px;
  max-height: 200px;
}

.icon-menu-mme-option.active {
  background-color: var(--mme-blue);
}

.icon-menu-mme-option.active .icon-menu-mme-option-svg {
  filter: var(--mme-green2white-icon);
}

.icon-menu-mme-option.active .icon-menu-mme-option-title {
  color: white;
  text-align: center;
}

.icon-menu-mme-option-svg {
  filter: var(--mme-green-filter);
  width: 7rem;
  height: 7rem;
}
.icon-menu-mme-option-svg > image {
  width: 7rem;
  height: 7rem;
}
.icon-menu-mme-option-title {
  font-weight: 600;
  text-align: center;
}

.icon-menu-mme-option-content {
  display: none;
  text-align: center;
  margin-top: 25px;
  align-items: center;
  justify-content: center;
}
.icon-menu-mme-option-content.active {
  display: block;
}

.odd-grid:nth-child(odd) {
  background-color: var(--mme-soft-gray);
}
.odd-grid-impar:nth-child(even) {
  background-color: var(--mme-soft-gray);
}
@media (max-width: 992px) {
  .icon-menu-mme-header {
    grid-column: 1 / 5;
    grid-row: 1/1;
  }
  .num-columnas {
    column-count: 1;
  }
  .num-columnas-data {
    column-count: 1;
  }
  .num-columnas-ul>ul {
    column-count: 1;
  }
  .num-columnas3 {
    column-count: 2;
  }

  .icon-menu-mme-container {
    display: none;
  }

  .icon-menu-mme-option-mobil-content {
    display: block;
  }

  .icon-menu-mme-option {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-left: 4px solid var(--mme-gray);
    border-right: 4px solid var(--mme-gray);
    margin-left: 0px;
    cursor: pointer;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.icon-menu-mme-option-content-description > p {
  font-size: 1.25rem;
  text-align: justify;
}

/* MME icon menu options */

/* botton button */

.logo-img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.parent_botton_button {
  height: 100%;
  position: relative;
}
.div_botton_button {
  position: absolute;
  bottom: 0;
}
@media (max-width: 992px) {
  .div_botton_button {
    position: relative;
    bottom: 0;
  }
}
/* botton button */

/* sitemap */
.sitemap {
  list-style-type: none;
}
.sitemap > li > a {
  text-decoration: none;
}
/* sitemap */

/*ajuste de frame en videos*/
.video-ajustable {
position: relative;
padding-bottom: 56.25%; /* 16/9 ratio */
padding-top: 30px; /* IE6 workaround*/
height: 0;
overflow: hidden;
}

.video-ajustable iframe,
.video-ajustable object,
.video-ajustable embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Clase para alinear imagenes en rich text*/

.richtext-image.right{
  float:right;
  padding-left: 10px;
  padding-right: 10px;
}

.richtext-image.left{
  float:left;
  padding-left: 10px;
  padding-right: 10px;
}

br{
  clear: both;
}

.btn-success-margin{
  margin: 6px 0;
}

img.richtext-image.full-width {
  max-width: 100%;
  height: auto;
}