/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family: Cremona;
  src: url(../font/Cremona.ttf);
}

/* Global Colors */
:root {
  --color-primary: #0D2234;
}

body {
  font-family: "Cremona";
  color: white;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cremona";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--color-primary);
  line-height: 0;
}

.back-to-top:hover {
  background: #d3d6d8;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Background Img Sections
--------------------------------------------------------------*/
.bg-section1 {
  /* background-image: url('../img/secciones/bg-section1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; */
  background-color: var(--color-primary);
}

.position-rombo {
  position: absolute !important;
  z-index: 0;
  /*top: 165vh; */
  /* top: 10px; 
  right: 10px; 
  width: 100px;
  height: auto; */
}

.bg-section2 {
  background-image: url('../img/secciones/bg-section2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* background-attachment: fixed; */
}

.bg-section3 {
  background-image: url('../img/secciones/bg-section3.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-section4 {
  background-image: url('../img/secciones/bg-section4.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-section5 {
  background-image: url('../img/secciones/bg-section5.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: white;
  opacity: 90%;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  /* text-transform: uppercase; */
}

#header .logo a {
  color: #556270;
}

#header .logo img {
  max-height: 40px;
}




/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Cremona";
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-primary);
  font-weight: bold;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--color-primary);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.navbar a.active {
  font-weight: bold;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #556270;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(63, 73, 83, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /* height: 1080px; */
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  /* background-color: rgba(1, 128, 255, 0.6); */
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.carousel-services li {
  background: var(--color-primary) !important;
}

.carousel-control-service {
  background: var(--color-primary) !important;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  /* background: var(--color-primary); */
}

#slide1_logo {
  max-height: 300px;
}

.logo {
  margin-top: 1000px;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 8px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

.bg-color-blue {
  color: var(--color-primary) !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section-bg,
.services .icon-box {
  background-color: #f8f9fa;
}

/*--------------------------------------------------------------
# Nosotros Section
--------------------------------------------------------------*/

.image-wrapper {
  height: 100%;
  padding: 0;
}

.image-wrapper img {
  height: 100%;
  object-fit: cover;
}

.about-us-wrapper {
  display: flex;
  align-items: center;
}

.about-us-wrapper h5 {
  margin-bottom: 0;
  margin-left: 10px;
}

.about-us-wrapper hr {
  flex-grow: 2;
  border: none;
  height: 2px;
  background-color: #fff;
}

.nosotros-border {
  border: 2px solid white;
  z-index: 3;
  /* -webkit-box-shadow: -5px -6px 0px 0px #0076bf;
  -moz-box-shadow: -5px -6px 0px 0px #0076bf;
  box-shadow: -5px -6px 0px 0px #0076bf; */

  /* box-shadow: 0 0 10px rgba(255, 255, 255, 1); */
  /* background-color: #fff;
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.5);
    outline: 2px solid #fff; */
}

.nosotros-border-sombra {
  border: 2px solid red;
  z-index: 2;
  position: absolute;
  left: 10px;
  /* -webkit-box-shadow: -5px -6px 0px 0px #0076bf;
  -moz-box-shadow: -5px -6px 0px 0px #0076bf;
  box-shadow: -5px -6px 0px 0px #0076bf; */

  /* box-shadow: 0 0 10px rgba(255, 255, 255, 1); */
  /* background-color: #fff;
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.5);
    outline: 2px solid #fff; */
}

/*--------------------------------------------------------------
# Servicios Section
--------------------------------------------------------------*/

.services-wrapper {
  display: flex;
  align-items: center;
}

.services-wrapper h5 {
  margin-bottom: 0;
  margin-left: 10px;
}

.services-wrapper hr {
  flex-grow: 2;
  border: none;
  height: 2px;
  background-color: #fff;
}


/*--------------------------------------------------------------
# Button Custom
--------------------------------------------------------------*/
.btn-custom {
  padding: 12px 16px;
  cursor: pointer;
  border-width: 1px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 500;
  -webkit-box-shadow: 0px 5px 0px 0px #ffffff;
  -moz-box-shadow: 0px 5px 0px 0px #ebebeb;
  box-shadow: 0px 5px 0px 0px #ebebeb;
  overflow: hidden;
  position: relative;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-custom:hover,
.btn-custom:active,
.btn-custom:focus {
  outline: none !important;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block+.btn-block {
  margin-top: 0.5rem;
}

#btn-neuroimage {
  background: #0076bf;
  color: #fff;
  border-color: #fff;
  -webkit-box-shadow: -5px -6px 0px 0px #0076bf;
  -moz-box-shadow: -5px -6px 0px 0px #0076bf;
  box-shadow: -5px -6px 0px 0px #0076bf;
}

#btn-neuroimage:hover,
#btn-neuroimage:focus {
  background: #0076bfb4;
}

#btn-neuroped {
  background: #8a69d4;
  color: #fff;
  border-color: #fff;
  -webkit-box-shadow: 5px -6px 0px 0px #8a69d4;
  -moz-box-shadow: 5px -6px 0px 0px #8a69d4;
  box-shadow: 5px -6px 0px 0px #8a69d4;
}

#btn-neuroped:hover,
#btn-neuroped:focus {
  background: #8b69d4c7;
}

#btn-premics {
  background: #1a3d5b;
  color: #fff;
  border-color: #fff;
  -webkit-box-shadow: -5px -6px 0px 0px #1a3d5b;
  -moz-box-shadow: -5px -6px 0px 0px #1a3d5b;
  box-shadow: -5px -6px 0px 0px #1a3d5b;
}

#btn-premics:hover,
#btn-premics:focus {
  background: #1d415e;
}

#btn-academic {
  background: #f4ae00;
  color: #fff;
  border-color: #fff;
  -webkit-box-shadow: -5px -6px 0px 0px #f4ae00;
  -moz-box-shadow: -5px -6px 0px 0px #f4ae00;
  box-shadow: -5px -6px 0px 0px #f4ae00;
}

#btn-academic:hover,
#btn-academic:focus {
  background: #f4af00da;
}

.btn-outline-custom {
  border-radius: 0;
  border-width: 2px;
  border-color: var(--color-primary);
  color: var(--color-primary);
  padding: 4% 0%;
  font-weight: bold;
}

.btn-outline-custom:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/*--------------------------------------------------------------
# Carousel owl
--------------------------------------------------------------*/

.owl-1 .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
}

.owl-1 .owl-nav .owl-next,
.owl-1 .owl-nav .owl-prev {
  border: 1px solid red;
  z-index: 92;
  position: absolute;
  top: 50%;
}

.owl-1 .owl-nav .owl-next:active,
.owl-1 .owl-nav .owl-next:focus,
.owl-1 .owl-nav .owl-prev:active,
.owl-1 .owl-nav .owl-prev:focus {
  outline: none;
}

.owl-1 .owl-nav .owl-next span,
.owl-1 .owl-nav .owl-prev span {
  color: #fff;
}

.owl-1 .owl-nav .owl-next span:before,
.owl-1 .owl-nav .owl-prev span:before {
  font-size: 40px !important;
}

.owl-1 .owl-nav .owl-next {
  border: 4px solid blue;
  right: 20px;
}

.owl-1 .owl-nav .owl-prev {
  left: 20px;
}

.owl-1 .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.owl-1 .owl-dots .owl-dot {
  background: none;
  display: inline-block;
}

.owl-1 .owl-dots .owl-dot>span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 4px;
}

.owl-1 .owl-dots .owl-dot.active>span {
  background: white;
}

.owl-1 .owl-dots .owl-dot:active,
.owl-1 .owl-dots .owl-dot:focus {
  outline: none;
}


.owl-2 .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
}

.owl-2 .owl-nav .owl-next,
.owl-2 .owl-nav .owl-prev {
  border: 1px solid red;
  z-index: 92;
  position: absolute;
  top: 50%;
}

.owl-2 .owl-nav .owl-next:active,
.owl-2 .owl-nav .owl-next:focus,
.owl-2 .owl-nav .owl-prev:active,
.owl-2 .owl-nav .owl-prev:focus {
  outline: none;
}

.owl-2 .owl-nav .owl-next span,
.owl-2 .owl-nav .owl-prev span {
  color: #fff;
}

.owl-2 .owl-nav .owl-next span:before,
.owl-2 .owl-nav .owl-prev span:before {
  font-size: 40px !important;
}

.owl-2 .owl-nav .owl-next {
  border: 4px solid blue;
  right: 20px;
}

.owl-2 .owl-nav .owl-prev {
  left: 20px;
}

.owl-2 .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.owl-2 .owl-dots .owl-dot {
  background: none;
  display: inline-block;
}

.owl-2 .owl-dots .owl-dot>span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 4px;
}

.owl-2 .owl-dots .owl-dot.active>span {
  background: white;
}

.owl-2 .owl-dots .owl-dot:active,
.owl-2 .owl-dots .owl-dot:focus {
  outline: none;
}





/* Estilos para el contenedor que agrupa el carrusel y los botones */
.custom-carousel-container-3 {
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}

/* Estilos para el carrusel */
.custom3-carousel {
  position: relative;
  z-index: 1;
}

/* Estilos para los botones personalizados */
.custom-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
}

.custom-prev-btn,
.custom-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f2f2f2;
  color: #333;
  font-size: 24px;
  width: 40px; /* Ajusta el tamaño del botón */
  height: 40px; /* Ajusta el tamaño del botón */
  line-height: 40px; 
  border: none;
  border-radius: 50%;
  cursor: pointer;
  outline: none; /* Elimina el borde al hacer clic en el botón */
  transition: background-color 0.3s ease;
}

.custom-prev-btn {
  left: 0px;
}

.custom-next-btn {
  right: 0px;
}

.custom-prev-btn span,
.custom-next-btn span {
  font-size: 24px;
  font-weight: bold;
}

/* Estilos adicionales para resaltar los botones al pasar el mouse */
.custom-prev-btn:hover,
.custom-next-btn:hover {
  background-color: #ddd;
}




/*--------------------------------------------------------------
# Call to action section
--------------------------------------------------------------*/
#call_to_action_section {
  background-color: #C6D7EB;

}

/*--------------------------------------------------------------
# Academica Section
--------------------------------------------------------------*/

.academic-wrapper {
  display: flex;
  align-items: center;
}

.academic-wrapper h5 {
  margin-bottom: 0;
  margin-left: 10px;
}

.academic-wrapper hr {
  flex-grow: 2;
  border: none;
  height: 2px;
  background-color: #fff;
}

/*--------------------------------------------------------------
# Sede Section
--------------------------------------------------------------*/

.sede-wrapper {
  display: flex;
  align-items: center;
}

.sede-wrapper h5 {
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 20%;
}

.sede-wrapper hr {
  flex-grow: 2;
  border: none;
  height: 2px;
  background-color: #fff;
}

.card-img-container {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0px;
}

.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 0px;
}

.card-body {
  background-color: var(--color-primary);
  color: #fff;
}

.card {
  border: none;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.863);
  filter: brightness(1.1);
}

/*--------------------------------------------------------------
# Colaboradores Section
--------------------------------------------------------------*/

.vertical-line {
  display: flex;
  align-items: center;
}

.line {
  width: 2px;
  height: 100%;
  background-color: white;
  margin-right: 10px;
}

.vertical-title {
  margin: 0;
  position: relative;
}

.vertical-title:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: white;
}

.achievement-icon {
  width: 160px;
  height: 150px;
  margin-top: 8%;
}

.btn-custom-col {
  background-color: white;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  margin-bottom: 8%;
  border-radius: 0px;
}

.btn-custom-col:hover {
  background-color: var(--color-primary);
  color: #fff;
  border: 2px solid #fff;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.custom-input {
  width: 100%;
  border: 2px solid white;
  border-radius: 4px;
  padding: 8px;
  color: white;
  background-color: transparent;
  text-align: right;
  padding-right: 10px;
}

.custom-input::placeholder {
  color: white;
}

.custom-textarea {
  width: 100%;
  border: 2px solid white;
  border-radius: 4px;
  padding: 8px;
  color: white;
  background-color: transparent;
  resize: none;
  text-align: right;
  padding-right: 10px;
}

.custom-textarea::placeholder {
  color: white;
  text-align: right;
}

.container-box {
  position: relative;
  /* margin: 30px; */
}

.box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  border: 2px solid white;
  background: rgba(0, 0, 0, 0);
}

/* ------------------quienes---------------------- */
@media (max-width: 767px) {
  .box-quienes {
    height: 330px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .box-quienes {
    height: 206px;
  }
}
@media (min-width: 1024px){
  .box-quienes {
    height: 195px;
  }
}
/* -----------------servicios----------------------- */
@media (max-width: 767px) {
  .box-servicios {
    height: 300px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .box-servicios {
    height: 205px;
  }
}
@media (min-width: 1024px){
  .box-servicios {
    height: 195px;
  }
}

/* --------------------mis-------------------- */
@media (max-width: 767px) {
  .box-mis {
    height: 672px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .box-mis {
    height: 350px;
  }
}
@media (min-width: 1024px) and (max-width: 1444px) {
  .box-mis {
    height: 350px;
  }
}
@media (min-width: 1445px){
  .box-mis {
    height: 220px;
  }
}



@media (max-width: 767px) {
  .box-vision {
    height: 365px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .box-vision {
    height: 210px;
  }
}

@media (max-width: 767px) {
  .box-valores {
    height: 550px;
  }
}

@media (min-width: 900px) and (max-width: 1500px) {
  .box-valores {
    height: 334px;
  }
}

@media (max-width: 767px) {
  .box-valores2 {
    height: 415px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .box-valores2 {
    height: 245px;
  }
}


.overlay {
  z-index: 9;
  /* margin: 30px; */
  margin-top: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
  margin-left: -30px;
  background: #fff;
}

.overlay-r {
  z-index: 9;
  /* margin: 30px; */
  margin-top: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
  margin-left: 30px;
  background: #fff;
}

/* Estilo para el video */
.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Hace que el video cubra el espacio manteniendo la proporción */
}

/* Estilo personalizado para el modal */
.modal-content {
  background-color: transparent; /* Fondo transparente */
  border: none; /* Sin borde */
}

.modal-dialog {
  max-width: 100%; /* Ancho máximo para ocupar todo el ancho del modal */
  margin: auto; /* Centrar el modal horizontalmente */
  display: flex;
  align-items: center; /* Centrar verticalmente el contenido del modal */
  justify-content: center; /* Centrar horizontalmente el contenido del modal */
  height: 100vh; /* Establecer altura del modal igual a la altura de la ventana */
}

.modal-body {
  padding: 0; /* Eliminar cualquier relleno dentro del modal */
}



#video-promotion {
  max-width: 100%;
  height: auto;
}

/* Estilo personalizado para el botón de cierre */
.btn-close-white {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1050; /* Asegurar que el botón esté por encima del contenido */
  color: #ffffff; /* Color blanco del ícono "X" */
  font-size: 1.5rem; /* Tamaño del ícono */
  background-color: transparent; /* Fondo transparente */
  border: none; /* Sin borde */
}