@charset "UTF-8";
.anek-bangla-light {
  font-family: "Anek Bangla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 300;
}

/* Variables */
:root {
  --color-1: #E10E78;
  --color-2: #C0D731;
  --color-3: #BA1F42;
  --color-4: #585858;
  --color-5: #ffffff;
  --color-6: #FFFDF4;
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 992px;
  --font-family: "Anek Bangla", sans-serif;
  --fs-nav:20px;
  --fs-hero-title:25px;
  --fs-hero-p:12px;
  --fs-indice:29px;
  --fs-button:12px;
  --fs-cta-title:31.28px;
  --fs-cta-p:21.5px;
  --fs-btn-subir:15px;
  --fs-footer-nav:18px;
  --fs-footer-copy:17.5px;
  --bd-round: 20px;
  --lh: 1.0;
  --space:30px;
  --width-movil: 90%;
  --width-tablet: 86%;
  --width-desktop:924.75px;
}

@media (min-width: 920px) {
  :root {
    --fs-hero-title:55px;
    --fs-hero-p:20px;
    --fs-indice:50px;
    --fs-button:16px;
    --fs-cta-title:52px;
    --fs-cta-p:35px;
    --fs-btn-subir:17px;
    --fs-footer-nav:15px;
    --fs-footer-copy:14px;
  }
}
@media (min-width: 1080px) and (max-width: 1280px) {
  :root {
    --fs-nav:15px;
  }
}
@media (min-width: 1280px) {
  :root {
    --fs-nav:18px;
  }
}
.w-100 {
  max-width: 100%;
  margin: 0 auto;
}

/*fonts*/
.fw200 {
  font-weight: 200;
}

p, .fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

strong, .fw600 {
  font-weight: 600;
}

* {
  line-height: var(--line-height);
  text-decoration: none;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: r;
}

.text-justify {
  text-align: justify;
}

.color-1 {
  color: var(--color-1);
}

.color-2 {
  color: var(--color-2);
}

.color-3 {
  color: var(--color-3);
}

.color-4 {
  color: var(--color-4);
}

.color-5 {
  color: var(--color-5);
}

.color-6 {
  color: var(--color-6);
}

.bgc1 {
  background-color: var(--color-1);
}

.bgc2 {
  background-color: var(--color-2);
}

.bgc3 {
  background-color: var(--color-3);
}

.bgc4 {
  background-color: var(--color-4);
}

.bgc5 {
  background-color: var(--color-5);
}

.bgc6 {
  background-color: var(--color-6);
}

.p-0 {
  padding: 0;
}

.pb-half {
  padding-bottom: calc(var(--space) * 1);
}

* {
  -webkit-font-smoothing: antialiased;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--width-desktop);
}

/* Modern CSS Reset - A practical baseline for better web development */
/* 1. More intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations (if needed for specific use cases) */
html {
  background-color: var(--color-background-light);
}

/* 4. Add accessible line-height */
body {
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-family);
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping (optional, for specific scenarios) */
/* a { text-decoration-skip-ink: auto; } */
/* Estilos Base (Mobile First) */
header {
  border-bottom: solid 6px var(--color-2);
  z-index: 10;
  position: relative;
  background-color: var(--color-6);
}

.navbar {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-6);
  padding: 10px 20px;
  position: relative;
  max-width: 1280px;
}
@media (min-width: 1080px) {
  .navbar .navbar {
    align-content: flex-end;
    padding: 50px 19px 20px;
  }
}

.logo {
  color: var(--color-texto);
  font-size: 1.5em;
  width: 109px;
}
@media (min-width: 1080px) {
  .logo {
    width: 179px;
  }
}

/* Botón de alternancia (visible en móvil) */
.menu-toggle {
  color: var(--color-6);
  font-size: 1.8em;
  cursor: pointer;
  display: block;
  background-color: var(--color-1);
  width: 42px;
  text-align: center;
  border-radius: 10px;
  height: 42px;
  align-content: center;
}
@media (min-width: 1080px) {
  .menu-toggle {
    display: none;
  }
}

/* Lista de navegación (oculta inicialmente para que slideToggle funcione) */
.nav-list {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-3);
  list-style: none;
  padding: 20px 0 40px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1080px) {
  .nav-list {
    display: flex !important;
    flex-direction: row;
    position: static;
    background-color: transparent;
    justify-content: end;
    padding: 0;
  }
}
.nav-list li {
  text-align: left;
  padding: 0 20px;
}
@media (min-width: 1080px) {
  .nav-list li {
    border-top: none;
    padding: 0 17px;
    position: relative;
  }
  .nav-list li:last-child {
    border-right: none;
  }
}
.nav-list a {
  padding: 15px 0 20px;
  color: var(--color-5);
  transition: background-color 0.3s;
  display: flex;
  position: relative;
  font-size: var(--fs-nav);
  font-weight: 300;
  justify-content: left;
  align-items: center;
}
@media (min-width: 1080px) {
  .nav-list a {
    background-color: transparent;
    color: var(--color-4);
    padding: 0;
  }
}
.nav-list a:hover {
  background-color: inherit;
  color: var(--color-2);
}
.nav-list a:hover:before {
  background-color: var(--color-2);
}
@media (min-width: 1080px) {
  .nav-list a:hover {
    background-color: var(--color-secundario);
  }
}
.nav-list a:before {
  content: "";
  color: var(--color-5);
  font-size: 12px;
  margin-right: 15px;
  display: block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}
@media (min-width: 1080px) {
  .nav-list a:before {
    display: none;
  }
}
.nav-list a:after {
  content: "";
  display: block;
  width: -webkit-fill-available;
  position: absolute;
  bottom: 0;
  left: 22px;
  border-bottom: solid 1px #fff;
}
@media (min-width: 1080px) {
  .nav-list a:after {
    display: none;
  }
}

@media (min-width: 1080px) {
  .nav-list li:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 7px;
    border-right: solid 1px var(--color-1);
    height: 12px;
  }
  .nav-list li:last-child:after {
    display: none;
  }
  .nav-list li.active a:after {
    border-bottom: solid 3px var(--color-3);
    content: "";
    display: block;
    width: 100%;
    left: 0;
    bottom: -5px;
  }
  .nav-list li.active a {
    font-weight: 500;
    color: var(--color-3);
  }
}
.trp-shortcode-switcher {
  padding: 0px !important;
}

.trp-language-switcher .trp-switcher-dropdown-list a.trp-language-item {
  padding-bottom: 11px;
  overflow: visible;
}

.trp-language-switcher .trp-language-item-name {
  overflow: visible;
}

.header_menu {
  display: flex;
  align-items: center;
  overflow: visible;
}
@media (min-width: 1080px) {
  .header_menu {
    flex-flow: column;
    align-content: flex-end;
    align-items: end;
  }
}

.trp-shortcode-switcher__wrapper {
  margin-top: 9px;
  margin-right: 12px;
}
@media (min-width: 1080px) {
  .trp-shortcode-switcher__wrapper {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.footer_nav li {
  list-style: none;
  color: var(--color-3);
}

.footer_nav li a {
  color: var(--color-3);
  font-size: var(--fs-footer-nav);
}

footer .py-1 {
  padding-top: calc(var(--space) * 1.1) !important;
  padding-bottom: calc(var(--space) * 1.1) !important;
}

nav.footer_nav ul {
  padding: 0;
}

.footer_social a {
  display: inline-block;
  margin: 0 10px;
}

.footer_social_icon {
  width: 42px;
}

.footer_col {
  margin-bottom: calc(var(--space) * 0.7);
}

.footer_social {
  padding: 11px 0 0;
}

img.footer_logo {
  width: 85px;
  margin-left: auto;
  margin-right: auto;
}

.separator:before {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background-color: var(--color-3);
  margin-left: auto;
  margin-right: auto;
}

.footer_social a {
  display: inline-block;
  cursor: pointer;
  transition: all ease 0.5s;
}

.footer_social a:hover {
  transform: scale(1.2);
}

.d-movil {
  display: block;
}

.d-desktop {
  display: none;
}

.cta {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.cta .cta_title {
  font-size: var(--fs-cta-title);
  line-height: calc(var(--lh) * 1.1);
  display: inline-block;
  margin-bottom: calc(var(--space) * 0.4);
}
.cta .cta_p {
  font-size: var(--fs-cta-p);
  font-weight: 200;
  line-height: calc(var(--lh) * 1);
  display: inline-block;
  margin-bottom: calc(var(--space) * 0.6);
}

.btn-scrollto {
  font-size: 16px;
  width: 45px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: #fff;
  font-weight: 200;
  text-align: center;
}

.img_scrollto {
  width: 45px;
  margin-bottom: 2px;
  transition: all ease 0.4s;
}
.img_scrollto:hover {
  transform: translateY(-5px);
}

@media (min-width: 920px) {
  .container_footer {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 931px;
  }
  .d-movil {
    display: none;
  }
  .d-desktop {
    display: block;
  }
  .fc1 {
    width: 20%;
  }
  .fc2 {
    width: 50%;
  }
  .fc4 {
    width: 30%;
  }
  nav.footer_nav ul {
    column-count: 2;
    text-align: left;
  }
  footer .py-1 {
    padding-top: calc(var(--space) * 2) !important;
    padding-bottom: calc(var(--space) * 2) !important;
  }
  nav.footer_nav {
    max-width: 395px;
  }
  img.footer_logo {
    width: 135px;
    margin-left: 0;
  }
  .footer_col {
    text-align: left;
  }
  .col-12.footer_col.fc4.text-center * {
    text-align: center;
  }
  .cta {
    display: flex;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    flex-flow: column;
    text-align: left;
  }
  .cta .btn {
    margin-bottom: 0;
  }
  .cta .cta_title {
    max-width: inherit;
  }
  .cta .cta_p {
    max-width: inherit;
    max-width: 600px;
  }
  .cta_2 {
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-bottom: calc(var(--space) * 2);
  }
  .py-1 {
    padding-top: calc(var(--space) * 3);
    padding-bottom: calc(var(--space) * 3);
  }
}
.footer_nav li a {
  position: relative;
}

.footer_nav li a:hover:before {
  content: "";
  display: block;
  width: 7px;
  height: 13px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  background-image: url(../../img/design/bullet.webp);
  position: absolute;
  left: -15px;
  top: 11px;
}

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: calc(var(--space) * 2);
  padding-bottom: calc(var(--space) * 2);
}

.container_indice {
  max-width: 924px;
}

.container_cta {
  max-width: 789px;
}
@media (min-width: 920px) {
  .container_cta {
    padding-top: calc(var(--space) * 4);
    padding-bottom: calc(var(--space) * 3);
  }
}

.container_footer {
  max-width: 910px;
}

.th_indice_logo {
  margin-left: auto;
  margin-right: auto;
  width: 97px;
  display: block;
  margin-bottom: calc(var(--space) * 2);
}
@media (min-width: 920px) {
  .th_indice_logo {
    width: 167px;
    margin-right: 0;
  }
}

.carusel1_item_desktop {
  background-color: var(--color-5);
}

.carusel_item {
  height: 485px;
}
.carusel_item div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}
.carusel_item div.carusel_item_m {
  display: block;
}
@media (min-width: 768px) {
  .carusel_item div.carusel_item_m {
    display: none;
  }
}
.carusel_item div.carusel_item_d {
  display: none;
}
@media (min-width: 768px) {
  .carusel_item div.carusel_item_d {
    display: block;
    background-size: cover;
  }
}
@media (min-width: 920px) {
  .carusel_item {
    height: 85vh;
    max-height: 768px;
  }
}

.carusel1_item_movil {
  background-image: url(../../img/webp/Slider_01_m.webp);
}

.carusel1_item_desktop {
  background-image: url(../../img/webp/Slider_01.webp);
}

.carusel2_item_movil {
  background-image: url(../../img/webp/Slider_02_m.webp);
}

.carusel2_item_desktop {
  background-image: url(../../img/webp/Slider_02.webp);
}

.carusel3_item_movil {
  background-image: url(../../img/webp/Slider_03_m.webp);
}

.carusel3_item_desktop {
  background-image: url(../../img/webp/Slider_03.webp);
}

.owl-dots {
  text-align: center;
  padding: 12px;
}

button.owl-dot {
  background-color: var(--color-2) !important;
  width: 7px;
  height: 7px;
  margin: 0 7px;
  border-radius: 50%;
}

button.owl-do.active {
  background-color: var(--color-1) !important;
}

button.owl-dot.active {
  background-color: var(--color-1) !important;
  width: 14px;
  height: 14px;
  transform: translateY(4px);
}

.carusel_item div.carusel_item_txt {
  top: inherit !important;
  bottom: 0;
  height: auto;
  text-align: center;
  padding: 32px;
}

.carusel_item div.carusel_item_txt * {
  line-height: calc(var(--lh) * 1.1);
}

.carusel_title {
  font-weight: 300;
  line-height: calc(var(--lh) * 1.1);
}
@media (min-width: 920px) {
  .carusel_title {
    margin-bottom: 5px;
  }
}

.carusel_title p {
  line-height: calc(var(--lh) * 1.1);
}

.th_indice {
  margin-left: auto;
  margin-right: auto;
  max-width: 297px;
  margin-bottom: calc(var(--space) * 2);
}
@media (min-width: 768px) {
  .th_indice {
    width: 100%;
    max-width: 924px;
  }
}
.th_indice div {
  display: flex;
}
.th_indice a {
  color: var(--color-3);
  border-bottom: 2px solid var(--color-3);
  display: flex;
  align-items: start;
  font-size: var(--fs-indice);
  padding: 18px 0;
  width: 100%;
  line-height: 100%;
  font-weight: 300;
}
@media (min-width: 992px) {
  .th_indice a {
    padding: 24px 0;
  }
}
.th_indice a:before {
  content: "";
  display: block;
  background: url(../../img/design/bullet-1.webp) no-repeat left center;
  background-size: 100% auto;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .th_indice a:before {
    margin-top: 4px;
  }
}
@media (min-width: 920px) {
  .th_indice a:before {
    margin-top: 11px;
  }
}
.th_indice a:hover {
  color: var(--color-2);
  border-bottom-color: var(--color-2);
}
.th_indice a:hover:before {
  background-image: url(../../img/design/bullet-1-hover.webp);
}
.th_indice a.noaf:after {
  display: none;
}

.btn {
  margin-left: auto;
  margin-right: auto;
  padding: 16px 30px;
  display: block;
  text-align: center;
  border-radius: 9px;
  width: fit-content;
  font-size: var(--fs-button);
  margin-bottom: calc(var(--space) * 1.15);
  transition: all ease-out 0.4s;
}
.btn.bgc3:hover {
  background-color: var(--color-2);
  color: var(--color-3);
}
.btn.bgc6:hover {
  transform: scale(1.06);
}

@media (min-width: 920px) {
  .carusel_title {
    font-size: 55px;
  }
  .carusel_p {
    font-size: 20px;
    font-weight: 300;
    max-width: 674px;
    margin: 0 auto;
    line-height: calc(var(--lh) * 1.2);
  }
  .carusel_item div.carusel_item_txt {
    bottom: 70px;
  }
  .owl-dots {
    display: none;
  }
}
.page_header_img {
  height: 120px;
  background-color: #89122d;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.page_header_img.phi2 {
  background-size: 100% auto;
  background-position: center top;
}

.page_header_title {
  font-weight: 300;
  text-align: center;
  font-size: 27px;
  line-height: 1;
}
@media (min-width: 920px) {
  .page_header_title {
    font-size: 50px;
    max-width: 300px;
  }
}

.page_header_col_1 {
  padding: 10px 0;
}

p span {
  color: var(--color-3);
}

.container_page {
  width: 250px;
}

section.page_header {
  display: flex;
  width: 100%;
  flex-flow: column-reverse;
}

.page_header_col_2 {
  width: 100%;
}

.pagelafirma_img {
  height: 267px;
  position: relative;
  overflow-x: hidden;
}

.pagelafirma_img img {
  max-width: inherit;
  height: 267px;
  position: absolute;
  left: 50%;
  margin-left: -400px;
}

span.d-none-en {
  color: #585858;
}

.translatepress-en_US .d-none-en {
  display: none;
}

h3.block_title {
  color: var(--color-3);
  font-weight: 300;
  font-size: 29px;
}

.content p {
  color: #585858;
}

.block_heading .separator:before {
  margin-left: 0;
  margin: 17px 0;
}

.content p {
  color: #585858;
}

.block_membresias {
  margin-bottom: calc(var(--space) * 3);
}

.membresia {
  display: flex;
  border-bottom: solid 1px #cccccc;
  padding-bottom: 20px;
  padding-top: 20px;
  max-width: 225px;
  margin: 0;
}

.membresia_title {
  color: var(--color-3);
  font-size: 22px;
}

.membresia_txt {
  line-height: 1.2;
  padding-left: 12px;
}

.membresia_link {
  color: var(--color-3);
  text-decoration: underline;
  font-size: 14px;
}

.membresia_p {
  color: #585858;
  font-size: 12px;
  line-height: 1.3;
  padding-top: 6px;
}

@media (min-width: 920px) {
  .container_page {
    width: 800px;
  }
  section.page_header {
    display: flex;
    width: 100%;
    flex-flow: row;
  }
  .page_header_img {
    height: 260px;
  }
  .page_header_col_1 {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page_header_col_2 {
    width: 55%;
  }
  .pagelafirma_img,
  .pagelafirma_img img {
    height: auto;
  }
  .pagelafirma_img img {
    position: relative;
    left: inherit;
    margin-left: inherit;
    margin-left: auto;
    margin-right: auto;
  }
  .content p {
    font-size: 20px;
    color: #585858;
    margin-bottom: var(--space);
  }
  .membresia {
    max-width: 50%;
    width: 50%;
    border-bottom: none;
    margin-bottom: calc(var(--space) * 1.6);
  }
  .membresia_img img {
    width: 100px;
  }
  .membresia_title {
    font-size: 28px;
    line-height: 0.9;
  }
  .membresia_link {
    font-size: 16px;
  }
  .membresia_p {
    font-size: 16px;
    font-weight: 300;
    max-width: 240px;
  }
  .membresia_txt {
    padding-left: 20px;
  }
  .block_membresias {
    display: flex;
    flex-wrap: wrap;
  }
  h3.block_title {
    font-size: 50px;
    text-align: center;
  }
  .block_heading .separator:before {
    margin: 20px auto 40px;
  }
}
ul.list-custom-1 {
  list-style: disc;
  font-size: 23px;
  padding-left: 19px;
  line-height: calc(var(--lh) * 1.1);
  font-weight: 400;
  padding-top: 60px;
  margin: 30px auto 60px;
  max-width: 320px;
}

ul.list-custom-1 li {
  margin-bottom: 8px;
}

.d-block {
  display: block;
}

.image-border-1 {
  border-radius: 32px;
}

.mx_auto {
  margin-left: auto;
  margin-right: auto;
}

.list-custom-2 {
  font-size: 23px;
  padding-left: 19px;
  line-height: calc(var(--lh) * 1.1);
  font-weight: 400;
  padding-top: 60px;
  margin: 0 auto 60px;
  max-width: 320px;
}

.list-custom-2 li span {
  margin-bottom: 8px;
  position: relative;
}

.practica_col_img {
  margin-bottom: -30px;
  width: 100%;
}

.practica_col_img {
  position: relative;
  z-index: 2;
}

@media (min-width: 920px) {
  .practica_row {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    padding: 114px 0;
  }
  .pb_half {
    padding-bottom: 70px;
  }
  .practica_col_img {
    margin-bottom: 0;
    width: 90%;
    max-width: 367px;
  }
  .practica_col_1 {
    width: 60%;
    display: flex;
    align-items: center;
  }
  .practica_col_2 {
    width: 40%;
  }
  ul.list-custom-1 {
    font-size: 32px;
    padding: 0;
    margin: 0;
    max-width: 443px;
    max-width: inherit;
    padding: 0;
  }
  ul.list-custom-1 li {
    font-size: 32px;
    max-width: 450px;
    padding: 0;
    margin: 0;
  }
  .practica_row.pr2 {
    flex-direction: row-reverse;
  }
  .list-custom-2 {
    max-width: 460px;
    margin: 0;
    padding: 0;
  }
  .list-custom-2 li {
    font-size: 32px;
  }
  ul.list-custom-1 li::marker,
  ul.list-custom-2 li::marker {
    font-size: 12px;
  }
  .practica_col_1.practica_col_1_right {
    justify-content: end;
  }
}
.arrow_green:before,
.arrow_white:before,
.arrow_crema:before {
  content: "";
  display: block;
  width: 53px;
  height: 50px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  margin-left: -26.5px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
}

.arrow_green:before {
  background-image: url(../../img/design/arrow_green.webp);
}

.arrow_white:before {
  background-image: url(../../img/design/arrow_white.webp);
}

.arrow_crema:before {
  background-image: url(../../img/design/arrow_crema.webp);
}

@media (min-width: 1080px) {
  .practica_row {
    max-width: 930px;
  }
  .list-custom-2 li span {
    font-size: 30px;
  }
  .arrow_green:before,
  .arrow_white:before,
  .arrow_crema:before {
    width: 77px;
    margin-left: -35.5px;
  }
}
.container_equipo_nav {
  padding: 23px 0;
}
@media (min-width: 920px) {
  .container_equipo_nav {
    padding: 55px 0;
  }
}

.container_equipo {
  padding-top: 30px;
}
@media (min-width: 920px) {
  .container_equipo {
    padding-top: 100px;
    width: 100%;
    padding: 90px 0;
  }
}

.equipo_nav ul {
  list-style: none;
  display: inline;
  padding-left: 0;
}

.equipo_nav ul li {
  display: inline;
  text-align: center;
}

.equipo_nav ul li a {
  color: var(--color-4);
  text-align: center;
  margin: 0 0px;
  font-size: 14px;
  font-weight: 300;
}
.equipo_nav ul li a.active {
  font-weight: 500;
  color: var(--color-2);
}
@media (min-width: 920px) {
  .equipo_nav ul li a {
    font-size: 21px;
    margin: 0 20px;
  }
}

.equipo_nav ul li:after {
  content: "";
  width: 1px;
  height: 12px;
  display: inline-block;
  background-color: var(--color-1);
  margin: 0 12px;
}

@media (max-width: 1079px) {
  .nav-list {
    display: none;
  }
}

.equipo_all {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 967px) {
  .equipo_all {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (min-width: 968px) {
  .equipo_all {
    max-width: 1080px;
  }
}

.equipo_thumb {
  width: 50%;
  margin-bottom: 18px;
}
.equipo_thumb:hover {
  transform: scale(1.1);
}
@media (min-width: 540px) {
  .equipo_thumb {
    width: 33.3%;
  }
}
@media (min-width: 800px) {
  .equipo_thumb {
    width: 25%;
    box-sizing: content-box;
  }
}
@media (min-width: 968px) {
  .equipo_thumb {
    margin-bottom: 50px;
  }
}
.equipo_thumb.socios .equipo_thumb_name {
  background-color: var(--color-2);
  color: var(--color-3);
}

.equipo_thumb_wrap {
  width: 88%;
  margin: 0 auto;
}
@media (min-width: 968px) {
  .equipo_thumb_wrap {
    padding: 0;
    max-width: 218px;
  }
}
.equipo_thumb_wrap img {
  height: auto;
}

.equipo_thumb_name {
  text-align: center;
  font-size: 13px;
}
@media (min-width: 968px) {
  .equipo_thumb_name {
    font-size: 20px;
  }
}

.equipo_nav ul li.active a {
  font-weight: 500 !important;
  color: var(--color-2) !important;
}

.equipo_nav ul li:last-child:after {
  display: none;
}

.team_single {
  color: var(--color-4);
}

.team_single * {
  display: inline-block;
}

.separator {
  padding: 0 30px;
}

@media (min-width: 968px) {
  .d-sm-block {
    display: none;
  }
}

.d-sm-none {
  display: none;
}
@media (min-width: 968px) {
  .d-sm-none {
    display: block;
  }
}

.equipo_single_x1 {
  display: inline-block;
  border-bottom: solid 1px #ddd;
  margin-bottom: 10px;
}

.equipo_single_x2 span {
  display: inline;
}

span.equipo_separador.d-sm-none {
  display: none;
}

.equipo_separador {
  margin: 0 20px;
  font-size: 12px;
  color: #ddd;
}

.equipo_single_x2 {
  color: var(--color-4);
}

.equipo_single {
  margin: 0 auto;
  padding: 0 30px;
}

figure.equipo_single_photo {
  border: solid 10px #fff;
  margin-bottom: var(--space);
  margin-top: 30px;
}

.equipo_single_title {
  margin-bottom: calc(var(--space) * 0.6);
}

.equipo_single_text {
  margin-bottom: var(--space);
  text-align: center;
}

.equipo_single_datos {
  margin-bottom: calc(var(--space) * 2);
  padding: 30px;
  background-color: var(--color-5);
  color: var(--color-4);
}

.equipo_single_datos a {
  color: var(--color-3);
}

span.datos_name {
  min-width: 83px;
  display: inline-block;
  padding-right: 13px;
}

.translatepress-en_US span.datos_name {
  min-width: 100px;
}

.datos_row {
  margin-bottom: calc(var(--space) * 0.5);
}

.equipo_single .separator:before {
  width: 5px;
  height: 5px;
  background-color: var(--color-3);
  border-radius: 50%;
  margin-bottom: calc(var(--space) * 0.6);
}

.equipo_single_photo_m {
  max-width: 400px;
  margin: 0 auto 30px;
  width: 86%;
  border: solid 12px #ffffff;
}

.bgc6 .equipo_single {
  padding: 30px 30px 60px;
}

.area_practica {
  padding: 24px 30px 60px;
}

.area_practica .area_practica_title {
  margin-bottom: 6px;
  font-size: 20px;
}

.area_practica p {
  line-height: 1.35;
  margin-bottom: 15px;
}

.area_practica .separator:before {
  background-color: wheat;
  margin-left: 0;
}

.area_practica .separator {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.block_publicaciones p {
  margin-bottom: 15px;
}

@media (min-width: 968px) {
  .equipo_single_x1 {
    display: inline;
    border-bottom: none;
  }
  .equipo_single_x2 {
    display: inline;
  }
  span.equipo_separador.d-sm-none {
    display: inline;
  }
  figure.equipo_single_photo_d {
    max-width: 881px;
    margin: 0 auto 60px;
    border: solid 12px #ffffff;
    display: inline-block;
  }
  .equipo_single_title {
    font-size: 40px;
  }
  .equipo_single_text {
    max-width: 720px;
    margin: 0 auto 50px;
  }
  .equipo_single_datos {
    max-width: 670px;
    margin: 0 auto;
    padding: 30px 50px;
  }
  .area_practica .area_practica_title {
    font-size: 24px;
  }
  .area_practica p {
    font-size: 20px;
    margin-bottom: 0;
  }
  .area_practica {
    padding: 45px 0 60px;
    max-width: 789px;
    margin: 0 auto;
  }
}
.owl-carousel.owl-premios .owl-nav button.owl-prev {
  background-image: url(../../img/design/slide_prev_red.webp) !important;
  left: 30px;
  width: 11px;
  height: 33px;
  background-size: auto 100%;
}

.owl-carousel.owl-premios .owl-nav button.owl-next {
  background-image: url(../../img/design/slide_next_red.webp) !important;
  right: 30px;
  width: 11px;
  height: 33px;
  background-size: auto 100%;
}

.owl-carousel.owl-premios .owl-item div {
  margin: 0 auto;
  position: relative;
}

.carousel-premios-wrap {
  padding: 45px 0;
  margin: 0 auto;
}

.owl-carousel.owl-premios .owl-item div img {
  width: 100%;
  height: auto;
}

.owl-premios .owl-item div:after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  background: transparent url(../../img/design/premio-shadow.png) center top no-repeat;
  background-size: 135% auto;
  margin-top: 13px;
}

@media (max-width: 699px) {
  .owl-carousel.owl-premios:before {
    content: "";
    display: block;
    width: 12px;
    background: url(../../img/design/bullet-indicator.webp) no-repeat center center;
    margin: 0 auto 8px;
    height: 10px;
    background-size: 100% auto;
    position: absolute;
    z-index: 100;
    left: 50%;
    top: -36px;
  }
}
@media (min-width: 700px) {
  .owl-carousel.owl-premios .owl-item.active.second-active div {
    margin-top: 34px;
  }
  .owl-carousel.owl-premios .owl-item.active.second-active:before {
    content: "";
    display: block;
    width: 12px;
    background: url(../../img/design/bullet-indicator.webp) no-repeat center center;
    margin: 0 auto 8px;
    height: 10px;
    background-size: 100% auto;
    position: absolute;
    z-index: 100;
    left: 50%;
    top: -50px;
  }
  .owl-premios .owl-stage {
    padding: 70px 0;
  }
  .carousel-premios-wrap {
    max-width: 860px;
  }
  .owl-carousel.owl-premios .owl-item div {
    margin: 0 auto;
    transition: all ease 0.5s;
  }
  .owl-carousel.owl-premios .owl-item.active.second-active div {
    transform: scale(1.42);
  }
  .owl-nav {
    top: 33% !important;
  }
}
@media (min-width: 1200px) {
  .carousel-premios-wrap {
    max-width: 1080px;
    margin: 0 auto;
  }
  .owl-premios .owl-stage {
    padding: 132px 0;
  }
  .owl-carousel.owl-premios .owl-item div {
    margin: 0 auto;
    width: 197px !important;
    transition: all ease 0.5s 0s;
  }
  .owl-carousel.owl-premios .owl-item.active.second-active div {
    transform: scale(2.1);
    margin-top: 34px;
  }
  .owl-carousel.owl-premios .owl-item.active.second-active:before {
    top: -132px;
  }
  .owl-carousel.owl-premios .owl-nav button.owl-prev {
    left: 25px;
    top: 6px;
    width: 46px;
    height: 109px;
    background-size: auto 100%;
  }
  .owl-carousel.owl-premios .owl-nav button.owl-next {
    right: 25px;
    top: 6px;
    width: 46px;
    height: 109px;
    background-size: auto 100%;
  }
}
nav.post-navigation-cpt {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

nav.post-navigation-cpt img {
  width: 17px;
}
@media (min-width: 400px) {
  nav.post-navigation-cpt img {
    width: 33px;
  }
}

.nav-links-prev,
.nav-links-next {
  position: absolute;
  top: 160px;
  width: 16px;
}
@media (min-width: 320px) {
  .nav-links-prev,
  .nav-links-next {
    width: 20px;
    top: 180px;
  }
}
@media (min-width: 400px) {
  .nav-links-prev,
  .nav-links-next {
    width: 20px;
    top: 220px;
  }
}
@media (min-width: 600px) {
  .nav-links-prev,
  .nav-links-next {
    top: 235px;
  }
}
@media (min-width: 990px) {
  .nav-links-prev,
  .nav-links-next {
    top: 235px;
  }
}
@media (min-width: 1050px) {
  .nav-links-prev,
  .nav-links-next {
    width: 33px;
  }
}

.nav-links-prev {
  left: 13px;
}
@media (min-width: 400px) {
  .nav-links-prev {
    left: 20px;
  }
}
@media (min-width: 600px) {
  .nav-links-prev {
    left: 40px;
  }
}
@media (min-width: 900px) {
  .nav-links-prev {
    left: 20px;
  }
}

.nav-links-next {
  right: 13px;
}
@media (min-width: 400px) {
  .nav-links-next {
    right: 20px;
  }
}
@media (min-width: 600px) {
  .nav-links-next {
    right: 40px;
  }
}
@media (min-width: 900px) {
  .nav-links-next {
    right: 20px;
  }
}

.noticias_all {
  max-width: 225px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 49px 0;
}

.noticia_thumb {
  width: 100%;
}

.noticia_thumb_date {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.noticia_thumb_date p {
  color: var(--color-3);
  font-weight: 500;
}

.noticia_thumb_date:before {
  content: "";
  display: block;
  width: 7px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  background-image: url(../../img/design/bullet.webp);
  position: absolute;
  left: -15px;
}

.noticia_thumb_txt {
  font-size: 14px;
  display: flex;
  flex-direction: column-reverse;
}

.noticia_thumb_img {
  margin-bottom: 20px;
}

.noticia_thumb_txt .separator:before {
  margin-left: 0 !important;
  padding: 0 !important;
  margin-top: 20px;
  margin-bottom: 20px;
}

.noticia_thumb_txt .separator {
  padding-left: 0;
  margin-bottom: 30px;
}

.noticias_section {
  padding-bottom: 60px;
}

@media (min-width: 640px) {
  .noticia_thumb {
    margin-bottom: 45px;
  }
  .noticia_thumb_wrap {
    display: flex;
    max-width: 555px;
  }
  .noticias_all {
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
  }
  .noticia_thumb {
    padding: 26px;
  }
  .noticia_thumb_img {
    max-width: 60%;
    margin-bottom: 0;
  }
  .noticia_thumb_txt {
    max-width: 40%;
    padding-left: 7%;
    display: flex;
    flex-direction: column;
    align-self: self-start;
  }
  .content .noticia_thumb p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .noticia_thumb_txt .separator:before {
    margin-top: 0;
  }
  .noticias_section {
    padding-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  .noticias_all {
    max-width: 1170px;
    margin: 0 auto;
    padding-top: 120px;
  }
  .noticia_thumb {
    width: 50%;
    padding: 0;
    margin-bottom: 70px;
  }
  .noticia_thumb_txt .separator:before {
    margin-top: 0;
    margin-bottom: 13px;
  }
  .content .noticia_thumb .noticia_thumb_date p {
    font-size: 22px;
    margin-bottom: 9px;
  }
  .noticias_section {
    padding-bottom: 130px;
  }
  .noticia_thumb_txt .separator {
    margin-bottom: 0;
  }
}
nav.navigation.pagination {
  margin: 0 auto;
  padding: 40px 0;
}

.pagination .nav-links > * {
  color: var(--color-4);
  font-size: 21px;
  position: relative;
  font-weight: 300;
  padding: 0 15px;
}

span.page-numbers.current {
  color: var(--color-2);
}

.page-numbers {
  position: relative;
}

.page-numbers:not(.prev):before,
.page-numbers:not(.next):before {
  content: "|";
  display: inline-block;
  padding-right: 16px;
  font-size: 12px;
  color: var(--color-1);
  position: absolute;
  left: 0;
  top: 10px;
}

.prev.page-numbers {
  display: none;
}

.next.page-numbers {
  display: none;
}

.nav-links:before {
  content: "";
  display: block;
  width: 6px;
  height: 20px;
  background: #fffdf4;
  top: 5px;
  left: 0;
  position: absolute;
  z-index: 10;
}

.nav-links {
  position: relative;
}

.premios_grid {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0 20px;
  max-width: 960px;
}

.premio_item {
  width: 50%;
  position: relative;
  border-bottom: solid 0.5px rgba(186, 31, 66, 0.3294117647);
  padding-bottom: 25px;
}

.premio_item_wrap {
  padding: 10%;
  position: relative;
}

.premio_item_wrap img {
  width: -webkit-fill-available;
  margin: 0 auto;
  height: auto;
  box-sizing: content-box;
}

.premio_item_wrap:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 3px;
  background-color: var(--color-3);
  left: 50%;
  border-radius: 50%;
}

.premio_item:nth-child(2) .premio_item_wrap:before,
.premio_item:nth-child(3) .premio_item_wrap:before,
.premio_item:nth-child(6) .premio_item_wrap:before,
.premio_item:nth-child(7) .premio_item_wrap:before,
.premio_item:nth-child(9) .premio_item_wrap:before,
.premio_item:nth-child(10) .premio_item_wrap:before {
  background-color: var(--color-2);
}

.premio_item .premio_item_wrap:after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  border-right: solid 1px var(--color-3);
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  opacity: 0.33;
}

.sm_noborder {
  border-bottom-width: 0 !important;
}

@media (max-width: 919px) {
  .premio_item:nth-child(2n) .premio_item_wrap:after {
    display: none;
  }
}
@media (min-width: 920px) {
  .premio_item_wrap {
    padding: 15% 10%;
    margin-bottom: 3%;
  }
  .premio_item {
    width: 33.33%;
  }
  .premio_item:nth-child(3n) .premio_item_wrap:after {
    display: none;
  }
  .premio_item:nth-child(1) .premio_item_wrap:before,
  .premio_item:nth-child(3) .premio_item_wrap:before,
  .premio_item:nth-child(4) .premio_item_wrap:before,
  .premio_item:nth-child(6) .premio_item_wrap:before,
  .premio_item:nth-child(7) .premio_item_wrap:before,
  .premio_item:nth-child(9) .premio_item_wrap:before,
  .premio_item:nth-child(10) .premio_item_wrap:before,
  .premio_item:nth-child(12) .premio_item_wrap:before {
    background-color: var(--color-3);
    width: 5px;
    height: 5px;
  }
  .premio_item:nth-child(2) .premio_item_wrap:before,
  .premio_item:nth-child(5) .premio_item_wrap:before,
  .premio_item:nth-child(8) .premio_item_wrap:before,
  .premio_item:nth-child(11) .premio_item_wrap:before {
    background-color: var(--color-2);
    width: 5px;
    height: 5px;
  }
  .page_header_img.phi2 {
    background-size: auto 100%;
  }
  .md_noborder {
    border-bottom-width: 0 !important;
  }
}
@media (min-width: 1400px) {
  .page_header_img.phi2 {
    background-size: cover;
  }
}
.premio_item:nth-last-child(-n+2) {
  border-bottom: none;
}

@media (min-width: 920px) {
  .premio_item:nth-last-child(-n+3) {
    border-bottom: none;
  }
}
img.contacto_logo {
  width: 158px;
  margin: 0 auto 30px;
}

.container_contacto {
  padding: 60px 0;
}

.contacto_datos {
  max-width: 200px;
  margin: 0 auto;
}

.container_contacto a {
  color: var(--color-3);
}

.contacto_arrow {
  width: 80px;
  margin: 0 auto 30px;
}

@media (min-width: 920px) {
  .container_contacto {
    display: flex;
    max-width: 840px;
    margin: 0 auto;
    padding: 80px 0;
  }
  .contacto_datos {
    max-width: inherit;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-left: 7%;
  }
  img.contacto_logo {
    width: 260px;
    margin: 0;
  }
  .container_contacto .col-12 {
    width: 50%;
  }
  .contacto_datos:before {
    content: "";
    display: block;
    border-left: solid 1px var(--color-3);
    width: 1px;
    height: 80%;
    position: absolute;
    left: 0;
  }
  .contacto_datos p {
    margin-bottom: 0;
  }
  .contacto_arrow {
    width: 110px;
  }
  .contacto_map iframe {
    height: 640px;
  }
}

/*# sourceMappingURL=styles.css.map */
