/* Nav y back */
.lawbusiness{
  background-color: white !important;
  color: #00442b;
  box-shadow: 0 -5px 10px rgba(0,68,43,1), 0 5px 10px rgba(0,68,43,1);
}
.linknavbusiness{
  color: #00442b;
  text-decoration: none;
}
.linknavbusiness:hover{
  color: #00442b;
  text-decoration: none;
}
.logohol{
  max-height: 70px;
  width: auto;
}
.bg-acordeon{
  background-color: #00442b;
  color: white;
}
.bg-retail {
    height: 65vh;
    background-image: url("../img/retailcomint.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
}
.bg-black{
    background-color: black;
    opacity: 30%;
}
.bg-business{
background-color: #00442b;
-webkit-box-shadow: 13px 11px 20px 0px rgba(0,0,0,0.59);
box-shadow: 13px 11px 20px 0px rgba(0,0,0,0.59);
}
.bg-white{
-webkit-box-shadow: 13px 11px 20px 0px rgba(0,0,0,0.59);
box-shadow: 13px 11px 20px 0px rgba(0,0,0,0.59);
}
.bg-line{
  -webkit-box-shadow: 33px 5px 0px -26px rgba(0,68,43,1);
  -moz-box-shadow: 33px 5px 0px -26px rgba(0,68,43,1);
  box-shadow: 33px 5px 0px -26px rgba(0,68,43,1);
}

/* Textos Especiales de CSS */
.tituloswhite{
color: white;
font-weight: bolder;
padding-top: 30px;
}
.titulosblack{
font-weight: bolder;
padding-top: 30px;
color: #00442b;
}

/* Textos en Pagina web*/
.retai h1{
  padding-top: 30px;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
  opacity: 0; /* Inicialmente, el texto estará invisible */
  animation: aparecer 3s forwards; /* Utiliza la animación llamada "aparecer" durante 2 segundos y mantiene el último estado */
  }
.retai p{
  padding-bottom: 50px;
  font-size: 2rem;
  margin-bottom: 50px;
  text-align: justify;
  color: white;
  opacity: 0; /* Inicialmente, el texto estará invisible */
  animation: aparecer 3s forwards; /* Utiliza la animación llamada "aparecer" durante 2 segundos y mantiene el último estado */
  }
.wow{
  opacity: 0; /* Inicialmente, el texto estará invisible */
  animation: aparecer 3s forwards; /* Utiliza la animación llamada "aparecer" durante 2 segundos y mantiene el último estado */
}
.wowinf p{
font-size: 1.3rem;
margin: 50px;
text-align: justify;
color: white;
}
.reutex{
  padding-left: 80px;
  padding-right: 80px;
}
.wowinf h1{
padding-top: 30px;
padding-bottom: 30px;
font-size: 2.3rem;
margin: 50px;
color: white;
}
.wow h1{
  padding-top: 30px;
  font-size: 2.3rem;
  color: #00442b;
  margin: 50px;
  }
.wow p{
padding-top: 20px;
font-size: 1.3rem;
margin: 50px;
text-align: justify;
color: #00442b;
}
.wow li{
  padding-top: 20px;
  font-size: 1.3rem;
  text-align: justify;
  color: #00442b;
}
.textoimg p{
  font-size: 1.3rem;
  text-align: center;
  color:  white;
}
/* Links a las demas paginas */


/*Imagenes*/
.pimg{
padding: 30px;
}
.imgred{
  width: 30%; /* Ancho deseado */
  height: auto; /* Altura deseada */
  margin-left: auto;
  margin-right: auto;
}
.imagenidioma{
  width: 60%; /* Ancho deseado */
  height: auto; /* Altura deseada */
  margin-left: 20%;
}
.cardretail{
  margin: 100px;
  width: 700px;
  opacity: 90%; /*cambiar de ser necesario*/
}
.cardretail img{
  width: 50%; /* Ancho deseado */
  height: auto; /* Altura deseada */
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}

/* 180 Card Business */
.container-card{
  padding-bottom: 30px;
}
.flip-card {
  perspective: 1000px;
  width: auto; /* Ajusta el ancho según tus necesidades */
  height: 350px; /* Ajusta la altura según tus necesidades */
  margin: 0 auto; /* Centra las tarjetas en la fila */
  border-radius: 10px;

}
.flip-card-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s;
  padding-bottom: 30px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.flip-card-front {
  background-color: #ffffff; /* Color del frente de la tarjeta */
  color: #00442b;
}
.flip-card-back {
  background-color: #00442b; /* Color de la parte trasera de la tarjeta */
  color: white; /* Color del texto en la parte trasera de la tarjeta */
  font-size: 1rem;
  transform: rotateY(180deg);
}


/*Prueba Boton*/
.btn-flotante {
	border-radius: 10px; /* Borde del boton */
	background-color: white; /* Color de fondo */
	padding: 18px 30px; /* Relleno del boton */
	position: fixed;
  width: 100px; /* Ajusta el ancho deseado */
  text-align: center; /* Centra el contenido del botón horizontalmente */
  line-height: 50px; /* Centra el contenido del botón verticalmente */
	bottom: 40px;
	right: 150px;
	transition: all 300ms ease 0ms;
	box-shadow: 10px 10px 23px -2px rgba(0,0,0,0.76);
	z-index: 99;
  text-decoration: none;
}
.btn-flotante:hover {
  color: white;
	box-shadow: 10px 10px 23px -2px rgba(0,0,0,0.76);
	transform: translateY(-7px);
}
/*Boton flotante Idioma*/
.btn-flotante-idioma {
	border-radius: 10px; /* Borde del boton */
	background-color: white; /* Color de fondo */
	padding: 18px 30px; /* Relleno del boton */
	position: fixed;
  width: 100px; /* Ajusta el ancho deseado */
  text-align: center; /* Centra el contenido del botón horizontalmente */
  line-height: 50px; /* Centra el contenido del botón verticalmente */
	bottom: 40px;
	right: 40px;
	box-shadow: 10px 10px 23px -2px rgba(0,0,0,0.76);
	z-index: 99;
  text-decoration: none;
}

/*Rango Dinamico*/
@media (max-width: 1280px) {
  img.img-fluid {
      width: 100%;
      margin: 0 auto;
  }
  .flip-card-back {
    font-size: .7rem;
  }
  }
@media (max-width: 992px) {
img.img-fluid {
    width: 100%;
    margin: 0 auto;
}
.flip-card-back {
  font-size: .4rem;
}
}

@media (max-width: 767px) {
img.img-fluid {
    width: 100%;
    margin: 0 auto;
    display: block;
}
.flip-card-back {
  font-size: .9rem;
}
.imagenidioma{
  width: 38%; /* Ancho deseado */
  height: auto; /* Altura deseada */
  margin-left: 30%;
}

}
@media only screen and (max-width: 600px) {
  .btn-flotante {
   font-size: 14px;
   padding: 12px 20px;
   bottom: 20px;
   right: 100px;
   width: 70px; /* Ajusta el ancho deseado */
 }
 .btn-flotante-idioma{
   font-size: 14px;
   padding: 12px 20px;
   bottom: 20px;
   right: 20px;
   width: 70px; /* Ajusta el ancho deseado */
 }
}
@media (max-width: 576px) {
img.img-fluid {
    width: 100%;
    margin: 0 auto;
    display: block;
}
.tituloswhite {
    font-size: 1.1rem;
}
}

@media (max-width: 380px) {
img.img-fluid {
    width: 100%;
    margin: 0 auto;
    display: block;
}
.tituloswhite {
    font-size: 0.8rem;
}
}

.modal-xl {
    max-width: 90%;
}
.text-container {
    padding: 2rem;
}

.custom-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.custom-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.custom-year {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.custom-button {
    font-size: 1.5rem;
    padding: 1rem 2rem;
}

.custom-modal-content {
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    background-image: url('/static/img/retimg.jpg');
    background-size: cover;
    width: 100%;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.custom-btn-color {
    background-color: #005137;
    color: white;
}



@media (min-width: 1200px) {
    .custom-subtitle {
        font-size: 2rem;
    }
    .custom-title {
        font-size: 3.5rem;
    }
    .custom-year {
        font-size: 6rem;
    }
    .custom-button {
        font-size: 2rem;
        padding: 1.5rem 3rem;
    }
    .modal-close {
        font-size: 2rem;
    }
}
/*Animaciones*/

@keyframes aparecer {
  from {
    opacity: 0; /* Empieza con una opacidad de 0 (invisible) */
    transform: translateY(20px); /* Puedes agregar transformaciones, como desplazar el texto hacia abajo */
  }
  to {
    opacity: 1; /* Termina con una opacidad de 1 (totalmente visible) */
    transform: translateY(0); /* Termina en su posición original */
  }
}
.custom-button {
    color: white;
    background-color: #005137;
}


.modal-close-custom {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 1;
}


.lastret{
    margin-bottom: 50px;
}
