/*
  (c) 2026 BGO - CSS por Grupo Interactivo
*/

/* ---- COLOR PALETTE  ---- */
:root {
  --bgo-white: #ffffff;
  --bgo-silk: #f6f1eb;
  --bgo-dark-grey: #2d2d2d;
  --bgo-light-grey: #4d504d;
  --bgo-bronze: #ae8c56;
}

@font-face {
  font-family: 'SanomatLight';
  src: url('../fonts/sanomatlight.ttf');
}

@font-face {
  font-family: 'SanomatLightItalic';
  font-style: italic;
  src: url('../fonts/sanomatightitalic.ttf');
}

@font-face {
  font-family: 'SanomatItalic';
  src: url('../fonts/sanomatitalic.ttf');
}

/* ------- Estilos por defecto -------- */
html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  color: var(--bgo-light-grey);
  background-color: #ffffff;
  text-align: left;
  overflow-x: hidden;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
  background-color: var(--bgo-silk);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'SanomatLight', 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.2em;
  margin-top: 10px;
  margin-bottom: 1.5em;
  color: var(--bgo-dark-grey);
}

strong {
  color: var(--bgo-dark-grey);
}

a {
  color: var(--bgo-dark-grey);
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: var(--bgo-bronze);
  text-decoration: none;
}

p {
  color: var(--bgo-light-grey);
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

p strong {
  font-weight: 700;
  color: var(--bgo-dark-grey);
}

a {
  width: fit-content;
  color: var(--bgo-dark-grey);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--bgo-bronze);
}

ul {
  list-style: none;
  padding: 0;
  padding-left: 0;
  line-height: 1.8em;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
}

ol {
  padding-left: 15px;
  line-height: 1.8em;
}

ul li,
ol li {
  font-size: 1em;
  line-height: 1.5em;
  color: var(--bgo-dark-grey);
}

/*  -------  Custom scrollbar ------- */
body::-webkit-scrollbar {
  width: 10px;
  position: relative;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--bgo-light-grey);
  border-radius: 0;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: var(--bgo-bronze);
}

/* --------------  Selección de textos ---------------- */
::-moz-selection,
a::-moz-selection,
p::-moz-selection {
  color: #ffffff;
  background-color: var(--bgo-dark-grey);
  text-shadow: none;
}

::selection,
a::selection,
p::selection {
  color: #ffffff;
  background-color: var(--bgo-dark-grey);
  text-shadow: none;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection {
  color: #ffffff;
  background-color: var(--bgo-dark-grey);
  text-shadow: none;
}

/* Scroll */
.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.separador1 {
  width: 100%;
  height: 100px;
}

/* ------------------- BGOCORP BUTTON --------------------- */
.bgo-btn {
  width: 100%;
  height: auto;
}

.bgo-btn a {
  width: fit-content;
  height: auto;
  text-align: center;
  font-weight: 600;
  font-size: 1em;
  padding: 0 1em;
  border-right: 3px solid var(--bgo-dark-grey);
  border-left: 3px solid var(--bgo-dark-grey);
  transition: all 1s ease;
}

.bgo-btn a:hover {
  padding: 0 2em;
  border-right: 3px solid var(--bgo-bronze);
  border-left: 3px solid var(--bgo-bronze);
  transition: all 0.3s ease;
}

.bgo-btn-2 {
  text-align: right;
  border-top: 2px solid var(--bgo-dark-grey);
  padding: 6px 0;
  margin-top: 2em;
}

.bgo-btn-2 a {
  display: inline-block;
  width: fit-content;
  height: auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  font-weight: 700;
  transition: all ease 0.6s;
}

.bgo-btn-2:hover a {
  transform: scale(1.06);
  transition: all ease 0.3s;
}

.see-all {
  padding: 0;
}

/* ------------------- HEADER --------------------- */
#webHeader {
  position: relative;
  width: 100%;
  height: auto;
  padding: 2em 1.2em;
}

#webHeader .logo {
  width: 100%;
  height: auto;
  text-align: center;
}

#webHeader .logo img {
  width: 100%;
  max-width: 220px;
  height: auto;
}

#webHeader .bgo-navbar {
  width: fit-content;
  height: auto;
  margin: 0 auto;
  padding: 1.2em 0 0 0;
}

#webHeader .bgo-navbar a {
  font-weight: 600;
  margin: 0 2em;
}

#webHeader .bgo-navbar a:hover,
#webHeader .bgo-navbar a:focus,
#webHeader .bgo-navbar a:active {
  color: var(--bgo-bronze);
}

/* MENÚ HAMBURGUESA */
.hamburger {
  position: absolute;
  right: 20px;
  top: 35px;
  width: 40px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transform: scaleX(-1);
}

.line {
  height: 4px;
  background-color: var(--bgo-dark-grey);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.line:nth-child(1) {
  width: 70%;
}

.line:nth-child(2) {
  width: 90%;
}

.line:nth-child(3) {
  width: 50%;
}

.hamburger:hover .line:nth-child(1) {
  width: 90%;
}

.hamburger:hover .line:nth-child(2) {
  width: 60%;
}

.hamburger:hover .line:nth-child(3) {
  width: 70%;
}

/* MENÚ LATERAL */
.menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 340px;
  height: 100%;
  background: #f6f1eba5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6em 10em 2em 2em;
  z-index: 1000;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  will-change: transition;
  transition: 0.8s linear(0, 0.008 1.1%, 0.034 2.3%, 0.134 4.9%, 0.264 7.3%, 0.683 14.3%, 0.797 16.5%, 0.89 18.6%, 0.967 20.7%, 1.027 22.8%, 1.073 25%, 1.104 27.3%, 1.123 30.6%, 1.119 34.3%, 1.018 49.5%, 0.988 58.6%, 0.985 65.2%, 1 84.5%, 1);
  z-index: 1000;
}

.menu.active {
  right: -50px;
}

.closeX {
  width: fit-content;
  font-size: 2em;
  color: var(--bgo-dark-grey);
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 30px;
  transition: all ease 0.5s;
  position: absolute;
  right: 70px;
  top: 20px;
}

.closeX:hover {
  transform: rotate(180deg);
}

.menu a {
  display: block;
  font-family: 'Open Sans', sans-serif;
  color: var(--bgo-dark-grey);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  margin: 10px 0;
  transition: 0.6s;
}

.menu a:hover {
  color: var(--bgo-bronze);
  padding-left: 6px;
  transition: 0.2s;
}

.separador {
  width: 100%;
  height: 2px;
  background-color: var(--bgo-dark-grey);
  margin: 2em 0;
}

.hideh1 h1{
  font-size: 0.01em;
  color: transparent;
  opacity: 0;
  line-height: 0;
  margin: 0;
}

/* ------------------- MAIN VIDEO --------------------- */
.main-video {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

.main-video video {
  width: 100%;
  height: auto;
}

/* ------------------- MAIN CARD --------------------- */
.main-card {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 2em;
  margin: 2em 0;
  border-radius: 6px;
}

.main-card.white-bg {
  background-color: var(--bgo-white);
}

.main-card .main-card-text {
  width: 100%;
  max-width: 850px;
  height: auto;
  margin: 0 auto;
}

.main-title {
  font-family: 'SanomatLight', 'Playfair Display', serif;
  font-size: 3.3em;
  font-weight: 500;
  margin-bottom: 0.3em;
}

.main-title span {
  font-family: 'SanomatLightItalic', serif;
}

.main-title.title-white{
  color: var(--bgo-white);
}

.main-card .main-card-text h3 {
  font-family: 'SanomatLight', 'Playfair Display', serif;
  font-size: 2.4em;
  font-weight: 500;
  margin-top: 1em;
  margin-bottom: 0.8em;
  text-align: center;
}

.main-card .main-card-text p {
  font-size: 1.1em;
  color: var(--bgo-light-grey);
}

.main-card .main-card-text p.big-text {
  font-size: 2em;
  color: var(--bgo-dark-grey);
}

.border-black {
  width: 130px;
  height: 2px;
  margin: 0 auto;
  background-color: var(--bgo-dark-grey);
  margin-bottom: 1.8em;
}

/* ------------------- CARD WHIT IMG --------------------- */
.card-with-img {
  width: 100%;
  height: auto;
  background-color: var(--bgo-white);
  border-radius: 6px;
  margin: 2em 0;
}

.card-with-img .card-content {
  width: 100%;
  height: auto;
  display: flex;
}

.card-content.rev {
  flex-direction: row-reverse;
}

.card-img {
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
}

#all-news .card-img {
  max-width: 200px;
}

.card-img .card-content.rev .card-img {
  border-radius: 0 6px 6px 0;
}

.card-with-img .card-content .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1.5s ease-in-out;
}

.card-with-img .card-content .card-img img:hover {
  transform: scale(1.1);
  transition: all 0.6s ease-in-out;
}

.card-with-img .card-content .card-text {
  width: 100%;
  height: auto;
  padding: 2em;
}

.card-with-img .card-content .card-text .card-title1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  font-weight: 700;
  color: var(--bgo-dark-grey);
  margin-bottom: 0;
}

.card-with-img .card-content .card-text .card-title2 {
  font-family: 'SanomatLight', 'Playfair Display', serif;
  color: var(--bgo-dark-grey);
  font-weight: 500;
  font-size: 1.6em;
  margin-bottom: 0.6em;
  margin-top: 0.2em;
  transition: all 0.6s ease-in-out;
}

#all-news .card-with-img .card-content .card-text .card-title2:hover {
  color: var(--bgo-bronze);
  transition: all 0.3s ease-in-out;
}

.card-with-img .card-content .card-text p {
  font-size: 1.1em;
  color: var(--bgo-light-grey);
}

.card-with-img.inallnews .card-content .card-text p {
  font-size: 1em;
}

.generic-text.inallnews {
  margin-bottom: 0;
}

/* pagination */
.pagination {
  margin-top: 1.8em;
  margin-bottom: 2em;
}

.page-link {
  padding: .55em .95em;
  min-width: 42px;
  min-height: 40px;
  margin-left: 3px !important;
  margin-right: 3px !important;
  line-height: 1.25em;
  font-weight: 400;
  color: var(--bgo-dark-grey);
  background-color: var(--bgo-white);
  border: 1px solid var(--bgo-white);
  -webkit-border-radius: 25%;
  -moz-border-radius: 25%;
  border-radius: 25%;
  -webkit-box-shadow: 1px 3px 8px 0 rgba(50, 50, 50, 0.2);
  -moz-box-shadow: 1px 3px 8px 0 rgba(50, 50, 50, 0.2);
  box-shadow: 1px 3px 8px 0 rgba(50, 50, 50, 0.2);
  transition: transform 0.4s ease;
}

.page-link:hover {
  color: var(--bgo-white);
  background-color: var(--bgo-bronze);
  border: 1px solid var(--bgo-bronze);
  -webkit-box-shadow: 1px 3px 5px 0 rgba(50, 50, 50, 0.24);
  -moz-box-shadow: 1px 3px 5px 0 rgba(50, 50, 50, 0.24);
  box-shadow: 1px 3px 5px 0 rgba(50, 50, 50, 0.24);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
  font-size: 0.875em;
  padding: .7em 1.1em;
}

.page-item:first-child .page-link {
  margin-right: 7px;
}

.page-item:last-child .page-link {
  margin-left: 15px;
}

.page-item.disabled .page-link {
  color: #cdcdcd;
  border-color: var(--bgo-white);
}

.page-item a.current.page-link {
  box-shadow: 0 0 0 0.2rem rgba(8, 8, 8, 0.15);
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: var(--bgo-bronze);
  border-color: var(--bgo-bronze);
}

/* ------------------- BGO CAROUSEL --------------------- */
#bgo-carousel {
  margin: 4em 0;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.fixed-card {
  width: 25%;
  height: auto;
  padding-left: 1.5em;
  border-right: 1px solid var(--bgo-dark-grey);
}

.fixed-card h2 {
  font-family: 'SanomatItalic', 'Playfair Display', serif;
  font-style: italic;
  font-size: 3em;
  font-weight: 500;
  color: var(--bgo-dark-grey);
  text-align: left;
  margin: 0;
  line-height: 0.985em;
  user-select: none;
  transition: all ease 0.5s;
}

.fixed-card h2:hover {
  color: var(--bgo-bronze);
  transition: all ease 1s;
}

.carousel-container {
  position: relative;
  width: 75%;
}

.carousel .card {
  padding: 1em;
  background-color: transparent;
  text-align: left;
  margin: 0 10px;
  border-radius: 0;
  border: 0;
  border-right: 1px solid var(--bgo-dark-grey);
}

.carousel .card h3 {
  font-size: 1.2em;
  font-weight: 500;
  font-style: italic;
}

.carousel .card h3 span {
  display: block;
  margin-bottom: 0.4em;
  font-size: 2.8em;
  transition: all ease 0.5s;
}

.carousel .card h3 span:hover {
  color: var(--bgo-bronze);
  transition: all ease 1s;
}

.carousel-container .slick-list {
  margin: 0 -10px;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.carousel .slick-track {
  display: flex !important;
  align-items: stretch;
}

.carousel .slick-slide {
  height: auto !important;
  display: flex !important;
}

.slick-dots {
  display: none !important;
}

.carousel-container .slick-prev,
.carousel-container .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid var(--bgo-dark-grey);
  border-radius: 50%;
  background: transparent;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.carousel-container .slick-prev:before,
.carousel-container .slick-next:before {
  content: '';
}

.carousel-container .slick-next::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid var(--bgo-dark-grey);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.carousel-container .slick-prev::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 8px solid var(--bgo-dark-grey);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.carousel-container .slick-prev,
.carousel-container .slick-next {
  position: absolute;
  bottom: -50px;
  top: auto;
  transform: none;
  z-index: 20;
  transition: all ease 0.3s;
}

.carousel-container .slick-prev:hover,
.carousel-container .slick-next:hover {
  background: var(--bgo-bronze);
}

.carousel-container .slick-prev:hover::after,
.carousel-container .slick-next:hover::after {
  border-left-color: white;
  border-right-color: white;
}

.carousel-container .slick-next {
  right: 0;
}

.carousel-container .slick-prev {
  right: 55px;
  left: auto;
}

/* ------------------- BGO FOOTER --------------------- */
#bgo-footer {
  margin-top: 6em;
  padding: 3em 2em;
}

.footer-container {
  border-top: 2px solid var(--bgo-dark-grey);
  padding: 1em 0 0 0;
}

.footer-col {
  margin-bottom: 1em;
}

.footer-col h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9em;
  margin-bottom: 0.5em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bgo-dark-grey);
}

.footer-col a {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8em;
  color: var(--bgo-dark-grey);
  text-decoration: none;
  line-height: 1.5em;
  transition: 0.6s;
}

.footer-col a:hover {
  color: var(--bgo-bronze);
  padding-left: 6px;
  transition: 0.3s;
}

.footer-logo {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5em;
}

.footer-logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.footer-logo .back-top {
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  font-weight: 700;
  transition: all ease 0.6s;
}

.footer-logo .back-top:hover {
  transform: scale(1.06);
  transition: all ease 0.3s;
}

.legal-text {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  font-size: 0.835em;
  color: var(--bgo-light-grey);
  padding-top: 0.5em;
}

footer .social-links  {
  margin-bottom: 0;
  text-align: left;
}
	.social-links.onmenu {
	  width: 100%;
	  text-align: left;
	  margin-top: 3em;
	}
footer a.social-icon {
  display: inline;
  margin-left: 14px;
  margin-right: 14px;
  border-bottom: none;
}
	.social-links.onmenu a.social-icon {
	  display: inline;
	  margin-left: 0;
	  margin-right: 28px;
	  border-bottom: none;
	}

footer a.social-icon svg,
.social-links.onmenu a.social-icon svg {
  fill: var(--body-text);
  width: 18px;
  opacity: 0.85;
}
	footer a.social-icon.linkedin svg,
	.social-links.onmenu a.social-icon.linkedin svg {
	   margin-bottom: 5px;
	}
footer a.social-icon svg:hover,
.social-links.onmenu a.social-icon svg:hover {
  fill: var(--bgo-bronze);
  opacity: 1;
}
footer a.social-icon:hover,
.social-links.onmenu a.social-icon:hover  {
  border-bottom: none;
}




/* ------------------- SINGLE PAGE --------------------- */
.single-content {
  padding-bottom: 5em;
}

.article-title {
  width: 100%;
  max-width: 1000px;
  height: auto;
  text-align: left;
  padding: 4em 20px 2em 20px;
}

.article-title .title-description {
  width: 100%;
  max-width: 700px;
  height: auto;
  font-family: 'Open Sans', sans-serif;
  color: var(--bgo-dark-grey);
  font-weight: 600;
  text-align: left;
}

.article-title .title-description p {
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  color: var(--bgo-dark-grey);
  font-weight: 600;
  font-size: 1.1em;
}

.bgo-section-img {
  width: 100%;
  height: auto;
  margin-bottom: 4em;
  overflow: hidden;
}

.bgo-section-img img {
  width: 100%;
  height: auto;
}

.article-data {
  width: 100%;
  height: auto;
  padding: 3em 20px 0 20px;
}

.article-autor-name,
.article-fecha {
  width: fit-content;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1em;
  text-align: left;
  color: var(--bgo-dark-grey);
  margin: 0;
}

.article-content {
  padding: 1em 50px 2em 20px;
}

.article-content p {
  font-size: 1.1em;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  text-align: left;
  color: var(--bgo-light-grey);
}

.side-articles {
  border-left: 2px solid var(--bgo-dark-grey);
  padding: 0 2em;
}

.side-article {
  border-top: 2px solid var(--bgo-dark-grey);
  padding: 0.5em 0 2em 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9em;
}

.side-article h3 {
  font-weight: 500;
  margin-bottom: 0.5em;
  font-size: 1.4em;
}

.company-logo {
  margin-bottom: 1em;
}

.company-logo img {
  width: auto;
  height: 140px;
  text-align: left;
}

.single-content ul {
  list-style: disc;
  padding: 0;
  padding-left: 2em;
  line-height: 1.9em;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
}

.single-content ol {
  padding-left: 2em;
  line-height: 1.9em;
}

.single-content ul li,
.single-content ol li {
  font-size: 1.1em;
  line-height: 1.5em;
  color: var(--bgo-dark-grey);
}
.single-content .bgo-btn {
  margin-top: 2em
}

/* ------------------- ABOUT US --------------------- */
.generic-text {
  width: 100%;
  max-width: 1100px;
  height: auto;
  text-align: center;
  padding: 0 1.5em;
  margin: 4em auto;
}

.generic-text.inwhy {
  margin-top: 0;
}
.generic-text.inwhy h1.main-title {
  font-size: 2.4em;
}

.generic-text.large {
  max-width: 100%;
}

.generic-text h2 {
  font-family: 'SanomatLight', 'Playfair Display', serif;
  font-size: 2.4em;
  font-weight: 500;
  line-height: 1.4em;
  margin-bottom: 0.8em;
  text-align: center;
}

.generic-text p {
  font-family: 'Open Sans', sans-serif;
  color: var(--bgo-light-grey);
  font-weight: 500;
  font-size: 1.1em;
  text-align: center;
}

.generic-text .bgo-btn {
  margin: 3em 0;
}

/* ---------- BGO CAROUSEL V2 --------- */
.carousel-v2-container {
  width: 100%;
  height: auto;
  margin: 4em 0 8em 0;
}

.carousel-v2 .card {
  width: 100%;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  text-align: center;
  transition: all 0.4s ease;
  transform: scale(0.8);
  filter: blur(3px);
  opacity: 0.6;
}

.carousel-v2 .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1em;
  border-radius: 6px;
}

.carousel-v2 .card {
  font-size: 1em;
  color: var(--bgo-dark-grey);
  text-align: left;
  transition: all 0.4s ease;
}

.carousel-v2 .card .card-title1 {
  font-family: 'SanomatLightItalic', serif;
  font-size: 2.5em;
  font-weight: 500;
  margin-bottom: 0.5em;
  text-align: left;
  margin-bottom: 0;
}

.carousel-v2 .card .card-title2 {
  display: flex;
  justify-content: space-between;
}

.carousel-v2 .card .card-title2 .name {
  font-family: 'SanomatLight', 'Playfair Display', serif;
  font-size: 1em;
  color: var(--bgo-dark-grey);
  font-weight: 600;
}

.carousel-v2 .card.card-title2 .name-data {
  color: var(--bgo-dark-grey);
}

.carousel-v2 .slick-center .card {
  transform: scale(1.1);
  filter: blur(0);
  opacity: 1;
}

.carousel-v2 .slick-slide {
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  transition: border-color 0.4s ease;
}

.carousel-v2 .slick-slide {
  transform: scale(0.8);
  filter: blur(3px);
  opacity: 0.5;
  transition: all 0.4s ease;
  padding: 0 1em;
}

.carousel-v2 .slick-slide.slick-center {
  transform: scale(1.1);
  filter: blur(0);
  opacity: 1;
  z-index: 2;
}

.carousel-v2 .slick-list {
  padding-top: 1.5vw;
  padding-bottom: 2vw;
}

.carousel-v2.slick-slider .slick-track {
  padding-top: 2em;
  padding-bottom: 2em;
}

.carousel-v2 .slick-prev,
.carousel-v2 .slick-next {
  z-index: 10;
}

.carousel-v2-container .slick-prev,
.carousel-v2-container .slick-next {
  width: 45px;
  height: 45px;
  border: 1px solid var(--bgo-dark-grey);
  border-radius: 50%;
  background: transparent;
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -40px;
  top: auto;
  z-index: 20;
  transition: all 0.3s ease;
}

.carousel-v2-container .slick-prev:before,
.carousel-v2-container .slick-next:before {
  content: '';
}

.carousel-v2-container .slick-next::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid var(--bgo-dark-grey);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.carousel-v2-container .slick-prev::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 8px solid var(--bgo-dark-grey);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.carousel-v2-container .slick-next {
  right: 0;
}

.carousel-v2-container .slick-prev {
  right: 60px;
  left: auto;
}

.carousel-v2-container .slick-prev:hover,
.carousel-v2-container .slick-next:hover {
  background: var(--bgo-bronze);
}

.carousel-v2-container .slick-prev:hover::after,
.carousel-v2-container .slick-next:hover::after {
  border-left-color: white;
  border-right-color: white;
}

.carousel-v2-btn a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8em;
  text-decoration: underline;
}

/* ------------------- SECTION IMG WHIT TITLE --------------------- */
.bgo-section-img-with-text {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.bgo-section-img-with-text img {
  width: 100%;
  height: auto;
}

.bgo-section-img-text {
  width: 100%;
  height: auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 1.5em 3em;
}

.bgo-section-img-text h2 {
  font-family: 'SanomatLightItalic', serif;
  font-size: 3.3em;
  font-weight: 500;
  text-align: center;
  color: var(--bgo-white);
  margin: 0;
}

/* Animación base */
@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.fade-in-blur {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.35);
  transition: opacity 2s ease, filter 2s ease, transform 4s ease;
}

.fade-in-blur.show {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* Con el img expand */
.bgo-scroll-expand-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bgo-scroll-expand-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(0.7);
  transform-origin: center center;
}

.bgo-scroll-expand-text {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 1.5em 3em;
}

.bgo-scroll-expand-text h2 {
  font-family: 'SanomatLightItalic', serif;
  font-size: 3.3em;
  font-weight: 500;
  text-align: center;
  color: var(--bgo-white);
  margin: 0;
}

/* version con video */
.bgo-section-img-with-video {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.bgo-section-img-with-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bgo-scroll-expand-video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bgo-scroll-expand-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: scale(0.7);
  transform-origin: center center;
}

.bgo-scroll-expand-video-text {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 1.5em 3em;
  z-index: 2;
}

.bgo-scroll-expand-video-text h2 {
  font-family: 'SanomatLightItalic', serif;
  font-size: 3.3em;
  font-weight: 500;
  text-align: center;
  color: var(--bgo-white);
  margin: 0;
}

/* ------------------- CUADRO MISION --------------------- */
#bgo-slider {
  position: relative;
}

.separador-slider {
  width: 100%;
  height: 3em;
}

#bgo-slider .slider-pin {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  max-height: 620px;
  overflow: hidden;
}

#bgo-slider .slide {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  gap: 2em;
  padding-left: 10em;
}

#bgo-slider .slide .image {
  width: 42vw;
  max-width: 520px;
  z-index: 2;
}

#bgo-slider .slide .image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

#bgo-slider .slide .content {
  width: 26vw;
  max-width: 320px;
}

#bgo-slider .slide .contentWrap {
  position: absolute;
  transform: translateY(-50%);
  top: 40%;
}

#bgo-slider .slide .content h2 {
  font-family: 'SanomatLight', 'Playfair Display', serif;
  font-size: 2.4em;
  font-weight: 500;
  margin-bottom: 0.2em;
  text-align: left;
}

#bgo-slider .slide .content p {
  font-family: 'Open Sans', sans-serif;
  color: var(--bgo-light-grey);
  font-weight: 500;
  font-size: 1.1em;
  text-align: left;
}

#bgo-slider .thumbs {
  position: absolute;
  top: 0;
  left: 14%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#bgo-slider .slide {
  pointer-events: none;
}

#bgo-slider .mlink {
  pointer-events: auto;
  position: relative;
  z-index: 99999;
}

#bgo-slider .mlink a {
  pointer-events: auto;
}

#bgo-slider .slide .content {
  position: relative;
  z-index: 99999;
}

@media (max-width:1399.5px) {
  #bgo-slider .thumbs {
    left: calc(6vw);
  }
}

@media (max-width:1200px) {
  #bgo-slider .thumbs {
    left: calc(4vw);
  }
}

#bgo-slider .thumb {
  width: 90px;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.6);
  border: 4px solid var(--bgo-silk);
}

#bgo-slider .slide,
#bgo-slider .image,
#bgo-slider .content,
#bgo-slider .thumb {
  will-change: transform, opacity;
}

#bgo-slider .mlink a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9em;
  text-decoration: underline;
}

#bgo-slider .mlink a:hover {
  color: var(--bgo-bronze);
}

/* ------------------- VALUES CARDS --------------------- */
#valuesCards {
  margin: 6em 0 8em 0;
  position: relative;
  width: 100%;
}

.valuesCards-item {
  padding: 1em;
}

.valuesCards-item .valueBox {
  padding: 2em;
  background: #ffffff;
  border-radius: 10px;
  min-height: 272px;
  transition: all 1s ease;
}

.valuesCards-item .valueBox:hover {
  transition: all 0.6s ease;
  transform: scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
}

.valuesCards-item .valueBox:hover h3 {
  color: var(--bgo-bronze);
}

.valuesCards-item h3 {
  margin: 0 0 1.5em 0;
  font-size: 1.5em;
  font-weight: 500;
  color: var(--bgo-dark-grey);
  font-family: 'SanomatLight', 'Playfair Display', serif;
  text-align: left;
}

.valuesCards-item p {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  line-height: 1.5em;
  color: var(--bgo-dark-grey);
  text-align: left;
}

/* ------------------- BGO HEADER SMALL --------------------- */
.bgo-header-small {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 4em;
  overflow: hidden;
}

.bgo-header-small img {
  width: 100%;
  height: auto;
}

.bgo-header-small .header-title {
  width: 100%;
  height: auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 1.5em 3em;
}

.bgo-header-small .header-title h2 {
  font-family: 'SanomatLight', 'Playfair Display', serif;
  font-size: 2.4em;
  font-weight: 500;
  line-height: 1.4em;
  margin: 0;
  padding: 16px;
  text-align: center;
  color: var(--bgo-white);
}

.legal-cont {
  text-align: left;
  padding: 1.5em;
}

.legal-cont h3 {
  font-family: 'Open Sans', sans-serif;
  color: var(--bgo-dark-grey);
  font-weight: 800;
  font-size: 1.1em;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 1em;
}

.legal-cont p {
  font-family: 'Open Sans', sans-serif;
  color: var(--bgo-light-grey);
  font-weight: 500;
  font-size: 1em;
  text-align: justify;
}

.legal-cont .italic-text {
  font-style: italic;
}

.legal-cont ul li {
  list-style: disc;
  margin-left: 32px;
}

/* ------------------- WHAT WE DO --------------------- */
.industries-card {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: auto;
  min-height: 250px;
  margin: 3em auto;
  overflow: hidden;
  border-radius: 6px;
}

.industries-card-text {
  position: relative;
  z-index: 99;
  width: 70%;
  height: auto;
  min-height: 250px;
  background-color: var(--bgo-white);
  padding: 2em 3em;
  border-radius: 6px 0 44px 6px;
}

.industries-card-video {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  width: 35%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 6px 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industries-card-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.industries-card-text .industries-title {
  width: fit-content;
  border-right: 2px solid var(--bgo-dark-grey);
  border-left: 2px solid var(--bgo-dark-grey);
  padding: 0 0.8em;
  margin-bottom: 1.5em;
  transition: all ease 1s;
  user-select: none;
}

.industries-card-text .industries-title h2 {
  font-family: 'SanomatLight', 'Playfair Display', serif;
  font-style: italic;
  color: var(--bgo-dark-grey);
  font-weight: 500;
  font-size: 1.8em;
  margin: 0;
  transition: all ease 1s;
}

.industries-card-text .industries-title:hover h2 {
  color: var(--bgo-bronze);
  transition: all ease .3s;
}

.industries-card-text .industries-title:hover {
  border-color: var(--bgo-bronze);
  transition: all ease .3s;
  padding: 0 1.8em;
}

.industries-card-text p {
  font-family: 'Open Sans', sans-serif;
  color: var(--bgo-light-grey);
  font-weight: 500;
  font-size: 1em;
}

.industries-links {
  width: 100%;
  height: auto;
  margin: 1.5em 0 0 0;
  display: flex;
  align-items: center;
  gap: 2.5em;
  flex-direction: row;
  flex-wrap: wrap;
}

.industries-links .img-link {
  transition: all ease 1s;
}

.industries-links .img-link img {
  width: auto;
  height: 70px;
}

.industries-links .img-link:hover {
  transform: scale(1.05);
  transition: all ease .3s;
}

.industries-card.card-reverse .industries-card-text {
  margin-left: auto;
  border-radius: 0 6px 6px 44px;
}

.industries-card.card-reverse .industries-card-video {
  left: 0;
  right: auto;
  border-radius: 6px 0 0 6px;
}

/* ---------------------=== BGO GALLERY ---------------------==== */
.bgo-gallery {
  width: 100%;
  height: auto;
  margin: 3em 0;
}

.bgo-gallery-item {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background-color: transparent;
  padding: 0 12px 12px 0;
  transition: 0.4s ease;
}

.bgo-gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
  border-radius: 6px;
}

.bgo-gallery-item:hover {
  transform: scale(1.04);
  opacity: 0.7;
}

.bgo-gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.bgo-gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.bgo-gallery-lightbox img {
  max-width: 80%;
  max-height: 85vh;
  border-radius: 6px;
  animation: bgoZoom .3s ease;
}

@keyframes bgoZoom {
  from {
    transform: scale(.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.bgo-gallery-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--bgo-white);
  font-size: 45px;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1;
}

.bgo-gallery-close:hover {
  color: var(--bgo-bronze);
  transform: scale(1.1);
}

.bgo-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--bgo-white);
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

.bgo-gallery-btn:hover {
  background: var(--bgo-bronze);
}

.bgo-gallery-prev {
  left: 30px;
}

.bgo-gallery-next {
  right: 30px;
}

/* Video de la galería */
.bgo-gallery-video {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 0 12px 12px 0;
  margin-bottom: 2em;
}

.bgo-gallery-video-btn {
  position: relative;
  display: block;
}

.bgo-gallery-video-btn img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: .4s ease;
  border-radius: 6px;
}

.bgo-gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bgo-white);
  font-size: 35px;
  transition: .3s ease;
  animation: bgoBlink 1.5s infinite;
}

.bgo-gallery-video-btn:hover .bgo-gallery-play {
  background: var(--bgo-bronze);
  text-align: center;
  animation-play-state: paused;
}

@keyframes bgoBlink {

  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }

}

/* --------------------- COMPANIES --------------------- */
#companies {
  margin: 4em 0;
}

#companies .company-logo {
  text-align: center;
  margin: 2.5em 0;
}

#companies .company-logo img {
  width: auto;
  height: 120px;
  text-align: left;
  transition: 1s all ease;
}

#companies .company-logo a:hover img {
  transform: scale(1.06);
  transition: 0.3s all ease;
}

/* ----------- INTRO ----------- */
#bgoIntro {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8000;
  width: 100%;
  height: 100vh;
  background-color: var(--bgo-silk);
  transition: background-color 0.4s;
}

#bgoIntro.bgo-intro-hidden {
  display: none;
}

.bline1,
.bline2 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -2px;
  width: 100%;
  height: 4px;
  background-color: #2d2d2d;
  transition: all 0.4s;
}

.logoBGO-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 540px;
  height: auto;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.logoBGO {
  width: 100%;
  height: auto;
  opacity: 0;
  transition: 0.6s opacity;
}

.logoBGO img {
  width: 100%;
  height: auto;
}