/* Text-size styles */
/* base size: ibm-body-regular-400-16px (16px) 
--lora-h1--bold-700-54px: 3.38rem;
--lora-h2--bold-700-36px: 2.25rem;
--lora-h3--semibold-600-24px: 1.5rem;
--lora-h4--semibold-600-18px: 1.12rem;
--ibm-body-regular-400-16px: 1rem;
--ibm-body-regular-400--italic-16px: 1rem;
--ibm-body-medium-500-16px: 1rem;
--ibm-large-regular-400-24px: 1.5rem;
--ibm-large-regular-400--italics-24px: 1.5rem;
--ibm-large-medium-500-24px: 1.5rem;
--ibm-large-bold-700-24px: 1.5rem;
--ibm-labels-regular-400-16: 1rem;
--ibm-labels-medium-500-14: 0.88rem;
--ibm-address-regular-400-16: 1rem;
--ibm-address-light-300--italic-16: 1rem;
*/
:root {
  --blue-1: rgba(59, 128, 159, 1);
  --blue-2: rgba(25, 64, 116, 1);
  --blue-3: rgba(8, 31, 81, 1);
  --blue-4: rgba(11, 17, 38, 1);
  --cibeles-blue: rgba(0, 51, 102, 1);
  --yellow-1: rgba(255, 223, 120, 0.7);
  --yellow-2: rgba(255, 194, 0, 0.7);
  --yellow-3: rgba(247, 188, 0, 1);
  --black: rgba(31, 34, 35, 1);
  --white: rgba(239, 239, 239, 1);
  --white-faded: rgba(255, 255, 255, 0.75);
  --gray: rgba(177, 178, 178, 1);
  --white-on--yellow: rgba(254, 243, 209, 1);
  --white-true: rgba(255, 255, 255, 1);
}

/*
MEDIA QUERY MANAGER (max-width)
0-600px:         Phone
600px-900px:     Tablet (portrait mode)
900px-1200px:    Tablet (landscape mode)
1200px-1800px:   Normal styles apply (Desktop first approach)
1800px++ :       Big desktop

ORDER OF WORKING ON MIX-INS: Base + typography > general layout + grid > page layout > components
*/
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}
img {
  max-width: 100%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

h1 {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.6;
  color: var(--blue-4);
}

h2 {
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.6;
  color: var(--blue-4);
}

h3 {
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--blue-4);
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.6rem;
  color: var(--blue-3);
}

.header {
  padding: 2.4rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .header {
    padding: 2.4rem;
  }
}
.header__title {
  text-decoration: none;
}
html:not(#home) .header,
.header__sticky {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 5;
}
#home .header {
  position: absolute;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.logo__img {
  display: flex;
  width: 4rem;
  height: 4rem;
}
.logo__title {
  font-size: 2rem;
  color: var(--blue-3);
}
#home .logo__title,
.logo__title__white {
  color: var(--white);
}

.navigation__standard {
  visibility: visible;
}
@media only screen and (max-width: 56.25em) {
  .navigation__standard {
    visibility: hidden;
    display: none;
  }
}
.navigation__burger {
  visibility: hidden;
}
@media only screen and (max-width: 56.25em) {
  .navigation__burger {
    visibility: visible;
  }
}

.nav-standard__list {
  list-style: none;
  display: flex;
  gap: 5rem;
  align-items: center;
  text-align: center;
}
.nav-standard__list > * {
  white-space: nowrap;
}
.nav-standard__active {
  font-weight: 500;
}
.nav-standard__link:link, .nav-standard__link:visited {
  color: var(--blue-4);
  text-decoration: none;
}
.nav-standard__link:hover, .nav-standard__link:active {
  color: var(--blue-1);
}
#home .nav-standard__link:link, #home .nav-standard__link:visited,
.nav-standard__link__white:link, .nav-standard__link__white:visited {
  color: var(--white);
  text-decoration: none;
}
html:not(#home) .nav-standard__link:hover, html:not(#home) .nav-standard__link:active,
.nav-standard__link__white:hover, .nav-standard__link__white:active {
  color: var(--gray);
}

.burger__checkbox {
  display: none;
}
.burger__button {
  position: fixed;
  top: 1.5rem;
  right: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  height: 6.5rem;
  width: 6.5rem;
  border-radius: 50%;
  z-index: 4;
  cursor: pointer;
}
.burger__button:hover {
  background-color: var(--white);
}
.burger__background {
  position: fixed;
  top: 1.75rem;
  right: 2.75rem;
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  background-image: radial-gradient(var(--blue-2), var(--blue-4));
  z-index: 2;
  transition: transform 0.8s;
}
.burger__checkbox:checked ~ .burger__background {
  transform: scale(50);
}
.burger__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  width: 0;
  transition: all 0.8s;
}
.burger__checkbox:checked ~ .burger__nav {
  opacity: 1;
  width: 100%;
}
.burger__checkbox:checked ~ .burger__nav .burger__list {
  visibility: visible;
}
.burger__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  list-style: none;
  visibility: hidden;
  text-align: center;
  white-space: nowrap;
}
.burger__link:link, .burger__link:visited {
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, var(--white) 50%);
  background-size: 230%;
  transition: all 0.4s;
  padding: 1rem 4rem;
}
.burger__link:hover, .burger__link:active {
  background-position: 100%;
  color: var(--blue-4);
}
.burger__icon {
  position: relative;
}
.burger__icon, .burger__icon::before, .burger__icon::after {
  width: 3rem;
  height: 2px;
  background-color: var(--blue-4);
}
.burger__icon::before, .burger__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.burger__icon::before {
  top: -0.8rem;
}
.burger__icon::after {
  top: 0.8rem;
}
.burger__button:hover .burger__icon::before {
  top: -1rem;
}
.burger__button:hover .burger__icon::after {
  top: 1rem;
}
.burger__checkbox:checked + .burger__button .burger__icon {
  background-color: transparent;
}
.burger__checkbox:checked + .burger__button .burger__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.burger__checkbox:checked + .burger__button .burger__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0rem;
  background-color: var(--blue-4);
}
@media only screen and (max-width: 37.5em) {
  .footer {
    gap: 2rem;
  }
}
.footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem;
  gap: 5.6rem;
  list-style: none;
}
@media only screen and (max-width: 37.5em) {
  .footer__list {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer__link:link, .footer__link:visited {
  color: var(--white);
  text-decoration: none;
}
.footer__link:hover, .footer__link:active {
  color: var(--gray);
}
.footer__copyright {
  color: var(--white-faded);
}

.overlay {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.overlay:target {
  opacity: 1;
  visibility: visible;
}
.overlay:target .overlay__content {
  opacity: 1;
  visibility: visible;
}
.overlay__background {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}
.overlay__content {
  display: flex;
  flex-direction: column;
  padding: 5.2rem;
  gap: 1.6rem;
  background-color: var(--white);
  border-radius: 0.8rem;
  width: 50vw;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.overlay__content img {
	width: auto !important;
	max-height: 90vh;
}
@media only screen and (max-width: 56.25em) {
  .overlay__content {
    width: 65vw;
    padding: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .overlay__content {
    width: 75vw;
  }
}
.overlay__heading {
  display: flex;
  justify-content: space-between;
}
.overlay__button {
  border: none;
  background-color: inherit;
}
.overlay__button:hover {
  cursor: pointer;
  transform: translateY(-1px);
}
.overlay__icon {
  height: 2rem;
  width: 2rem;
  fill: var(--blue-4);
}
.overlay__list {
  padding-left: 1.6rem;
  list-style: disc;
}
.overlay__close {
  align-self: start;
}
@media only screen and (max-width: 37.5em) {
  .overlay__close {
    align-self: center;
  }
}
.overlay__images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.overlay__images img {
  width: 100%;
}

.button, .button:link, .button:visited {
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 50px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  background: var(--blue-3);
  color: var(--white);
  text-decoration: none;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem var(--gray);
}
.button:active, .button:focus {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem var(--gray);
}

.vertical_bar {
  width: 0.5rem;
  align-self: stretch;
  background-color: var(--white-faded);
}
.vertical_bar__yellow {
  background-color: var(--yellow-3);
}
@media only screen and (max-width: 37.5em) {
  .vertical_bar {
    display: none;
    visibility: hidden;
  }
}

.header_with_bar {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

.horizontal_bar {
  height: 0.5rem;
  width: 100%;
  background-color: var(--yellow-3);
}

.small-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.small-form__input {
  height: 4rem;
  padding: 1rem;
}

.large-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.large-form__textarea {
  padding: 1rem;
  resize: none;
}

label {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--blue-4);
}

input,
textarea {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.4rem;
  color: var(--blue-4);
  outline: none;
  background-color: #fff;
  width: 100%;
  border-radius: 0.4rem;
  border: 1px solid #cbd2e0;
}

.news_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem var(--gray);
}
.news_card:hover .news_card__read_more {
  color: var(--blue-2);
}
.news_card:hover .news_card__icon {
  fill: var(--blue-2);
}
.news_card__img {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news_card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.news_card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.news_card__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.news_card__date {
  color: var(--blue-1);
}
.news_card__body {
  flex: 1;
}
.news_card__button {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.news_card__read_more {
  color: var(--gray);
}
.news_card__icon {
  height: 2rem;
  width: 2rem;
  fill: var(--gray);
}

.news_card_vertical {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 1.6rem;
  border-radius: 1rem;
  background: var(--Neutrals-White, #fff);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.news_card_horizontal {
  flex: 1;
  display: flex;
  padding: 3.2rem;
  gap: 1.6rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 37.5em) {
  .news_card_horizontal {
    flex-direction: column;
    padding: 2rem;
  }
}

/* 
:not(:focus) -> when user leaves input form
:not(:placeholder-shown) -> and there's no placeholder text (i.e., there is input)
and the entered text is invalid/valid
do the following...
*/
.send_mail {
  align-self: flex-start;
}

.container {
  display: flex;
  padding-top: 8.8rem;
  flex-direction: column;
  background-image: url(../img/home-fountain.png);
  background-size: cover;
  height: 100vh;
}

.blurb {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: center;
  padding: 8rem;
  gap: 1.6rem;
  background: var(--white-faded);
  margin: 10rem;
  width: 60%;
}
@media only screen and (max-width: 56.25em) {
  .blurb {
    width: calc(100% - 10rem);
    margin: 10vh 5rem;
    padding: 6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .blurb {
    padding: 4rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .blurb {
    width: 50%;
  }
}
.blurb__text {
  text-align: justify;
}

.news_preview {
  display: flex;
  flex-direction: column;
  padding: 7.5rem 10rem;
  gap: 5rem;
  background-color: var(--white);
}
@media only screen and (max-width: 56.25em) {
  .news_preview {
    padding: 6.5rem 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .news_preview {
    padding: 5.5rem 7rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .news_preview {
    padding: 7rem 20rem;
  }
}
.news_preview__intro {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.news_preview__cards {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .news_preview__cards {
    flex-direction: column;
  }
}

.kfi {
  background-color: var(--yellow-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7.5rem 10rem;
  gap: 5.6rem;
}
@media only screen and (max-width: 56.25em) {
  .kfi {
    padding: 6.5rem 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .kfi {
    padding: 5.5rem 7rem;
  }
}
.kfi__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 1.6rem;
}
.kfi__metrics {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 56.25em) {
  .kfi__metrics {
    gap: 2.5rem;
  }
}
.kfi__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10rem 12rem;
  gap: 1rem;
  text-decoration: none;
  color: var(--blue-4);
  background-color: var(--white-faded);
  border-radius: 8px;
  flex: 1;
}
.kfi__metric:hover {
  cursor: pointer;
  transform: translateY(-3px);
  box-shadow: 0 2rem 3rem var(--yellow-3);
}
@media only screen and (max-width: 56.25em) {
  .kfi__metric {
    padding: 5rem 6rem;
  }
}
.kfi__metric__header {
  font-size: 5.4rem;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .kfi__metric__header {
    font-size: 4rem;
  }
}
.kfi__metric__body {
  font-size: 2.4rem;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .kfi__metric__body {
    font-size: 2rem;
  }
}
.kfi__source {
  align-self: end;
  color: var(--blue-2);
}
.kfi__source__link {
  font-style: italic;
}
.kfi__source__link:link, .kfi__source__link:visited {
  color: var(--blue-2);
  text-decoration: none;
}
.kfi__source__link:hover, .kfi__source__link:active {
  color: var(--blue-1);
}

.strengths {
  display: flex;
  flex-direction: column;
  padding: 7.5rem 10rem;
  gap: 2.4rem;
  background-color: var(--white);
}
@media only screen and (max-width: 56.25em) {
  .strengths {
    padding: 6.5rem 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .strengths {
    padding: 5.5rem 7rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .strengths {
    padding: 7rem 20rem;
  }
}
.strengths__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}
.strengths__container {
  display: flex;
  align-items: center;
  padding: 0px;
  gap: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .strengths__container {
    flex-direction: column;
    gap: 1.6rem;
    align-items: flex-start;
    padding: 1.6rem;
  }
}
.strengths__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem;
  gap: 1.6rem;
  list-style: disc;
  flex: 1;
}
@media only screen and (max-width: 37.5em) {
  .strengths__list {
    padding: 0;
  }
}

.about-us {
  display: flex;
  flex-direction: column;
  padding: 7.5rem 10rem;
  gap: 1.6rem;
  text-align: justify;
  background-color: var(--white);
  background-image: url("../../img/corp-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 56.25em) {
  .about-us {
    padding: 6.5rem 8rem;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .about-us {
    padding: 5.5rem 7rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .about-us {
    padding: 7rem 20rem;
  }
}
.about-us__par1 {
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .about-us__par1 {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.about-us__par1__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}
.about-us__par1__img {
  max-width: 100%;
  height: auto;
}
.about-us__par2 {
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .about-us__par2 {
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
}
.about-us__par2__img {
  max-width: 100%;
  height: auto;
}
.about-us__par3 {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.tradition {
  display: flex;
  flex-direction: column;
  padding: 10rem;
  gap: 1rem;
  background-color: var(--blue-3);
}
@media only screen and (max-width: 56.25em) {
  .tradition {
    padding: 6.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .tradition {
    padding: 5rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .tradition {
    padding: 10rem 20rem;
  }
}
.tradition__text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
}
.tradition__header {
  color: var(--white);
}
.tradition__copy {
  color: var(--white-faded);
}

.history {
  display: flex;
  flex-direction: column;
  padding: 7.5rem 10rem;
  gap: 3.6rem;
  background-color: var(--white);
}
@media only screen and (max-width: 56.25em) {
  .history {
    padding: 6.5rem 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .history {
    padding: 5.5rem 7rem;
  }
}
.history__header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
}
.history__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .history__container {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.history__image {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.history__image__img {
  max-width: 100%;
  height: auto;
}
.history__image__caption {
  font-style: italic;
  text-align: center;
  color: var(--blue-2);
}
.history__timeline {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.history__timeline__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.history__timeline__circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--yellow-2);
}
.history__timeline__copy {
  text-align: justify;
}

.officers {
  display: flex;
  flex-direction: column;
  padding: 7.5rem 10rem;
  gap: 5rem;
  background-color: var(--yellow-2);
}
@media only screen and (max-width: 56.25em) {
  .officers {
    padding: 6.5rem 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .officers {
    padding: 5.5rem 7rem;
    gap: 1.6rem;
  }
}
.officers__header {
  text-align: center;
}
.officers__container {
  display: flex;
  gap: 15rem;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .officers__container {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.officers__col {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.officer {
  text-align: center;
  color: var(--blue-4);
}
.officer__name {
  font-weight: 500;
}
.officer__position {
  font-style: italic;
  font-weight: 400;
}
.error-404,
.services {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 7.5rem 10rem;
  gap: 4.5rem;
  background-color: var(--yellow-2);
}
.error-404 {
  height: calc(100vh - 15.32rem);
  justify-content: center;
  align-items: center;
}
.error-404 .button {
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .services {
    padding: 6.5rem 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .services {
    padding: 3rem 5.5rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .services {
    padding: 7rem 20rem;
  }
}
.default__header,
.services__header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.services__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}
.services__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  gap: 2.5rem;
  padding: 4.2rem 2.4rem;
  border-radius: 0.8rem;
  background-color: var(--white-faded);
  text-align: center;
  width: 30rem;
}

.corporate-governance {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: 7.5rem 10rem;
  gap: 15rem;
  background-image: url("../../img/corp-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 56.25em) {
  .corporate-governance {
    padding: 6.5rem 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .corporate-governance {
    padding: 5.5rem 7rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .corporate-governance {
    padding: 7rem 20rem;
  }
}
.corporate-governance__intro {
  display: flex;
  gap: 5rem;
}
.corporate-governance__intro__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.corporate-governance__intro__img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.corporate-governance__intro__img img {
  width: 80%;
  min-width: 0;
  max-width: 100%;
}
@media only screen and (max-width: 56.25em) {
  .corporate-governance__intro {
    flex-direction: column;
  }
}
@media only screen and (min-width: 112.5em) {
  .corporate-governance__intro__text {
    flex: 2;
  }
}
.corporate-governance__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}
.corporate-governance__documents {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-self: stretch;
}
.corporate-governance__year {
  display: flex;
  flex-direction: column;
}
.corporate-governance__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
  padding: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .corporate-governance__cards {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .corporate-governance__cards {
    grid-template-columns: 1fr;
    padding: 0px;
  }
}
@media only screen and (min-width: 112.5em) {
  .corporate-governance__cards {
    padding: 5rem;
  }
}
.corporate-governance__card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 32rem;
  padding: 5rem 2rem;
  border-radius: 0 0 15px 0;
  background: var(--cibeles-Blue, #003366);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.corporate-governance__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem var(--gray);
}
.corporate-governance__card:hover label {
  color: #fff;
}
.corporate-governance__card:hover svg {
  fill: var(--white-fff, #fff);
}
.corporate-governance__card__title {
  display: flex;
  flex-direction: column;
}
.corporate-governance__card__title p {
  color: var(--white-faded, rgba(255, 255, 255, 0.75));
}
.corporate-governance__card__title h2 {
  color: var(--white-fff, #fff);
  line-height: 1.25;
}
.corporate-governance__card__line {
  height: 1px;
  align-self: stretch;
  background: var(--white-faded, rgba(255, 255, 255, 0.75));
}
.corporate-governance__card__button {
  display: flex;
  gap: 5px;
  align-items: center;
  align-self: flex-start;
  cursor: pointer;
}
.corporate-governance__card__button label {
  color: var(--Gray, #b1b2b2);
  cursor: pointer;
}
.corporate-governance__card__button svg {
  height: 1.5rem;
  width: 1.5rem;
  fill: var(--Gray, #b1b2b2);
  cursor: pointer;
}

.news {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: 7.5rem 10rem;
  gap: 15rem;
  background-image: url("../../img/corp-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 56.25em) {
  .news {
    padding: 6.5rem 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .news {
    padding: 5.5rem 7rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .news {
    padding: 7rem 20rem;
  }
}
.news__intro {
  display: flex;
  gap: 5rem;
}
.news__intro__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.news__intro__img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__intro__img img {
  width: 80%;
  min-width: 0;
  max-width: 100%;
}
@media only screen and (max-width: 56.25em) {
  .news__intro {
    flex-direction: column;
  }
}
@media only screen and (min-width: 112.5em) {
  .news__intro__text {
    flex: 2;
  }
}
.news__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 3.5rem;
}
@media only screen and (max-width: 56.25em) {
  .news__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 37.5em) {
  .news__container {
    grid-template-columns: 1fr;
  }
}

.news-article {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: 7.5rem 10rem;
  gap: 5rem;
  background-image: url("../../img/corp-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  scroll-snap-align: start;
}
@media only screen and (max-width: 56.25em) {
  .news-article {
    padding: 6.5rem 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .news-article {
    padding: 5.5rem 7rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .news-article {
    padding: 7rem 20rem;
  }
}
.news-article__header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.news-article__date {
  color: var(--Blue-1, #3b809f);
  font-weight: 500;
}
.news-article__title {
  gap: 8px;
}
.news-article__body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: justify;
}
@media only screen and (max-width: 56.25em) {
  .news-article__body {
    padding: 6.5rem 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .news-article__body {
    padding: 5.5rem 7rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .news-article__body {
    padding: 7rem 20rem;
  }
}
.news-article__img {
  display: flex;
  justify-content: center;
}
.news-article__img img {
  min-width: 0;
  max-width: 80%;
}
.news-article__images {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
.news-article__images img {
  min-width: 0;
  max-width: 80%;
}
.news-article__read-more {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.news-article__read-more__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-article__read-more__nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-article__read-more__icon {
  width: 2.2rem;
  height: 2.2rem;
  border-style: solid;
  border-radius: 100%;
  cursor: pointer;
}

.contact-us {
  display: flex;
  align-items: center;
  gap: 5rem;
  height: 90vh;
  background-color: var(--white);
}
@media only screen and (max-width: 56.25em) {
  .contact-us {
    flex-direction: column-reverse;
    height: auto;
    gap: 0rem;
  }
}
.contact-us__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex: 1 50%;
  padding-left: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .contact-us__container {
    padding-left: 0;
    padding: 6.5rem 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .contact-us__container {
    padding: 5.5rem 7rem;
  }
}
.contact-us iframe {
  height: 100%;
  width: 100%;
  flex: 1 50%;
}
@media only screen and (max-width: 56.25em) {
  .contact-us iframe {
    height: 30vh;
    flex: 0 1 auto;
  }
}
.contact-us__form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.contact-us__email {
  color: var(--blue-2);
  font-style: italic;
  text-decoration: none;
}
.contact-us__email:hover {
  color: var(--blue-4);
}
.contact-us__note {
  font-size: 1rem;
  align-self: end;
}

.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  padding: 7.5rem 10rem;
  background-color: var(--blue-3);
}
@media only screen and (max-width: 56.25em) {
  .locations {
    padding: 6.5rem 8rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 37.5em) {
  .locations {
    padding: 5.5rem 7rem;
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 112.5em) {
  .locations {
    padding: 10rem 25rem;
  }
}
.locations__header {
  align-self: center;
  justify-self: center;
  color: var(--white);
}
@media only screen and (max-width: 56.25em) {
  .locations__header {
    text-align: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .locations__header {
    align-self: end;
  }
}
@media only screen and (min-width: 112.5em) {
  .locations__header {
    text-align: center;
  }
}

.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0rem;
  gap: 1.6rem;
  border-radius: 1rem;
  text-align: center;
}
.location__selected {
  transform: translateY(-3px);
  background-color: var(--cibeles-blue);
  box-shadow: 0 1rem 2r em var(--blue-4);
}
.location:hover {
  transform: translateY(-3px);
  background-color: var(--cibeles-blue);
  box-shadow: 0 1rem 2r em var(--blue-4);
  cursor: pointer;
}
.location__office {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.location__office--icon {
  height: 2rem;
  width: 2rem;
  fill: var(--white);
}
.location__office--branch {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--white);
}
.location__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.location__content {
  color: var(--white-faded);
}
.location__content--phone {
  color: inherit;
  text-decoration: none;
}
.location__redirect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}
.location__redirect--text {
  font-style: italic;
  font-weight: 300;
  color: var(--gray);
}
.location__redirect--icon {
  height: 1.5rem;
  width: 1.5rem;
  fill: var(--gray);
}

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

/* force override */
._df_button {
  display: flex !important;
  padding: unset !important;
  font-size: unset !important;
  color: unset !important;
  background: unset !important;
  border: unset !important;
}

/* Styles for Image Cards */
.image-thumb-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* Make it fill the pdf-card container */
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none; /* Remove underline from anchor */
  color: #333; /* Default text color */
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-thumb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.image-preview {
  width: 100%;
  aspect-ratio: 4 / 3; /* Maintain aspect ratio for previews */
  background-size: 100% 125%;
  background-position: center top;
  border-bottom: 1px solid #eee;
}

.image-title {
  flex-grow: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.image-title .file-year {
  color: #888;
  margin-bottom: 5px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.image-title .file-name-display {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #003366; /* Cibeles Blue */
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  text-align: left;
}

.image-footer {
  padding: 10px 15px;
  border-top: 1px solid #eee;
  background: #f0f0f0;
  font-size: 11px;
  color: #555;
  text-align: center;
}

.image-thumb-card .view-button {
  text-decoration: none;
  color: inherit;
}
.x-large.overlay .overlay__content {
  padding: 15px;
}
.x-large.overlay .overlay__heading {
  position: absolute;
  top: 15px;
}
.x-large.overlay .button {
  position: absolute;
  bottom: 15px;
}
.news__container {
  scroll-padding: 10px;
}
.news_card:first-child {
	margin-left: 1.75rem;
}
.news_card:last-child {
	margin-right: 1.75rem;
}
.news-article__read-more__nav button {
  background: none;
  border: 0 none;
}
#grid-slider.news__container {
  overflow-x: hidden;
  padding: 1.5rem 0 2.5rem;
  scroll-snap-type: x mandatory;
  grid-auto-columns: calc(33.33% - 3rem);
  grid-auto-flow: column;
  grid-template-columns: unset;
}