html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  height: inherit;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  width: 100%;
}
@media (min-width: 576px) {
  .container {
    max-width: 54rem;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 72rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 96rem;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 114rem;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 132rem;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 150rem;
  }
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../../fonts/montserrat-v15-latin-regular.woff2") format("woff2"), url("../../fonts/montserrat-v15-latin-regular.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../../fonts/montserrat-v15-latin-500.woff2") format("woff2"), url("../../fonts/montserrat-v15-latin-500.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("../../fonts/montserrat-v15-latin-600.woff2") format("woff2"), url("../../fonts/montserrat-v15-latin-600.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../../fonts/montserrat-v15-latin-700.woff2") format("woff2"), url("../../fonts/montserrat-v15-latin-700.woff") format("woff");
}
:root {
  --copy: #3a3c3c;
  --cuaternary: #427fed;
  --general: #f56600;
  --gray: #707070;
  --primary: var(--general);
  --primary-dark: #d35700;
  --gradient-blue: rgba(66, 127, 237, 0.46);
  --gradient-orange: var(--general);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--copy);
  outline: none !important;
  scrollbar-width: thin;
  scrollbar-color: var(--copy) transparent;
}

*::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.5rem;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 2rem;
  border: 0.2rem solid transparent;
}

html,
body {
  line-height: 1;
}
html.blocked,
body.blocked {
  overflow-y: hidden;
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 62.5%;
}

body a,
footer a {
  color: var(--cuaternary);
  text-decoration: none;
}
body a.strong-link,
footer a.strong-link {
  color: var(--primary);
  font-weight: 700;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
body main {
  display: grid;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 3.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 992px) {
  body main {
    gap: 5.5rem;
    margin-top: 5.5rem;
  }
}
body main h1,
body main h2,
body main h3,
body main h4,
body main h5,
body main h6 {
  font-weight: 700;
}
body main h1.section-title, body main h1.pseudotitle,
body main h2.section-title,
body main h2.pseudotitle,
body main h3.section-title,
body main h3.pseudotitle,
body main h4.section-title,
body main h4.pseudotitle,
body main h5.section-title,
body main h5.pseudotitle,
body main h6.section-title,
body main h6.pseudotitle {
  color: var(--primary);
}
body main h1.section-title ~ p, body main h1.pseudotitle ~ p,
body main h2.section-title ~ p,
body main h2.pseudotitle ~ p,
body main h3.section-title ~ p,
body main h3.pseudotitle ~ p,
body main h4.section-title ~ p,
body main h4.pseudotitle ~ p,
body main h5.section-title ~ p,
body main h5.pseudotitle ~ p,
body main h6.section-title ~ p,
body main h6.pseudotitle ~ p {
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  body main h1.section-title ~ p, body main h1.pseudotitle ~ p,
  body main h2.section-title ~ p,
  body main h2.pseudotitle ~ p,
  body main h3.section-title ~ p,
  body main h3.pseudotitle ~ p,
  body main h4.section-title ~ p,
  body main h4.pseudotitle ~ p,
  body main h5.section-title ~ p,
  body main h5.pseudotitle ~ p,
  body main h6.section-title ~ p,
  body main h6.pseudotitle ~ p {
    margin-top: 2.5rem;
  }
}
body main h2,
body main h3.pseudotitle,
body main h4.pseudotitle,
body main h1.pseudotitle,
body main span.pseudotitle {
  color: var(--primary);
  font-size: 2.1rem;
}
@media (min-width: 992px) {
  body main h2,
  body main h3.pseudotitle,
  body main h4.pseudotitle,
  body main h1.pseudotitle,
  body main span.pseudotitle {
    font-size: 2.9rem;
    line-height: 3.2rem;
  }
}
@media (min-width: 1600px) {
  body main h2,
  body main h3.pseudotitle,
  body main h4.pseudotitle,
  body main h1.pseudotitle,
  body main span.pseudotitle {
    font-size: 3.4rem;
    line-height: 4.2rem;
  }
}
body main p,
body main .paragraphize {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  body main p,
  body main .paragraphize {
    font-size: 1.8rem;
  }
}
body main p + p,
body main .paragraphize + p {
  margin-top: 2.3rem;
}
@media (min-width: 992px) {
  body main p + p,
  body main .paragraphize + p {
    margin-top: 3rem;
  }
}
body main p.text-center,
body main .paragraphize.text-center {
  text-align: center;
}
body main .main-area {
  margin-top: 3.5rem;
}
@media (min-width: 992px) {
  body main .main-area {
    margin-top: 5.5rem;
  }
}
body .d-none {
  display: none !important;
}

/*Botonaco Master D*/
#ot-sdk-cookie-policy {
  display: none;
}

#ot-sdk-btn.ot-sdk-show-settings {
  color: #ededed !important;
}

/* Mensajes Alerta */
#mensaje_alerta_div {
  border-radius: 5rem;
  color: white;
  font-weight: 600;
  margin: 4.5rem auto 0;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 1rem 2rem;
  width: 100%;
}
#mensaje_alerta_div.alert-success {
  background-color: #198754;
}
#mensaje_alerta_div.alert-warning {
  background-color: #dc3545;
}

header {
  background-color: white;
  -webkit-box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.05);
  height: 5.6rem;
  position: sticky;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  top: 0;
  width: 100%;
  z-index: 999;
}
header.scrollable {
  background-color: white;
}
header.scrollable + #hero {
  margin-top: -5.6rem;
}
@media (min-width: 992px) {
  header.scrollable + #hero {
    margin-top: -7.5rem;
  }
}
header.scrollable:not(.scrolled) {
  background-color: transparent;
}
header.scrollable:not(.scrolled) nav .nav-logo svg {
  fill: white;
}
header.scrollable:not(.scrolled) nav .burger-icon p,
header.scrollable:not(.scrolled) nav .actions-mov p {
  color: white;
}
header.scrollable:not(.scrolled) nav .burger-icon svg,
header.scrollable:not(.scrolled) nav .actions-mov svg {
  fill: white;
}
header.scrollable:not(.scrolled) nav .burger-icon label#burger > div {
  background-color: white;
}
header.scrollable:not(.scrolled) nav .actions .actions-desktop p {
  color: white;
}
header.scrollable:not(.scrolled) nav .desktop-menu li a {
  color: white;
}
header.scrollable:not(.scrolled) nav .desktop-menu li.menu-dropdown a svg {
  fill: white;
}
header.scrollable:not(.scrolled) .desktop-menu li.menu-dropdown ul.dropdown {
  border-radius: 1rem;
}
@media (min-width: 992px) {
  header {
    height: 7.5rem;
  }
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding: 0 2rem;
  width: 100%;
}
@media (min-width: 992px) {
  header nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 4.5rem;
  }
}
@media (min-width: 1200px) {
  header nav {
    gap: 7rem;
  }
}
header nav .nav-logo {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: inherit;
  max-width: 20rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 55%;
}
@media (min-width: 991px) {
  header nav .nav-logo {
    justify-self: center;
  }
}
@media (min-width: 1200px) {
  header nav .nav-logo {
    max-width: 25rem;
  }
}
header nav .nav-logo svg {
  display: block;
  max-width: 100%;
  width: 100%;
  fill: var(--primary);
  height: inherit;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}
header nav .burger-icon,
header nav .actions-mov {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 3.7rem;
}
header nav .burger-icon p,
header nav .actions-mov p {
  color: var(--copy);
  font-size: 1.4rem;
  font-weight: 600;
}
header nav .burger-icon svg,
header nav .actions-mov svg {
  fill: var(--primary);
  height: 1.8rem;
  margin: 0 auto;
  width: 1.8rem;
}
header nav .burger-icon {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 992px) {
  header nav .burger-icon {
    display: none;
  }
}
header nav .burger-icon #menu-toggle {
  display: none;
}
header nav .burger-icon #menu-toggle:checked html,
header nav .burger-icon #menu-toggle:checked body {
  overflow: hidden !important;
}
header nav .burger-icon #menu-toggle:checked ~ #burger > div:nth-child(1) {
  -webkit-transform: translateY(7.2px) rotate(45deg);
          transform: translateY(7.2px) rotate(45deg);
}
header nav .burger-icon #menu-toggle:checked ~ #burger > div:nth-child(2) {
  opacity: 0;
}
header nav .burger-icon #menu-toggle:checked ~ #burger > div:nth-child(3) {
  -webkit-transform: translateY(-7.2px) rotate(-45deg);
          transform: translateY(-7.2px) rotate(-45deg);
}
header nav .burger-icon label#burger {
  width: 2.4rem;
}
header nav .burger-icon label#burger > div {
  background-color: var(--primary);
  border-radius: 5rem;
  height: 0.3rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
header nav .burger-icon label#burger > div + div {
  margin-top: 0.4rem;
}
header nav .actions {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 992px) {
  header nav .actions {
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  header nav .actions .actions-mov {
    display: none;
  }
}
@media (max-width: 991px) {
  header nav .actions .actions-desktop {
    display: none;
  }
}
header nav .actions .actions-desktop p {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 600;
}
@media (min-width: 1400px) {
  header nav .actions .actions-desktop p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  header nav .actions .actions-desktop p {
    font-size: 1.8rem;
  }
}
header .mobile-menu {
  -webkit-box-shadow: -5px 0 5px rgba(0, 0, 0, 0.35);
          box-shadow: -5px 0 5px rgba(0, 0, 0, 0.35);
  display: none;
  height: calc(100vh - 56px);
  max-width: 40rem;
  position: fixed;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  top: 5.6rem;
  width: 100%;
  z-index: 100;
}
header .mobile-menu .menu-movil-banner {
  background-image: url("../../images/header-movil.jpg");
  background-size: cover;
  height: 14rem;
  position: relative;
  width: 100%;
}
header .mobile-menu .menu-movil-banner:after {
  content: "";
  display: block;
  background-color: white;
  height: 100%;
  left: 0;
  opacity: 0.35;
  position: absolute;
  top: 0;
  width: 100%;
}
header .mobile-menu .menu-movil-main {
  width: 100%;
}
header .mobile-menu .menu-movil-main .movil-title {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--primary)), to(var(--primary-dark)));
  background: linear-gradient(var(--primary), var(--primary-dark));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0.5rem Rgba(0, 0, 0, 0.35);
          box-shadow: 0 0.5rem Rgba(0, 0, 0, 0.35);
  color: white;
  font-size: 3.2rem;
  font-weight: 600;
  padding: 0.8rem 1rem;
}
header .mobile-menu .menu-movil-main .movil-title:after {
  content: "";
  display: block;
  background-image: url(../../images/icons/i-chevron-menu.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 1.5rem;
  -webkit-transform: scale(1.4) translateX(-1.5rem);
          transform: scale(1.4) translateX(-1.5rem);
  width: 0.75rem;
}
header .mobile-menu .menu-movil-main ul {
  background-color: white;
  min-height: 26rem;
}
header .mobile-menu .menu-movil-main ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 6.5rem;
  padding: 0 1rem;
}
header .mobile-menu .menu-movil-main ul li + li {
  border-top: 0.1rem solid #aaa;
}
header .mobile-menu .menu-movil-main ul li a {
  color: var(--secondary);
  display: block;
  font-size: 1.8rem;
  height: inherit;
  line-height: 6.5rem;
  width: 100%;
}
header .mobile-menu .menu-movil-main ul li span {
  background-image: url("../../images/icons/i-chevron-menu.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 1.75rem;
  width: 1rem;
  -webkit-filter: invert(0.3);
          filter: invert(0.3);
  -webkit-transform: translateX(-1.5rem);
          transform: translateX(-1.5rem);
}
header .mobile-menu .menu-movil-pie {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--primary)), to(var(--primary-dark)));
  background: linear-gradient(var(--primary), var(--primary-dark));
  height: calc(100vh - 50.4rem);
  padding: 1.5rem 0.7rem;
  position: relative;
  width: 100%;
}
header .mobile-menu .menu-movil-pie ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
header .mobile-menu .menu-movil-pie ul li a {
  color: white;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: underline;
  width: 100%;
}
header .desktop-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  height: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 991px) {
  header .desktop-menu {
    display: none;
  }
}
header .desktop-menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
header .desktop-menu li a {
  color: var(--primary);
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  -webkit-transition: color 0.45s ease-in-out;
  transition: color 0.45s ease-in-out;
}
@media (min-width: 1400px) {
  header .desktop-menu li a {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  header .desktop-menu li a {
    font-size: 1.8rem;
  }
}
header .desktop-menu li.menu-dropdown {
  position: relative;
}
header .desktop-menu li.menu-dropdown a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
header .desktop-menu li.menu-dropdown a svg {
  height: 0.77rem;
  fill: var(--primary);
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
  width: 1.54rem;
}
header .desktop-menu li.menu-dropdown ul.dropdown {
  backdrop-filter: blur(0.4rem);
  background-color: rgba(255, 255, 255, 0.9);
  border: 0.2rem solid var(--primary);
  border-top: 0.1rem solid var(--primary);
  border-radius: 0 0 1rem 1rem;
  -webkit-box-shadow: 0.2rem 0.2rem 0.2rem rgba(21, 64, 60, 0.35);
          box-shadow: 0.2rem 0.2rem 0.2rem rgba(21, 64, 60, 0.35);
  display: none;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  position: absolute;
  top: 7.5rem;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
header .desktop-menu li.menu-dropdown ul.dropdown:before {
  content: "";
  display: block;
  background-color: var(--primary);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  height: 1.5rem;
  left: 2rem;
  position: absolute;
  top: -1.5rem;
  width: 2rem;
}
header .desktop-menu li.menu-dropdown ul.dropdown.centros-dropdown, header .desktop-menu li.menu-dropdown ul.dropdown.formacion-dropdown {
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
header .desktop-menu li.menu-dropdown ul.dropdown.centros-dropdown {
  grid-template-columns: repeat(3, minmax(0, 20vw));
}
header .desktop-menu li.menu-dropdown ul.dropdown.formacion-dropdown {
  grid-template-columns: repeat(2, minmax(0, 20vw));
}
header .desktop-menu li.menu-dropdown ul.dropdown li {
  border-bottom: 0.1rem solid var(--primary);
  display: block;
  width: 100%;
}
header .desktop-menu li.menu-dropdown ul.dropdown li.titulo-formacion {
  background-color: var(--primary);
}
header .desktop-menu li.menu-dropdown ul.dropdown li.titulo-formacion a {
  color: white;
}
header .desktop-menu li.menu-dropdown ul.dropdown li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--primary-dark);
  font-size: 1.4rem;
  line-height: 1.2;
  height: 100%;
  padding: 1.5rem;
  text-transform: uppercase;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  width: 100%;
}
header .desktop-menu li.menu-dropdown ul.dropdown li a:hover {
  background-color: var(--primary-dark);
  color: white;
}
@media (min-width: 1200px) {
  header .desktop-menu li.menu-dropdown ul.dropdown li a {
    font-size: 1.6rem;
    padding: 2rem 1.5rem;
  }
}
header .desktop-menu li.menu-dropdown:hover ul.dropdown {
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

footer {
  background-color: var(--copy);
  margin-top: 2.5rem;
  padding-top: 4.5rem;
}
@media (min-width: 992px) {
  footer {
    margin-top: 4.5rem;
    padding-top: 6.5rem;
  }
}
footer * {
  color: white;
}
footer .footer-main {
  display: grid;
}
@media (max-width: 991px) {
  footer .footer-main {
    grid-row-gap: 3.5rem;
  }
}
@media (min-width: 992px) {
  footer .footer-main {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 2.4rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-main {
    grid-template-columns: 4fr 3fr 3fr 2fr;
  }
}
footer .footer-main .brand {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 85%;
}
@media (min-width: 992px) {
  footer .footer-main .brand {
    -webkit-transform: scale(1);
            transform: scale(1);
    margin: 0;
    min-width: 20rem;
  }
}
footer .footer-main .footer-header {
  font-size: 2.2rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  footer .footer-main .footer-header {
    font-size: 2rem;
  }
}
footer .footer-main .footer-header:after {
  content: "";
  display: block;
  background-color: white;
  height: 0.4rem;
  margin-top: 0.7rem;
  max-width: 21.5rem;
}
footer .footer-main .footer-header.toggle:after {
  display: none;
}
@media (min-width: 992px) {
  footer .footer-main .footer-header.toggle:after {
    display: block;
  }
}
footer .footer-main .info-col .intro-masterd p {
  font-size: 1.2rem;
  margin-top: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  footer .footer-main .info-col .intro-masterd p {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
}
@media (min-width: 992px) {
  footer .footer-main .info-col .intro-masterd p {
    text-align: left;
    width: 85%;
  }
}
footer .footer-main .info-col .intro-masterd p.big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  gap: 1rem;
}
@media (min-width: 992px) {
  footer .footer-main .info-col .intro-masterd p.big {
    font-size: 2.1rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
footer .footer-main .info-col .intro-masterd p.big svg {
  fill: white;
  height: 2rem;
  width: 2rem;
}
footer .footer-main .info-col .intro-masterd p a {
  color: var(--primary);
}
footer .footer-main .info-col .footer-social {
  margin-top: 2.5rem;
}
footer .footer-main .info-col .footer-social ul {
  display: grid;
  grid-template-columns: repeat(4, -webkit-max-content);
  grid-template-columns: repeat(4, max-content);
  grid-gap: 2rem;
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width: 360px) {
  footer .footer-main .info-col .footer-social ul {
    grid-template-columns: repeat(6, -webkit-max-content);
    grid-template-columns: repeat(6, max-content);
  }
}
@media (min-width: 992px) {
  footer .footer-main .info-col .footer-social ul {
    margin: 0;
  }
}
footer .footer-main .info-col .footer-social ul a {
  display: block;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  width: 100%;
}
footer .footer-main .info-col .footer-social ul a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
footer .footer-main .info-col .footer-social ul a:hover img {
  -webkit-filter: drop-shadow(0 0 0.5rem rgba(255, 255, 255, 0.5));
          filter: drop-shadow(0 0 0.5rem rgba(255, 255, 255, 0.5));
}
footer .footer-main .toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  footer .footer-main .toggle {
    border-bottom: 1px solid var(--gray);
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  footer .footer-main .toggle {
    display: block;
  }
}
footer .footer-main .toggle span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.8rem;
  position: relative;
  width: 1.8rem;
}
footer .footer-main .toggle span:before, footer .footer-main .toggle span:after {
  content: "";
  display: block;
  background-color: white;
  height: 0.3rem;
  position: absolute;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  width: 1.8rem;
}
@media (min-width: 992px) {
  footer .footer-main .toggle span {
    display: none;
  }
}
footer .footer-main .toggle span.open:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
footer .footer-main .toggle span.close:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
footer .footer-main .toggle + ul {
  color: white;
  display: none;
  list-style: outside disc;
  margin-top: 2rem;
  padding-left: 3rem;
}
@media (min-width: 992px) {
  footer .footer-main .toggle + ul {
    display: block;
    list-style: none;
    padding: 0;
  }
}
footer .footer-main .toggle + ul li {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
footer .footer-main .toggle + ul li:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background: white;
  left: 0;
  margin-top: 0.35rem;
  position: absolute;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
footer .footer-main .toggle + ul li:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
footer .footer-main .toggle + ul li + li {
  margin-top: 1.2rem;
}
footer .footer-main .toggle + ul li a {
  color: white;
}
footer .footer-main .certificaciones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 1rem;
  margin: 2.5rem auto 0;
  width: 80%;
}
@media (min-width: 992px) {
  footer .footer-main .certificaciones {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
    width: 100%;
  }
}
footer .footer-main .certificaciones img {
  display: block;
  max-width: 100%;
  width: 100%;
  -webkit-filter: invert(1);
          filter: invert(1);
  height: 8.5rem;
}
footer .prefooter {
  border-top: 1px solid var(--gray);
  margin-top: 2.5rem;
  padding: 1.35rem 0;
  text-align: center;
}
@media (min-width: 992px) {
  footer .prefooter {
    margin-top: 4.5rem;
    padding: 4.5rem 0 3.5rem;
  }
}
footer .prefooter img {
  display: block;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 1.25rem;
  width: 29rem;
}
@media (max-width: 991px) {
  footer .prefooter img {
    display: none;
  }
}
footer .prefooter a {
  position: relative;
  color: white;
}
footer .prefooter a:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background: white;
  left: 0;
  margin-top: 0.35rem;
  position: absolute;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
footer .prefooter a:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
footer .prefooter p {
  font-size: 1.2rem;
}
footer .prefooter p + p {
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  footer .prefooter p + p {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
}

#centro-listado-opiniones h1.section-title {
  border: 0.1rem solid var(--primary);
  font-size: 2.1rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 1rem 2.5rem;
  width: 100%;
}
@media (min-width: 992px) {
  #centro-listado-opiniones h1.section-title {
    font-size: 2.9rem;
    line-height: 3.2rem;
  }
}
@media (min-width: 1600px) {
  #centro-listado-opiniones h1.section-title {
    font-size: 3.4rem;
    line-height: 4.2rem;
  }
}
#centro-listado-opiniones .section-title span {
  color: var(--copy);
}
#centro-listado-opiniones .valoraciones-wrapper {
  display: grid;
  gap: 3.5rem 4.5rem;
}
@media (min-width: 768px) {
  #centro-listado-opiniones .valoraciones-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  #centro-listado-opiniones .valoraciones-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3.5rem 4.5rem;
  }
}
#centro-listado-opiniones .subfamilias {
  display: grid;
  grid-gap: 2.5rem;
  margin: 4.5rem 0;
}
@media (min-width: 768px) {
  #centro-listado-opiniones .subfamilias {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  #centro-listado-opiniones .subfamilias {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
#centro-listado-opiniones .subfamilias h2 a {
  background-color: var(--general);
  border-radius: 5rem;
  color: white;
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 1rem 2.5rem;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
@media (min-width: 768px) {
  #centro-listado-opiniones .subfamilias h2 a {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  #centro-listado-opiniones .subfamilias h2 a {
    font-size: 2.1rem;
  }
}
#centro-listado-opiniones .subfamilias h2 a:hover {
  background-color: var(--primary-dark);
}

.valoracion-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 3rem rgba(21, 64, 60, 0.1);
          box-shadow: 0 0 3rem rgba(21, 64, 60, 0.1);
  border-top-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  overflow: hidden;
}
.valoracion-single .valoracion-img {
  height: 20rem;
  width: 100%;
}
.valoracion-single .valoracion-img img {
  display: block;
  height: 100% !important;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100% !important;
}
.valoracion-single .valoracion-contenido {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 2.5rem 3rem;
}
.valoracion-single .valoracion-contenido p {
  font-size: 1.4rem;
  line-height: 1.18;
  margin: 0;
}
@media (min-width: 1200px) {
  .valoracion-single .valoracion-contenido p {
    font-size: 1.6rem;
  }
}
.valoracion-single .valoracion-contenido p.titulo {
  color: var(--general);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 1200px) {
  .valoracion-single .valoracion-contenido p.titulo {
    font-size: 2.1rem;
  }
}
.valoracion-single .valoracion-contenido p.contenido {
  margin-bottom: 2.5rem;
}
.valoracion-single .valoracion-contenido a {
  -ms-flex-item-align: center;
      align-self: center;
  background-color: var(--general);
  border-radius: 2rem;
  color: white;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0.5rem 2.5rem;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  width: 100%;
}
.valoracion-single .valoracion-contenido a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.paginador {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.paginador .paginator-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.1rem solid var(--general);
  color: var(--general);
  font-size: 2.1rem;
  font-weight: 700;
  height: 3.5rem;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  width: 3.5rem;
}
@media (min-width: 992px) {
  .paginador .paginator-item {
    font-size: 2.4rem;
    height: 4.5rem;
    width: 4.5rem;
  }
}
.paginador .paginator-item.paginator-prev svg, .paginador .paginator-item.paginator-next svg {
  display: block;
  fill: var(--general);
  height: 100%;
  width: 1rem;
}
@media (min-width: 992px) {
  .paginador .paginator-item.paginator-prev svg, .paginador .paginator-item.paginator-next svg {
    width: 1.5rem;
  }
}
.paginador .paginator-item.paginator-inicio, .paginador .paginator-item.paginator-fin {
  padding: 0 0.7rem 0 0.7rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.paginador .paginator-item.paginator-next svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.paginador .paginator-item.paginator-prev {
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
}
.paginador .paginator-item.paginator-next {
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem;
}
.paginador .paginator-item.paginator-active {
  background-color: var(--general);
  color: white;
}
.paginador .paginator-item:hover {
  background-color: rgba(245, 102, 0, 0.55);
  color: white;
}

#add-social {
  padding: 1.5rem 0;
}
@media (min-width: 1200px) {
  #add-social {
    padding: 2.7rem 0;
  }
}
#add-social + footer, #add-social + .breadcrumbs {
  margin-top: 0;
}
#add-social .add-social-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(-webkit-min-content, -webkit-max-content));
  grid-template-columns: repeat(2, minmax(min-content, max-content));
}
@media (min-width: 768px) {
  #add-social .add-social-wrapper {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
}
#add-social .add-social-wrapper .add-social-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#add-social .add-social-wrapper .add-social-text svg {
  fill: #444;
  height: 2.456rem;
  width: 2.149rem;
}
#add-social .add-social-wrapper .add-social-text p {
  font-size: 1.4rem;
  margin-left: 1.5rem;
}
#add-social .add-social-wrapper .add-social-icons {
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, -webkit-max-content));
  grid-template-columns: repeat(4, minmax(0, max-content));
}
#add-social .add-social-wrapper .add-social-icons button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
}
#add-social .add-social-wrapper .add-social-icons button i {
  -webkit-filter: invert(75%);
          filter: invert(75%);
  display: block;
  height: 1.8rem;
  width: 1.8rem;
}
@media (min-width: 992px) {
  #add-social .add-social-wrapper .add-social-icons button i {
    height: 2.8rem;
    width: 2.8rem;
  }
}
#add-social .add-social-wrapper .add-social-icons button i.fab {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#add-social .add-social-wrapper .add-social-icons button i.fab.fa-facebook-f {
  background-image: url("../../images/icons/social/facebook.svg");
}
#add-social .add-social-wrapper .add-social-icons button i.fab.fa-twitter {
  background-image: url("../../images/icons/social/twitter-x.svg");
}
#add-social .add-social-wrapper .add-social-icons button i.fab.fa-twitter-x {
  background-image: url("../../images/icons/social/twitter-x.svg");
}
#add-social .add-social-wrapper .add-social-icons button i.fab.fa-linkedin-in {
  background-image: url("../../images/icons/social/linkedin.svg");
}
#add-social .add-social-wrapper .add-social-icons button i.fab.fa-whatsapp {
  background-image: url("../../images/icons/social/whatsapp.svg");
}
/*# sourceMappingURL=centro.css.map */
