html {
  font-size: 16px; /* Define el tamaño base para el elemento raíz */
  word-wrap: normal !important;
}
body {
  font-family: 'Montserrat', sans-serif;
  word-wrap: normal !important;
}

/*
* Definición de tamaños de tipografía en REM y pesos de fuente
* Cálculos: Valor en PX / 16 = Valor en REM
*/

/* H1 = Montserrat 55px Medium */
.masthead h1 { /* Selector para el H1 dentro de la sección hero */
  font-size: 3.4375rem; /* 55px / 16 = 3.4375rem */
  font-weight: 500; /* Medium */
  font-style: normal;
  line-height: normal !important;
}
/* p .hero-section = Montserrat 23px Regular */
.masthead h2.subheading { /* El selector p.lead de Bootstrap es el que se usa aquí */
  font-size: 2.4375rem; /* 23px / 16 = 1.4375rem */
  font-weight: 400; /* Regular */
  font-style: normal;
  line-height: normal !important;
}

/* H2 = Montserrat 39px SemiBold */
h2 {
  font-size: 2.4375rem; /* 39px / 16 = 2.4375rem */
  font-weight: 600; /* SemiBold */
  font-style: normal;
  line-height: normal !important;
}

/* H3 = Montserrat 21px Medium */
h3 {
  font-size: 1.3125rem; /* 21px / 16 = 1.3125rem */
  font-weight: 500; /* Medium */
  font-style: normal;
  line-height: normal !important;
}

/* p .text-muted = Montserrat 15px Regular */
p {
  font-size: 0.9375rem; /* 15px / 16 = 0.9375rem */
  font-weight: 400; /* Regular */
  font-style: normal;
  line-height: normal !important;
}

/* --- MEDIA QUERIES para Responsividad --- */
/* Reducir tamaños de fuente en pantallas más pequeñas */
@media (max-width: 768px) { /* Por ejemplo, para tablets y móviles medianos */
  .hero-section h1 {
  font-size: 2.5rem; /* Reducción de H1, puedes ajustar este valor */
  }
  .hero-section p.lead {
  font-size: 1.25rem; /* Reducción de párrafo hero */
  }
  h2 {
  font-size: 2rem; /* Reducción de H2 */
  }
  h3 {
  font-size: 1.125rem; /* Reducción de H3 */
  }
  /* p.text-muted generalmente no necesita reducción adicional a 15px/0.9375rem */
}

@media (max-width: 576px) { /* Para móviles pequeños */
  .hero-section h1 {
  font-size: 2rem;
  }
  .hero-section p.lead {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.75rem;
  }
}

blockquote {
  font-style: italic;
  color: #6c757d;
}

.btn {
  letter-spacing: 0.0625em;
}

.form-floating input,
.form-floating textarea {
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
.form-floating input:focus,
.form-floating textarea:focus {
  box-shadow: none;
}
.form-floating label {
  color: #6c757d;
}
#mainNav {
/*position: absolute;*/
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  border-bottom: 1px solid #dee2e6;
  background-color: #10274E;
  font-family: 'Montserrat', sans-serif;
}
#mainNav .navbar-brand {
  font-weight: 800;
}
#mainNav .navbar-toggler {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.75rem;
  text-transform: uppercase;
}
#mainNav .navbar-nav > li.nav-item > a.nav-link {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.0625em;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  #mainNav {
    border-bottom: 1px solid transparent;
    background: #10274E;
  }
  #mainNav .navbar-brand {
    color: #fff;
  }
  #mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  #mainNav .navbar-nav > li.nav-item > a.nav-link {
    color: #fff;
  }
  #mainNav .navbar-nav > li.nav-item > a.nav-link:focus, #mainNav .navbar-nav > li.nav-item > a.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
  }
}
@media (min-width: 992px) {
  #mainNav {
    transition: background-color 0.2s;
    /* Force Hardware Acceleration in WebKit */
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  #mainNav.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -83px;
    transition: transform 0.2s;
    border-bottom: 0px solid white;
    background-color: #10274E;
/*  position: fixed;
    top: -83px;
    transition: transform 0.2s;
    border-bottom: 1px solid white;
    background-color: rgba(255, 255, 255, 0.9);*/
  }
  #mainNav.is-fixed .navbar-brand {
    color: #212529;
  }
  #mainNav.is-fixed .navbar-brand:focus, #mainNav.is-fixed .navbar-brand:hover {
    color: #0085A1;
  }
  #mainNav.is-fixed .navbar-nav > li.nav-item > a {
    color: #fff;
  }
  #mainNav.is-fixed .navbar-nav > li.nav-item > a:focus, #mainNav.is-fixed .navbar-nav > li.nav-item > a:hover {
    color: #0085A1;
  }
  #mainNav.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    transform: translate3d(0, 100%, 0);
  }
}
#mainNav .logo-menu {
  height: 45px;
  width: 100%;
}
#mainNav .dropdown-menu.show {
  max-height: 240px;
  overflow: overlay;
  background-color: #00274f;
  border: 1px solid #596afd;
  border-top-width: 0px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0px 6px 8px #00000070;
  width: 280px;
}
#mainNav .dropdown-item, #mainNav .form-check-label {
  color: #7392e8;
  font-size: 0.9375rem;
  font-weight: 600;
}
header.masthead {
  background-image: url(../assets/img/Home-header.svg);
  background-position-x: center;
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-color: #00274f;
}
/*header.masthead:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
background-color: #212529;
opacity: 0.5;
}*/
header.masthead .page-heading,
header.masthead .post-heading,
header.masthead .site-heading {
  color: #fff;
}
header.masthead .page-heading,
header.masthead .site-heading {
  text-align: center;
}
header.masthead .page-heading h1, header.masthead .page-heading .h1,
header.masthead .site-heading h1,
header.masthead .site-heading .h1 {
  font-size: 3rem;
}
header.masthead .page-heading .subheading,
header.masthead .site-heading .subheading {
  font-weight: 400;
  line-height: 1.1;
  display: block;
  margin-top: 0.625rem;
}
header.masthead .post-heading h1, header.masthead .post-heading .h1 {
  font-size: 2.25rem;
}
header.masthead .post-heading .meta,
header.masthead .post-heading .subheading {
  line-height: 1.1;
  display: block;
}
header.masthead .post-heading .subheading {
  font-weight: 400;
  margin: 0.75rem 0 2rem;
}
header.masthead .post-heading .meta {
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
}
header.masthead .post-heading .meta a {
  color: #fff;
}
@media (min-width: 992px) {
  header.masthead {
    padding-top: 10.5rem;
    padding-bottom: 12.5rem;
  }
  header.masthead .page-heading h1, header.masthead .page-heading .h1,
  header.masthead .site-heading h1,
  header.masthead .site-heading .h1 {
    font-size: 5rem;
  }
  header.masthead .post-heading h1, header.masthead .post-heading .h1 {
    font-size: 3.5rem;
  }
  header.masthead .post-heading .subheading {

  }
}

/* CUSTOM CSS */

/********************/
/******* HOME ******/
/******************/

#home h3 {
  margin: 0rem 0rem 1rem 0rem;
}

#home p {
  margin: 1rem 4rem 2rem 0rem;
}
#home .slick-slide {
  margin: 1rem 2rem 0;
}
#masthead {
  background-color: #10274E;
}
.masthead {
/*background-image: url(../assets/img/home-bg.png);*/
  color: white;
  padding: 4vh 0 20vh;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
#our-services {
  background-color: #fff;
  background-image: url(../assets/img/services-bg.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
}
.our-services {
}
#our-services h2 {
}
#our-process {
  background-color: #7392e8;
  background-image: url(../assets/img/our-process-bg.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
}
.our-process {
}
#our-process h3, #our-services p {
  color: #00274f;
}
#our-publications h2 {

}

/********************/
/*** ABOUT US ******/
/******************/
#about #mainNav .dropdown-menu.show {
  background-color: #d6c8c7;
  border: 0px solid #d6c8c7;
}
#about #mainNav .dropdown-item {
  color: #596afd;
}
#about .masthead {
  background-image: url(../assets/img/AboutUs-header.svg);
  color: white;
  padding: 20vh 0 35vh;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
}
#about p {
  font-size: 1.1rem;
}
#about span.linea {
  display: block;
  border: 1px solid #00274f;
  margin: 0rem 0 2rem 0;
}
#about .slick-slide {
  margin: 0 5vw;
  text-align: center;
}
#about .slick-dots li {
  margin: 0 0px;
}
#about .slick-dots li button:before {
  font-size: 16px;
}
/*#about #mission {
  background-image: url(../assets/img/OurMission-header.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}*/
#about #mission {
  position: relative;
  padding: 4rem 0; 
  overflow: hidden; 
}
#mission .container {
  position: relative;
  z-index: 1;
  padding: 0;
}
#about #mission::before,
#about #mission::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain; 
  z-index: 0; 
}
#mission::before {
  left: 0;
  background-image: url('../assets/img/OurMission-left.svg');
  background-position: left center;
}

#mission::after {
  right: 0;
  background-image: url('../assets/img/OurMission-right.svg'); 
  background-position: right center;
}
#our-team {
  position: relative;
  overflow: hidden;
}
#our-team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  background-image: url('../assets/img/team.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
  z-index: 1;
  pointer-events: none;
}
#our-team .container {
  position: relative;
  z-index: 2;
}

/*
#about #our-team {
  background-image: url(../assets/img/team.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
#about #our-team h2 {
  margin: 0 0 .5rem 0;
}
#about #our-team h4, #about #our-team h3 {
  margin: 0 0 .5rem 0;
  color: #00274f;
  font-size: 1.3125rem;
  font-weight: 500;
  font-style: normal;
  line-height: normal !important;
}
#about #our-team a {
  margin: 0 0 .5rem 0;
  color: #7392e8;
  font-size: 0.9375rem;
  font-weight: 500;
  font-style: normal;
  line-height: normal !important;
}
#about #our-team span {
  display: block;
  border: 1px solid #00274f;
  margin: 0rem 0 3rem 0;
}
*/
#about #our-principles {
  background-color: #00274f;
}
#about #our-principles h3 {
  color: #7392e8;
}
#about #our-principles .d-flex {
  flex-direction: row;
  flex-wrap: wrap;
}
/********************/
/*** CONTACTO ******/
/******************/
#contact #mainNav .dropdown-menu.show {
  background-color: #7492e8;
  border: 1px solid #d6c8c7;
}
#contact #mainNav .dropdown-item {
  color: #d6c8c7;
}
#contact .masthead {
  background-image: url(../assets/img/Contacto-header.svg);
  color: white;
  padding: 20vh 0 35vh;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
}
#contact h2 {
  font-size: 1.3150rem;
  color: #596afd;
  font-weight: 600;
  margin-top: 0;
}
#our-offices p {
  margin: 0 0 .5rem 0;
  color: #00274f;
  font-size: 0.9375rem;
  font-weight: 400;
  font-style: normal;
  line-height: normal !important;
  border-bottom: 1px solid #00274f;
  padding: 0 0 2.5rem 0;
  margin: 0 0 3rem 0;
}
#our-offices a {
  margin: 0 0 .5rem 0;
  color: #00274f;
  font-size: 0.9375rem;
  font-weight: 400;
  font-style: normal;
  line-height: normal !important;
}
#our-offices span {
  font-weight: 600;
}
#our-offices span.linea {
  display: block;
  border: 1px solid #00274f;
  margin: 0rem 0 3rem 0;
}
/******************************/
/*** Editorial Policies ******/
/****************************/

#editorial-policies #mainNav .dropdown-menu.show {
  background-color: #d6c8c7;
  border: 1px solid #596afd;
}
#editorial-policies #mainNav .dropdown-item {
  color: #596afd;
}
#editorial-policies .masthead {
  background-image: url(../assets/img/editorial-policies-header.svg);
  color: white;
  padding: 20vh 0 35vh;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
}
#editorial-policies p, #editorial-policies a, #editorial-policies  .accordion-body {
  font-size: 0.9375rem; 
  color: #00274f !important;
  word-wrap: break-word;
}

#editorial-policies h2 {
  font-size: 1.2375rem;
  color: #596afd !important;
}
#editorial-policies h3 {
  font-size: 1.4375rem;
  color: #596afd !important;
}
#editorial-policies h4 {
  font-size: 0.9375rem; 
  color: #00274f !important;
  font-weight: bold;
}
#editorial-policies .accordion-button:not(.collapsed) {
  color: #596afd !important;
  background-color: #ebebeb;
  box-shadow: none !important;
  border-radius: 15px;
}
#editorial-policies .accordion-button {
  font-size: 1.2375rem;
  color: #596afd !important;
  background-color: #ebebeb;
  box-shadow: none !important;
  border: 0;
  border-radius: 15px;
}
#editorial-policies .accordion-item {
  border: none;
}
#editorial-policies .border-faqs {
  border-bottom: #00274f solid 1px;
  display: block;
  margin: 2rem 0;
}

/********************/
/*** Publications **/
/******************/

 #publications .masthead {
  background-image: url(../assets/img/Publications-header.svg);
  color: white;
  padding: 20vh 0 35vh;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}
#publications .masthead h1 {
  margin-right: 25vw;
}
#journalsContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  justify-content: left;
  align-content: center;
/*
  display: grid;
  column-gap: 1rem;
  row-gap: 1rem;
  grid-template-columns: auto auto auto;
*/
}
#journalsContainer .card-body {
  padding: 0 4rem 0 0 !important;
  color: unset !important;
}
#journalsContainer .card-body:hover {
  opacity: .9;*/
}
#publications .fa-magnifying-glass {
  color: #596afd !important;
  height: 25px;
}
#publications .input-group {
  border: 2px solid #596afd;
  outline: 0;
  border-radius: 10px;
  background-color: #eeeeee;
  height: 55px;
}
#publications .input-group-text::before {
  content: "";
  position: absolute;
  height: 24px;
  width: 38px;
  border-right: 2px solid #596afd;
}
#publications #dropdownCategories::before, #publications #dropdownIndexing::before {
  content: "";
  position: absolute;
  height: 24px;
  width: 0px;
  border-left: 2px solid #596afd;
  left: 14px;
}
#publications input::placeholder, #publications button {
  color: #596afd;
  font-size: 0.9375rem; 
  font-weight: 500;
}
#publications .filter-group img {
  width: 30px;
  height: auto;
  padding: 2px 0 0;
  margin: 0 10px;
}
#publications .dropdown-item, #publications .form-check-label {
  color: #596afd;
  font-size: 0.9375rem;
  font-weight: 500;
}
#publications .filter-group .dropdown-menu.show {
  max-height: 200px;
  overflow: overlay;
  background-color: #eeeeee;
  border: 1px solid #596afd;
  border-top-width: 0px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0px 6px 8px #00000070;
  width: 280px;
}
#publications .input-15 {
  margin-left: -15px;
}
#publications .form-check .form-check-input {
  float: right;
  margin-left: 0;
  border: 2px solid #596afd;
  background-color: #eeeeee;
}
.form-check-input:checked[type=checkbox] {
    background-image: url(../assets/tilde.svg) !important;
}
#publications #activeFilters .badge {
  font-family: 'Montserrat';
  font-size: 10px;
  font-weight: 100;
  line-height: 20px;
  border-radius: 10px;
  color: #4d4d4d;
  background-color: #e5e4e6;
}
#publications .btn-close {
  box-sizing: content-box;
  width: 10px;
  height: 10px;
  padding: 5px 5px 5px 1px;
  background-image: url(../assets/img/close.svg);
  border: 0;
  opacity: 1;
}
#publications .filter-group {
  border: 2px solid #596afd;
  outline: 0;
  border-radius: 10px;
  background-color: #eeeeee;
  display: flex;
  height: 55px;
  align-items: center;
}
#publications .input-group-text {
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: transparent;
  border: 8px;
  padding: 10px;
}
#publications .invisible-badge {
    visibility: hidden;
}
#publications .form-control {
  background-color: #ffffff00;
  border: 0;
}
#journalsContainer h5 {
  font-size: 1.2rem;
  margin-right: .2rem;
  font-weight: 600;
  font-style: normal;
  line-height: normal !important;
  line-height: 1.4rem;
}
#journalsContainer .card-title {
  min-height: 4.5rem;
  margin: 0 1.5rem .5rem 0;
}
#publications .float-r {
  float: right;
}
#publications .float-l {
  float: left;
}
#publications .iconos img {
  width: 90px;
  height: auto;
  margin: 7px 0px 0px 5px;
}
#journalsContainer .card {
  border: 0 !important;
}
#journalsContainer h1 {
  font-size: 1rem;
  font-weight: bold;
  font-style: normal;
  line-height: normal !important;
}
#publications .linea {
  width: 100%;
  border-top: 1px solid #00274f;
  margin: 3rem 4rem 3rem 0;
}
/********************/
/***** FOOTER ******/
/******************/

/*
section .row  {
  padding: 6rem 0;
}
*/
.section-padding .container {
  padding: 4rem 0;
}
footer {
  background-color: #d6c8c7;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
footer .logo-footer {
  height: 55px;
  width: 80px;
}
footer h5 {
  font-size: 1rem !important;
  text-align: left;
  margin: unset !important;
  color: #00274f;
  margin-bottom: 5px !important;
}
footer p {
  font-size: 0.75rem !important;
  text-align: left;
  margin: unset !important;
  color: #00274f;
}
footer p.legal {
  font-size: 0.7rem !important;
  text-align: left;
  margin: unset !important;
  border-top: 1px solid #00274f;
  padding-top: 10px;
}
footer p.fit-content {
  width: fit-content;
}
.bg-grey {
  background-color: #d1d0ce; 
}
.blue-font {
  color: #596afd !important;
}
.dark-blue-font {
  color: #00274f !important;
}
.light-blue-font {
  color: #596afd !important;
}
.white-font {
  color: #ffffff !important;
}
.pink-font {
  color: #d6c8c7 !important;
}
/* * * * * * * * * * * */
/* By SoyLucho.com.ar */
/* * * * * * * * * * */