@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
  --white: #ffffff;
  --black: #212121;
  --gray-300: #3c3c3b;
  --gray-100: #a2a2a2;
  --gray-500: #212121;
  --gray--600: #c6c6c6;
  --black-light: rgba(23, 21, 22, 1);

  --blue: #4594b8;
}

html {
  scroll-behavior: smooth;

  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "PT Sans", sans-serif;
  color: var(--gray-500);
  font-weight: normal;
}

.slider-container {
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.logos {
  display: flex;
}

.logos img {
  height: 100px;
  margin: 0 2rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.paragraph-id--40 h3 {
  color: var(--white);
}
img,
picture {
  margin: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

blockquote {
  font-size: 2rem;
  width: 70%;
  display: block;
  margin: 0 auto;
  text-align: center;
}

blockquote span {
  font-size: 1.1rem;
}
#politica li a {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
h1,
h2,
h3,
strong {
  color: var(--black);
}
.path-frontpage h1 {
  font-size: 5rem;
}
h1 {
  font-size: 3em;
}

h1,
h2,
h3 {
  font-weight: normal;
}

h2 {
  font-size: 2.3em;
}

h3 {
  font-size: 2.5em;
}

h4 {
  margin: 0;
}

.titulo-pagina {
  text-align: center;
  padding: 1rem 0 3rem 0;
}
ul#escalanada {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 2.5rem;
}
ul#escalanada li:nth-child(2) {
  text-align: right;
}
ul#escalanada li:nth-child(3) {
  text-align: right;
}
strong {
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  background-color: #006666;
  color: var(--white);
  padding: 14px 60px 14px 30px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 30px;
  border: none;
}
ul.mi-contacto .js-form-type-checkbox {
  display: flex;
  align-items: center;
  flex-direction: row;
}
#user-login-form {
  width: 400px;
  margin: 0 auto;
  margin-bottom: 5rem;
  display: block;
}
#user-login-form input {
  margin-top: 16px;
}
ul.mi-contacto .js-form-type-checkbox input {
  width: auto;
  margin-right: 10px;
}
.button::after {
  content: "\e606";
  font-family: "simple-line-icons";
  font-size: 16px;
  position: absolute;
  right: 24px;
}

.button:hover {
  background-color: #166183;
}
.perfil .contenedor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.perfil .imagen img {
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.perfil .texto {
  flex: 1;
  min-width: 300px;
  font-size: 1rem;
}

.perfil h2 {
  margin-top: 0;
}

.container {
  max-width: 1200px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.exposiciones-content {
  display: flex;
  align-items: top;
  justify-content: space-between;
  padding: 3.5rem 0px;
  grid-gap: 50px;
}

.exposiciones-right__inner {
  padding: 20px;
  border-radius: 6px;
  border: solid 1px #cdcdcd;
  background-color: #f5f5f5;
  font-size: 0.9rem;
}

.exposiciones-right__inner .field {
  margin: 10px 0px;
}

.img-left-exp {
  position: relative;
  margin-top: 2rem;
}

.buy-exposicion {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.buy-exposicion a {
  background-color: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 12px;
  justify-content: center;
  border-radius: 50%;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.buy-exposicion a:hover {
  background-color: var(--blue-dark);
}

.exposiciones-right__inner .field__label {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
}

.exposiciones-left,
.exposiciones-right {
  width: 25%;
}

.exposiciones-center {
  width: 50%;
}

.exposiciones-center h1 {
  margin-top: 0;
}

.general-button {
  display: inline-flex;
  background-color: var(--red);
  color: var(--white);
  padding: 14px 60px 14px 30px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 20px;

  border-radius: 30px;
}

.general-button::after {
  content: "\e606";
  font-family: "simple-line-icons";
  font-size: 16px;
  position: absolute;
  right: 24px;
}

.general-button:hover {
  background-color: var(--black);
}

.img-left-exp img {
  display: block;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.exposicion-gallery {
  padding: 2.5rem 0px;
  background-color: var(--gray-500);
}

.exposicion-gallery img {
  width: 100%;
  display: block;
  height: 400px;
  object-fit: cover;
}

.exposicion-gallery h2 {
  color: var(--white);
}

.exposicion-gallery ul {
  list-style: none;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

ul.lista-actividades {
  margin: 0;
  padding: 0;
}

ul.lista-actividades li:hover a img,
ul.lista-actividades-page li:hover a img {
  transform: scale(1.1);
}

ul.lista-actividades li img,
ul.lista-actividades-page li img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  transform: scale(1);
  height: 272px;
}

#block-general-page-title h1 {
  width: 60%;
  margin: 0 auto;
  display: block !important;
  display: contents;
}

ul.lista-actividades li a {
  background-color: #e5f2f7;
  display: block;
  color: #333;
  /* box-shadow: 2px 4px 12px rgba(0, 0, 0, .08); */
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);

  overflow: hidden;
  min-height: 730px;
}

ul.lista-actividades-page li a {
  background-color: #e5f2f7;
  display: block;
  color: #333;
  /* box-shadow: 2px 4px 12px rgba(0, 0, 0, .08); */
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);

  overflow: hidden;
}

ul.lista-actividades li a:hover,
ul.lista-actividades-page li a:hover {
  background-color: #fff;
}

#block-views-block-actividades-block-1 h2 {
  text-align: center;
}

ul.lista-actividades h3,
ul.lista-actividades-page h3 {
  margin: 0px 0px 14px 0px;
  font-size: 1.66667rem;
  line-height: 1.2;
  font-size: 30px;
  font-weight: normal;
  color: rgba(0, 102, 102, 1);
}

ul.lista-actividades-page {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  list-style: none;
  flex-wrap: wrap;
}

ul.lista-actividades-page li {
  flex-basis: calc(32.33% - 10px);
  margin: 10px;
}

.view-actividades {
  background-color: #e5e5e5;
  padding: 4.5rem 0px;
}

.teaser__content {
  padding: 30px;
}

.teaser__content span {
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.teaser__content span::before {
  content: "\e075";
  font-family: "simple-line-icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.teaser__content p {
  margin-top: 0px;
}

.teaser__imagen {
  position: relative;
  height: 272px;
  overflow: hidden;
}

.content__inner {
  display: flex;
  margin-bottom: 3rem;
}

.col__left {
  flex: 0.5;
}

.col__right {
  flex: 1;
}

.col__right .lista-actividades-page {
  gap: 14px;
}

.col__right .lista-actividades-page li {
  flex-basis: calc(100%);
  margin: 0;
}

.col__right .lista-actividades-page li a {
  display: flex;
  height: auto;
  flex-direction: row;
  align-items: center;
}

.col__right .lista-actividades-page li a .teaser__imagen {
  height: auto;
  width: 160px;
}

.col__right .lista-actividades-page li a .teaser__content {
  width: 70%;
  padding: 0px 20px;
}

.col__right .lista-actividades-page li a .teaser__content h3 {
  font-size: 1rem;
}

.col__right .lista-actividades-page li a img {
  height: 100px;
  width: 100px;
  object-fit: cover;
}

.col__center {
  flex: 2;
}

/*HEADER*/
header {
  background-color: transparent;
  padding: 14px 0px;
}

.region-header-right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

#block-general-menuheader ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  justify-content: end;
}

#block-general-menuheader ul li a {
  color: var(--gray-100);
}

#block-general-menuheader li#buscar {
  position: relative;
  margin-left: 30px;
  width: 40px;
}

#block-general-menuheader li#buscar a {
  font-size: 0;
}

#block-general-menuheader li#buscar a::before {
  content: "\e090";
  font-family: "simple-line-icons";
  font-size: 20px;
  position: absolute;
  top: -4px;
}

header a.site-logo img {
  width: 260px;
}

.header__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#block-general-main-menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

ul.categorias-actividades {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 3rem 0px;
  padding: 0;
  gap: 20px;
  list-style: none;
}

ul.categorias-actividades li img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  transform: scale(1);
  height: 390px;
}

ul.categorias-actividades li:hover a img {
  transform: scale(1.1);
}

.teaser__imagen__categorias {
  position: relative;
  height: 390px;
  overflow: hidden;
}

ul.categorias-actividades li a {
  background-color: #fff;
  display: block;
  color: #333;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
}

ul.categorias-actividades li h2 {
  margin: 10px 0px;
  color: var(--white);
  font-weight: normal;
  font-size: 1.2rem;
}

ul.categorias-actividades li .teaser__content {
  position: absolute;
  bottom: 0;
  background-color: var(--gray-300);
  width: 100%;
  display: block;
  color: var(--white);
  padding: 10px 30px;
}

.path-actividades {
  background-color: var(--gray--600);
}

/*HEADER*/
/*FOOTER*/
footer {
  background-color: #e5f2f7;
  color: var(--black);
  padding: 3rem 0px;
}

.region-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.article-image img {
  height: 400px;
  object-fit: cover;
}
.footer-bottom {
  margin-top: 3rem;
  display: flex;
  align-items: top;
  justify-content: space-between;
}

.logo-mc {
  width: 180px;
}

ul.social-network {
  margin: 16px 0px;
  padding: 0;
  display: flex;
  align-items: center;
  list-style-type: none;
  justify-content: right;
}

ul.social-network li {
  display: flex;
  margin-right: 10px;
}

ul.social-network .icon-twitter::before {
  content: "";
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  position: relative;
  background-image: url("../images/x_twitter.svg");
  background-repeat: no-repeat;
  display: block;
}

ul.social-network .icon-instagram::before {
  content: "";
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  position: relative;
  background-image: url("../images/instagram.svg");
  background-repeat: no-repeat;
  display: block;
}

ul.social-network .icon-facebook::before {
  content: "";
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  position: relative;
  background-image: url("../images/facebook.svg");
  background-repeat: no-repeat;
  display: block;
}

ul.social-network .icon-linkedin::before {
  content: "";
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  position: relative;
  background-image: url("../images/linkedin.svg");
  background-repeat: no-repeat;
  display: block;
  margin-top: -2px;
}

ul.social-network .icon-youtube::before {
  content: "";
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  position: relative;
  background-image: url("../images/youtube.svg");
  background-repeat: no-repeat;
  display: block;
}

ul.social-network .icon-tiktok::before {
  content: "";
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  position: relative;
  background-image: url("../images/tiktok.svg");
  background-repeat: no-repeat;
  display: block;
}

ul.social-network li a {
  font-size: 0;
}

footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 20px;
}

footer ul li a {
  color: var(--black);
  padding: 4px 0px;
  display: block;
}

footer h2 {
  font-size: 0.8rem;
  font-weight: normal;
  text-transform: uppercase;
  color: var(--white);
}

/*ENDFOOTER*/

.social-media-sharing ul {
  padding: 0px 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.path-servicios .region-content {
  background-color: #f0f8f8;
  padding: 3rem 0px;
}

.global-expert {
  position: relative;
}
.global-expert img {
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.global-expert:hover img {
  transform: scale(1.1);
}

.expert-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 1;
}

ul.lista-expertos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-expert img {
  height: 400px;
  object-fit: cover;
}

.global-expert {
  color: var(--white);
  font-size: 1.5rem;
  text-align: center;
}

#block-views-block-expertos-en-ventas-block-1 h2 {
  text-align: center;
}

ul.mi-contacto {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  grid-gap: 20px;
  width: 50%;
  margin: 0 auto;
}
.paragraph-id--66 .field--name-field-text-larg {
  margin: 0 auto;
  text-align: left;
}
ul.mi-contacto li {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 100%;
  margin: 0;
}

ul.mi-contacto label,
legend {
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

#edit-actions {
  width: fit-content;
}

input {
  height: 44px;
  border: solid 1px #cdcdcd;
  border-radius: 8px;
  display: block;
  width: 90%;
  padding: 0px 10px;
  font-family: "PT Sans", sans-serif;
}

textarea {
  border: solid 1px #cdcdcd;
  border-radius: 8px;
  width: 96%;
  display: block;
  padding: 20px 10px;
  font-family: "PT Sans", sans-serif;
}

ul.articulos {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: inherit;
  -moz-box-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  text-align: left;
  list-style-type: none;
  color: #fff;
}

ul.articulos li {
  padding: 20px 0px;
}

.blog-content {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 30px;
}

.blog-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 66%;
}

ul.articulos li a .blog-right {
  overflow: hidden;
}

.blog-right {
  width: 34%;
}
#block-views-block-blog-block-1 h2 {
  text-align: center;
  margin-top: 0;
}
#paragraph-53 {
  background-color: #f0f8f8;
}
ul.articulos h3 {
  margin: 0px 0px 10px 0px !important;
  width: 100% !important;
}
#block-views-block-blog-block-1 .page-node-type-article .article-image img {
  height: 400px;
  object-fit: contain;
}

ul.articulos li a img {
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  height: 300px;
  object-fit: cover;
}

ul.articulos a {
  color: var(--gray-500);
  overflow: hidden;
}

ul.articulos li a:hover img {
  transform: scale(1.1);
}

.expert-image::before {
  content: "";
  position: absolute;
  background: linear-gradient(0deg, #212121, #03030366);
  inset: 0;
  z-index: 1;
}

.media-custom-texto blockquote {
  font-size: 1.5em;
}

.paragraph .form-group h2 {
  width: 50%;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}
.disagree-button.eu-cookie-compliance-more-button,
.eu-cookie-compliance-agree-button,
.eu-cookie-compliance-default-button,
.eu-cookie-compliance-hide-button,
.eu-cookie-compliance-more-button-thank-you,
.eu-cookie-withdraw-button,
.eu-cookie-compliance-save-preferences-button {
  cursor: pointer;
  margin-right: 5px;
  margin-top: 1em;
  vertical-align: middle;
  overflow: visible;
  width: auto;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none;
  background-color: transparent !important;

  background-image: none !important;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 0;
  border: none;
  color: #fff !important;
  font-weight: normal !important;
  padding: auto;
  text-decoration: none;
  text-shadow: none !important;
}
@media only screen and (max-width: 767px) {
  .texto-imagen-content {
    min-height: none !important;
  }

  .texto-imagen-texto {
    left: auto !important;
    padding: 0 15px !important;
  }

  .texto-imagen-imagen {
    height: 300px !important;
    margin-top: 40px !important;
  }
  .tbm-item.level-1:last-child {
    background-color: transparent !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
    display: grid;
  }
  .tbm-item.level-1:last-child a {
    color: var(--black) !important;
  }
  .path-frontpage h1 {
    font-size: 3.5rem;
  }
  h3 {
    font-size: 2em;
  }
  ul#escalanada li:nth-child(3),
  ul#escalanada li:nth-child(2) {
    text-align: left;
  }
  ul#escalanada {
    list-style: none;
    font-size: 2rem;
  }
  ul#escalanada {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 2rem;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }
  #block-general-page-title h1 {
    width: 100%;
    margin: 0 auto;
    display: block !important;
    display: contents;
  }
  h1 {
    font-size: 2em;
  }
}

@media only screen and (max-width: 1250px) {
  #gt_float_wrapper {
    top: 65px !important;
  }
}
/**/
.messages-list{
   
    display: none !important;
}
