/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.google.com/share?selection.family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 100%, 100%);
  --black-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Kanit", sans-serif;
  --biggest-font-size: 2rem;
  --big-font-size: 1.5rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4rem;
    --big-font-size: 3rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
  }
}

/*Prueba de animacion*/

.animacion-zoom {
  opacity: 0;
  transform: scale(0.5);
  transition: all 1s ease-in-out;
}

.animacion-zoom.show {
  opacity: 1;
  transform: scale(1);
}

:root {
  --carousel-transition-duration: 250ms;
  --carousel-transition-ease: ease-out;
  --carousel-bg-color-rgb: 0, 0, 0;
  --carousel-shadow-color-rgb: 128, 128, 128;
  --carousel-item-width: 11.5rem;
  --carousel-item-height: 17.5rem;
  --carousel-item-hover-effect: 1.075;
  --carousel-item-reflection-blur: 0.25rem;
  --carousel-item-empty-color-rgb: 255, 255, 255;
  --carousel-item-glow-color-rgb: 255, 255, 255;
  --carousel-item-glow-size: 5rem;
  --carousel-diameter: 50rem;
  --carousel-3d-perspective: 1000px;
  --carousel-3d-perspective-origin: 50% 20%;
  --carousel-control-button-width: 1.25rem;
  --carousel-control-button-height: 4rem;
  --carousel-control-color-rgb: 255, 255, 255;
  --carousel-animation-duration: 25s;
  --carousel-animation-play-state: running;
  --carousel-direction-animation-play-state: paused;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--black-color);
  color: var(--white-color);
}


ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*img {
  display: block;
  max-width: 100%;
  height: auto;
}*/

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/

.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
}

.nav {
  position: fixed;
  height: var(--header-height);
  display: flex;
  justify-content:space-around;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.692),rgba(0, 110, 255, 0.671)); /* Fondo oscuro opaco */
  width: 100%;
  max-width: 100%;
  transition: top 0.3s ease; /* Transición suave */
  z-index: 100; 
  
}

.nav__logo {
  color: var(--white-color);
  font-weight: var(--font-medium);
}

.nav__logo img{
  width: 113px;
}

.nav__close, 
.nav__toggle {
  display: flex;
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: rgba(0, 110, 235, 0.315);
    width: 100%;
    height: 100%;
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
    backdrop-filter: blur(5px); /*Para el efecto BLUR es necesario dejar el background con el RGBA y el color ya se modifica a gusto :3*/
  }

 
  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
}

.nav__list, 
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--white-color);
  transition: width .4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}


.scroll-up {
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.scroll-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}


/* Show menu */

.show-menu{
  right: 0;
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

 
  .nav__toggle, 
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }
}


/*=============== HOME ===============*/

.home__swiper{
  position: relative;
  z-index: var(--z-tooltip);
}

.home__article{
  position: relative;
  padding-top: 13rem;
  width: 100%;
  height: 100vh;
}

.home__img,
.home__shadow,
.home__content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home__img{
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.home__shadow{
  background: linear-gradient(to top, rgba(0, 0, 0, 0.185), rgba(59, 119, 248, 0.555));
  z-index: -1;
}

.home__data{
  text-align: center;
}

.home__subtitle{
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
}

.home__title{
  font-size: var(--biggest-font-size);
  margin-bottom: 2.5rem;
  font-weight: var(--font-bold);
}

.home__button{
  color: var(--white-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
}

.home__button i{
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform .4s;
}

.home__button:hover i{
  transform: translateX(.5rem);
}

.home__social{
  position: absolute;
  z-index: var(--z-tooltip);
  left: 1.5rem;
  bottom: 4rem;
  display: grid;
  row-gap: 1.5rem;
}

.home__social-link{
  color: var(--white-color);
  font-size: 1.5rem;
}


/*=============== BREAKPOINTS ===============*/
/* For medium devices */

@media screen and (min-width: 768px) {

  .nav__menu{
    width: 50%;
  }
  
}


/* For large devices */

@media screen and (min-width: 1150px) {

  .container{
    margin-inline: auto;
  }

  .nav{
    height: calc(var(--header-height) + 1rem);
  }

  .nav__toggle,
  .nav__close{
    display: none;
  }

  .nav__menu{
    width: initial;
  }
  .nav__list{
    flex-direction: row;
    column-gap: 4rem;
  }

  .home__data{
    text-align: initial;
  }

  .home__subtitle{
    margin-bottom: 1rem;
  }

  .home__title{
    margin-bottom: 4.5rem;
  }

  .home__content{
    max-width: 1120px;
    margin-inline: auto;
    left: 0;
    right: 0;
  }

  .home__social{
    left: 0;
  }

 

}


/* For taller devices */

@media screen and (min-widht: 800px) and (min-height: 800px) {

  .home__article{
    padding-top: 17rem;
  }

}


/* For 2K resolutions (2048 x 1152) */

@media screen and (min-width: 2048px) {

  .container,
  .home__content{
    max-width: 1550px;
  }

  .home__swiper,
  .home__content,
  .home__img,
  .home__shadow{
    max-height: 1000px;
  }
  
}

@media screen and (max-width:800px) {
}
/*=========SECCION DEL RESPONSIVE ========*/
@media screen and (max-width:600px) {

  .nav{
    max-width: 100%;
    margin-left: -1px;
  }
}

/*===SECCIONES DE INFORMACION PARA NOSOTROS===*/
/* main */

.blur-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 80%;
}
.blur-2 > img {
  width: 100%;
  height: 100%;
}

button {
  width: 168px;
  height: 46px;
  background-color: var(--blue);
  color: var(--white);
  font-size: 18px;
  border: none;
  border-radius: 8px;
}


.main-2  {
  padding: 50px 150px;
}

.hero img{
  width: 500px;
  margin-top: -40px;
  margin-right: -40px;
  
}


.hero .image-2 {
  width: 30px;
  margin-right: 50%;
  margin-top: 5%;  
}
.hero,
.aboutone,
.contact {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.hero > .title,
.aboutone > .title,
.contact > .title {
  width: 50%;
  color: rgb(0, 0, 0);
}
.hero > .title > h1 {
  font-size: 54px;
  line-height: 100%;
  color: black;
}

.hero > .title > p,
.contact > .title > p {
  font-size: 18px;
  padding: 15px 0;
}

.companies {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 300;
}
.companies > .comps {
  width: 90%;
  display: inherit;
  justify-content: space-between;
  padding: 15px 10px;
  background-color: var(--gray);
  border-radius: 8px;
}

/*ABOUT*/
.about {
  margin-top: 100px;
  position: relative;
  width: 100%;
}
.aboutone {
  align-items: center;
}
.aboutone > .title {
  width: 40%;
  color: black;
}
.aboutone > .title > h2 {
  font-size: 40px;
  color: black;
}

.aboutone > .title > p {
  padding: 30px 20px 30px 0;
  color: black;
}

.about .image-2 img:nth-child(1){
  width: 300px;
}

.about .image-2 img:nth-child(2){
  width: 40px;
}


.blur-2 {
  position: absolute;
  right: -150px;
  top: auto;
  bottom: auto;
  width: 50%;
  height: 100%;
}
/* testimonial */
.testimonial {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial > p {
  padding: 15px;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
}
.testimonial > h2 {
  font-size: 40px;
  width: 40%;
  text-align: center;
  color: black;
}

.testimonial > .cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  gap: 20px;
  color: black;
}
.testimonial > .cards > .card {
  width: 30%;
  background-color: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  border-radius: 20px;
  font-weight: 300;
  color: black;
}

.testimonial > .cards > .card > .image-2 img {
  width: 130px;
  height: 130px;
  border-radius: 10%;
}

.testimonial > .cards > .card > .name {
  padding-bottom: 50px;
  font-size: 25px;
  font-weight: 700;
  color: #007bff;
  

}
.contact {
  align-items: center;
  margin-top: 100px;
  background-color: var(--gray);
  border-radius: 20px;
  padding: 0 30px;
}
.contact > .title {
  width: 40%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  color: black;
}
.contact > .title > h2 {
  font-size: 40px;
  color: black;
}
.contact > .title > p {
  padding: 30px 0;
  font-size: 16px;
  color: black;
}



@media screen and (max-width: 670px) {
  
  .main-2 {
    padding: 10px;
  }


  .hero,
  .aboutone,
  .testimonial > .cards {
    flex-wrap: wrap;
  }
  .hero > .title,
  .aboutone > .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero > .title > h1 {
    font-size: 40px;
  }
  .hero > .images,
  .aboutone > .image {
    width: 100%;
  }
  .companies > .comps,
  .testimonial > .cards > .card {
    width: 100%;
  }
  .companies > .comps > svg {
    width: 20%;
  }
  .aboutone > .title > h2 {
    font-size: 30px;
  }
  .aboutone > .title > p {
    padding: 40px 0;
  }
  .testimonial > h2 {
    width: 100%;
  }
  .contact {
    flex-direction: column;
    padding-bottom: 30px;
  }
  .contact > .title {
    width: 100%;
  }

  .nav__logo img{
    width: 125px;
    
  }

  /*Tamaño para mobile de las fotos*/

  .hero img{
    display: none;
  }

  .contact .image-2{
    display: none;
  }
  

  .about img{
    margin: 0 110px;
  }

  .contact .title{
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width: 992px) {
  
  .main-2 {
    padding: 20px 10px;
  }
  .main-2 {
    margin-top: 50px;
  }
  .hero > .title > h1 {
    font-size: 40px;
  }
  .blur-2 {
    right: -10px;
  }
}

/*Lineas o separadores para la informacion*/

.lineas{
  max-width: 100%;
  height: 8px;
  background-color: rgb(0, 89, 255);
  color: rgb(30, 89, 250);
  border-radius: 15px;
}


/*Diseño del footer / Pie de pagina */

/*=====Nuevo footer para la parte de inicio======*/

footer{
  width: 100%;
  background: linear-gradient(to right,#00093c, #152c3b);
  color: #fff;
  padding: 50px 0 30px;
  font-size: 13px;
  line-height: 20px;
}
.row{
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.col{
  flex-basis: 25%;
  padding: 10px;
}
.col:nth-child(2), .col:nth-child(3){
  flex-basis: 15%;
}

.footer_logo{ /*El general y la 45001*/
  width: 90px;
  position: relative;
  top: -23px;
  left: -18px;
}
/*individualizar logos ISO*/


.footer_logo:nth-child(1){ /*ISO 9001*/
  width: 252px;
  left: -60px;
}

.footer_logo:nth-child(2){ /*ISO 45001*/
  width: 20px;
  
}

.footer_logo:nth-child(3){ /*ISO 14001*/
  margin-left: 7px;
  width: 80px;
}

.footer_about-codigo{
  position: relative;
  top: -50px;
  margin-left: 2px;
  font-weight: 500;
}
.footer_about{
  position: relative;
  top: -23px;
}
.col h3{
  width: fit-content;
  margin-bottom: 40px;
  position: relative;
}
.footer_email{
  width: fit-content;
  border-bottom: 1px solid #34a1fa;
  margin: 20px 0;
}
.col ul li{
  list-style: none;
  margin-bottom: 12px;
}
.col ul li a{
  text-decoration: none;
  color: #fff;
}
.col form{
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1379ff;
  margin-bottom: 50px;
}
.col form .icon{
  font-size: 18px;
  margin-right: 10px;
}
.col form input{
  width: 100%;
  background: transparent;
  color: #ccc;
  border: 0;
  outline: none;
}
.col form button{
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.col form button .icon_right{
  font-size: 16px;
  color: #ccc;
}
.col .social_icons .social_icon{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(to top,rgb(0, 102, 255), rgb(34, 34, 34));
  margin-right: 15px;
  padding: 5px;
  cursor: pointer;
}
hr{
  width: 90%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 20px auto;
}
footer .copyright{
  text-align: center;
}
.bottom_line{
  width: 100%;
  height: 5px;
  background: #767676;
  border-radius: 3px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
}
.bottom_line span{
  width: 15px;
  height: 100%;
  background: #3572f6;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moveline 2s linear infinite;
}
@keyframes moveline{
  0%{
      left:-20px;
  }
  100%{
      left:100%;
  }
}

@media (max-width:500px){
  .bottom_line{
    margin-top: 15px;
  }
}

  /*
  Diseño del slider o carousel para la presencia global
  */

  .titulo-global{
    color: #1379ff;
    font-size: 50px;
    justify-content: center;
    text-align: center;
    margin-left: 30px;
    margin-top: 100px;
  }
  .carousel {
    --_diameter: var(--carousel-diameter);
    --_radius: calc(var(--_diameter) / 2);
    --_item-width: var(--carousel-item-width);
    --_item-height: var(--carousel-item-height);
    perspective: var(--carousel-3d-perspective);
    perspective-origin: var(--carousel-3d-perspective-origin);
    width: var(--_diameter);
    height: var(--_diameter);
    margin: 0 250px;
  }

  @media only screen and (max-width: 48rem) {
    .carousel {
            --_diameter: calc(var(--carousel-diameter) * 0.75);
            --_item-width: calc(var(--carousel-item-width) * 0.75);
            --_item-height: calc(var(--carousel-item-height) * 0.75);
    }
  }

  @media only screen and (max-width: 32rem) {
    .carousel {
            --_diameter: calc(var(--carousel-diameter) * 0.6);
            --_item-width: calc(var(--carousel-item-width) * 0.6);
            --_item-height: calc(var(--carousel-item-height) * 0.6);
    }
  }

  @media only screen and (max-width: 16rem) {
    .carousel {
            --_diameter: calc(var(--carousel-diameter) * 0.25);
            --_item-width: calc(var(--carousel-item-width) * 0.25);
            --_item-height: calc(var(--carousel-item-height) * 0.25);
    }
  }

  .carousel .carousel-control-button {
    --_width: var(--carousel-control-button-width);
    --_height: var(--carousel-control-button-height);
    z-index: 1;
    width: var(--_width);
    height: var(--_height);
    background-color: rgb(var(--carousel-control-color-rgb));
    opacity: 0.2;
    transition: opacity var(--carousel-transition-duration) var(--carousel-transition-ease);
    position: absolute;
  }
  .carousel .carousel-control-button:hover {
    opacity: 0.4;
  }
  .carousel .carousel-control-button:has(input:checked) {
    opacity: 0.8;
  }

  .carousel .carousel-control-button input {
    -webkit-appearance: none;
    appearance: none;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .carousel .carousel-control-button.left {
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
    top: calc(var(--_radius) - var(--_height) / 2);
    left: 0;
    background-color: rgb(0, 0, 0);
  }
  .carousel:has(.carousel-control-button.left input:checked) {
    --carousel-direction-animation-play-state: running;
  }

  .carousel .carousel-control-button.right {
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    top: calc(var(--_radius) - var(--_height) / 2);
    right: 0;
    background-color: rgb(0, 0, 0);
  }
  .carousel:has(.carousel-control-button.right input:checked) {
    --carousel-direction-animation-play-state: paused;
  }

  .carousel .carousel-rotation-direction {
    --_direction-animation-play-state: var(--carousel-direction-animation-play-state);
    --_z: calc(var(--_radius) * -1);
    transform: translateZ(var(--_z));
    transform-style: preserve-3d;
    animation: carousel-rotation-reverse calc(var(--carousel-animation-duration) / 2) reverse linear infinite var(--_direction-animation-play-state);
    transition: all var(--carousel-transition-duration) var(--carousel-transition-ease);
  }

  @keyframes carousel-rotation-reverse {
    from {transform: translateZ(var(--_z)) rotateY(0deg);}
    to {transform: translateZ(var(--_z)) rotateY(360deg);}
  }

  @keyframes carousel-rotation-normal {
    from {transform: rotateY(0deg);}
    to {transform: rotateY(360deg);}
  }

  .carousel .carousel-item-wrapper {
    transform-style: inherit;
    width: inherit;
    height: inherit;
    list-style-type: none;
    position: relative;
    animation: carousel-rotation-normal var(--carousel-animation-duration) normal linear infinite var(--carousel-animation-play-state);
    transition: all var(--carousel-transition-duration) var(--carousel-transition-ease);
    margin-top: 40px;
  }

  .carousel .carousel-rotation-direction:has(.carousel-item:hover) {
    --carousel-animation-play-state: paused;
    --_direction-animation-play-state: paused;
  }

  .carousel .carousel-item {
    --_width: var(--_item-width);
    --_height: var(--_item-height);
    --_rotation: calc(360 / var(--_num-elements) * var(--_index) * 1deg);
    left: calc(var(--_radius) - var(--_item-width) / 2);
    top: calc(var(--_radius) - var(--_item-height) / 2);
    transform: rotateY(var(--_rotation)) translateZ(var(--_radius));
    transform-style: inherit;
    width: var(--_width);
    height: 180px;
    transition: all var(--carousel-transition-duration) var(--carousel-transition-ease);
    box-shadow: 0 0 var(--carousel-item-glow-size) transparent;
    position: absolute;
  }

  .carousel .carousel-item:hover {
    box-shadow: 0 0 var(--carousel-item-glow-size) rgb(var(--carousel-item-glow-color-rgb));
    transform: rotateY(var(--_rotation)) translateZ(calc(var(--_radius) * var(--carousel-item-hover-effect)));
  }
  /*Manipulacion de los colores y fondos y contenedores*/
  .carousel .carousel-item a {
    display: block;
    width: inherit;
    height: inherit;
    text-indent: -9999px;
   /* background-color: rgba(var(--carousel-item-empty-color-rgb), 0.5); */
    background-image: var(--_image-url);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: filter var(--carousel-transition-duration) var(--carousel-transition-ease);
    filter: grayscale(5%);
  }

  .carousel .carousel-item:hover a {
    filter: grayscale(0%);
  }

  

  .carousel .carousel-item:hover::before {
    filter: blur(var(--carousel-item-reflection-blur)) grayscale(0%);
  }

  .carousel .carousel-ground {
    --_width: var(--_diameter);
    --_height: var(--_diameter);
    --_rotation: 90deg;
    left: calc(var(--_radius) - var(--_width) / 2);
    top: calc(var(--_radius) - var(--_height) / 2);
    transform: rotateX(var(--_rotation)) translateZ(calc(var(--_item-height) / -2));
    width: var(--_width);
    height: var(--_height);
    border-radius: 50%;
    background: radial-gradient(rgba(var(--carousel-shadow-color-rgb), 0.75) 15% , rgba(var(--carousel-bg-color-rgb), 0) 60%);
    opacity: 0.5;
    transition: opacity var(--carousel-transition-duration) var(--carousel-transition-ease);
    position: absolute;
  }

  .carousel .carousel-item-wrapper:has(.carousel-item:hover) .carousel-ground {
    opacity: 0.75;
  }

  /*Quitar el carrusel cuando este en movile*/

  @media screen and (max-width:600px) {
    .carousel{
      display: none;
    }
    
  }

  /*Galeria de imagenes */

  /*Galeria de fotos de nosotros*/

.subtitulo-Galeria{
  justify-content: center;
  text-align: center;
  color: black;
  font-size: 39px;
}

.gallery{
  background: #f7f5f5;
}

.contenedor-galeria{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 30px;
}

.img-galeria{
  width: 30%;
  display: block;
  margin-bottom: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .6);
  cursor: pointer;
}
.women{
  width: 50%;
  display: block;
  margin-bottom: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .6);
  cursor: pointer;
}

.img-galeria #women{
  width: 40%;
  display: block;
  margin-bottom: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .6);
  cursor: pointer;

}

.imagen-light{
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.534);
  transform: translate(100%);
  transition: transform .2s ease-in-out;
}

.agregar-imagen{
  width: 60%;
  transform: scale(0);
  border-radius: 10px;
  transition: transform .3s .2s;
}

.showImage{
  transform: scale(1);
}

.show{
  transform: translate(0);
}

.close{
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  cursor: pointer;
}



/*Tarjetas giratorias para certificados*/

/* Contenedor de tarjetas */

.titulo-iso-cer{
  color: #1379ff;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.contenedor-flip {
  display: flex;
  flex-wrap: wrap; /* Permite que las tarjetas se ajusten en varias filas si es necesario */
  gap: 20px; /* Espacio entre las tarjetas */
  justify-content: center; /* Centra las tarjetas horizontalmente */
}

/* Tarjetas giratorias para certificados */
.flip-card {
  width: 340px;
  height: 400px;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-card-inner {
  position: relative;
  width: 95%;
  height: 100%;
  border: none;
  border-radius: 10px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
}

.flip-card-front {
  background-color: #f1f1f1;
  overflow: hidden;
}

.flip-card-front img {
  max-height: 100%;
  margin-left: -100px;
}

.flip-card-back {
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 102, 255));
  color: white;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
}

.card-content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.btn {
  padding: 10px 20px;
  background-color: #f1f1f1;
  color: #333;
  text-decoration: none;
  border-radius: 7px;
}

.btn:hover {
  background-color: #333;
  color: #f1f1f1;
}

/*Diseño de los botones desplegables*/
/* Dropdown Button */
.nav__link.dropdown-toggle {
  background-color: #00000000; /* Black background */
  color: #fff; /* White text */
  border-radius: 20px;
  border: none; /* No border */
  cursor: pointer; /* Pointer cursor on hover */
}

/* Dropdown Content (Hidden by Default) */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #000; /* Black background */
  min-width: 60px;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.021);
  z-index: 1;
}

.dropdown-item{
  position: relative;
    color: var(--white-color);
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    display: inline-flex;
    align-items: center;
    transition: opacity .4s;
    padding: 20px;
}

/* Show the dropdown menu on hover */
.nav__link.dropdown-toggle:hover.dropdown-menu {
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-item:hover {
  background-color: #007bff; /* Blue background */
  color: #fff; /* White text */
  border-radius: 20px;
}


/*Galeria de fotos de nosotros*/

@media (max-width: 500px){
  
  .gallery{
    background: #f7f5f5;
    margin-top: 100px;
  }
  
  .contenedor-galeria{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 30px;
    margin-right: 20px;
  }
  
  .img-galeria{
    width: 80%;
    display: block;
    margin-bottom: 15px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .6);
    cursor: pointer;
  }
  
  .imagen-light{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.534);
    transform: translate(100%);
    transition: transform .2s ease-in-out;
  }
  
  .agregar-imagen{
    width: 60%;
    transform: scale(0);
    border-radius: 10px;
    transition: transform .3s .2s;
  }
  
  .showImage{
    transform: scale(1);
  }
  
  .show{
    transform: translate(0);
  }
  
  .close{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    cursor: pointer;
  }
}

  
/*Pantallas FULL HD*/


@media screen and (max-width:1920px){

  /*Section de texto principal: foto carolina e información*/
  .hero img{
    margin-left: -30%;
    width: 570px;
  }

  .hero h1{
    margin-left: 25%;
  }

  .hero p{
    margin-left: 25%;
  }

  .hero hr{
    margin-left: 25%;
    width: 70%;
  }

  /*Section de capacitacion virtual y presencial*/

  .contact img{
    margin-left: 30%;
  }

  .contact h2{
    margin-left: -20%;
  }

  .contact hr{
    margin-left: -20%;
    width: 110%;
  }

  .contact p{
    margin-left: -140px;
  }

  /*Carrusel*/

  .carousel{
    margin-left: 30%;
  }

  
}

@media (max-width: 1360px){
  
  /*Section de texto principal: foto carolina e información*/
  .hero img{
    margin-left: 10%;
  }

  .contact img{
    margin-left: 10%;
    width: 290px;
  }

  .carousel{
    margin-left: 20%;
  }

}

  
  
  
  
  
  
   
  
  
  
  
  
  
  
  
  
  