/* Nuevos */
.feature-item:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.justificado {
    text-align: justify;
}

.social-icons {
    display: flex;

}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #198d4d; /* Color de fondo */
    color: #fff; /* Color del ícono */
    margin: 5px;
    text-decoration: none; /* Elimina el subrayado del enlace */
    transition: background-color 0.3s ease; /* Transición suave del color de fondo */
}

.social-icon:hover {
    color: #198d4d; /* Color del ícono */
    background-color: #ffffff; /* Cambia el color de fondo al pasar el ratón */
    border: 2px solid #198d4d; /* Muestra un borde de 2px de ancho con color #198d4d */
}

.custom-link {
    color: inherit; /* Utiliza el color de texto predeterminado */
    text-decoration: none; /* Quita el subrayado predeterminado */
    transition: color 0.3s ease; /* Agrega una transición para suavizar el cambio de color */
}

.custom-link:hover {
    color: #198d4d; /* Cambia el color del texto al pasar el mouse */
    text-decoration: underline; /* Agrega subrayado al pasar el mouse */
}

/* MODAL IMAGENES Inicio ---------------------------------------*/
.modal-imagenes{
    display: inline-block;
    position: relative;
}
.modal-imagenes active{
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
}
.modal-imagenes img{
    z-index: 1;
}
.modal-imagenes.active::after{
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.70);
    z-index: 0;
}
/* MODAL IMAGENES Fin ---------------------------------------*/

/* Linea de Tiempo Inicio ---------------------------------------*/
.timeline-section{
	min-height: 100vh;
	padding: 10px 15px;
}
.timeline-items{
	max-width: 1000px;
	margin:auto;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.timeline-items::before{
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: #FFF;
	left: calc(50% - 1px);
}
.timeline-item{
	margin-bottom: 40px;
	width: 100%;
	position: relative;
}
.timeline-item:last-child{
	margin-bottom: 0;
}
.timeline-item:nth-child(odd){
    padding-right: calc(50% + 30px);
	text-align: right;
}
.timeline-item:nth-child(even){
    padding-left: calc(50% + 30px);
}
.timeline-dot{
	height: 16px;
	width: 16px;
	background-color: #fff;
	position: absolute;
	left: calc(50% - 8px);
	border-radius: 50%;
	top:10px;
}
.timeline-date{
	font-size: 18px;
	color: #fff;
	margin:6px 0 15px;
}
.timeline-content{
    background-color: #fff;
	padding: 30px;
	border-radius: 5px;
}
.timeline-content h3{
    font-size: 20px;
	color: #198d4d;
	margin:0 0 10px;
	text-transform: capitalize;
	font-weight: 500;
}
.timeline-content p{
    color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
}
/* responsive */
@media(max-width: 767px){
	.timeline-items::before{
		left: 7px;
	}
	.timeline-item:nth-child(odd){
		padding-right: 0;
		text-align: left;
	}
	.timeline-item:nth-child(odd),
	.timeline-item:nth-child(even){
		padding-left: 37px;
	}
	.timeline-dot{
		left:0;
	}
}
/* Linea de Tiempo Fin ---------------------------------------*/

/* Mision, Vision y Valores Inicio ---------------------------------------*/
.video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.empresa-container {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 400px;
    text-align: center;
    color: #fff;
}

.datos {
    text-align: left;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}
.datos p{
    font-size: 14px;
    line-height: 1;
}
.datos ol{
    font-size: 14px;
    line-height: 1;
}

@media only screen and (min-width: 768px) {
    .empresa-container {
        right: 0;
        margin-left: 10%;
        transform: translateY(-50%);
    }
}
/* Mision, Vision y Valores Fin ---------------------------------------*/

/*** Caracteristicas Nosotros Inicio ***********************************/
.section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.caracteristica{
    margin: 10px;
}

.item {
    margin: 0px;
    flex: 1 0 25%;
    max-width: 25%;
    text-align: center;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.item:hover {
    border: solid 1px #198d4d;
    background-color: #eef5f1;
}

.item h3 {
    margin-top: 5px;
}

.item p {
    margin-top: 5px;
}

/* Media queries para dispositivos móviles */
@media only screen and (max-width: 768px) {
    .item {
        flex: 1 0 50%; /* Para dispositivos móviles: 2 columnas */
        max-width: 50%; /* Para dispositivos móviles: 2 columnas */
    }
}
/*** Caracteristicas Nosotros Fin ***********************************/

/* Galeria Inicio ---------------------------------------*/
/* Reset del navegador */
* {
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* fin reset del navegador */
.grid-container {
    columns: 5 250px;
    column-gap: 10px;
    padding: .5rem;
}

.grid-item {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.2);
}

.contenido-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .contenido-hover {
    opacity: 0.9;
}

.contenido-hover h4,
.contenido-hover p,
.contenido-hover a {
    margin: 10px;
    text-align: center;
}
/* Galeria Fin ---------------------------------------*/

/* Proyectos Realizados Inicio ---------------------------------------*/
.proyectos .carousel-item {
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.proyectos .carousel-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.proyectos .carousel-item .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.proyectos .carousel-item h1 {
    font-size: 25;
    color: #ffffff;
    margin: 0 0 10px;
    opacity: 0;
}

.proyectos .carousel-item p {
    font-size: 18px;
    margin: 0;
    color: #eeeeee;
    opacity: 0;
}

.proyectos .carousel-item button {
    margin-top: 2%;
}

.proyectos .carousel-item.active h1 {
    animation: fadeInLeft 0.5s ease forwards;
}

.proyectos .carousel-item.active p {
    animation: fadeInRight 1s ease forwards;
}

.proyectos .carousel-item.active button {
    animation: fadeInRight 2s ease forwards;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.proyectos .carousel-controls {
    position: absolute;
    left: 50%;
    bottom: 40px;
    z-index: 2;
    transform: translateX(-50%);
}

.proyectos .carousel-indicators {
    position: relative;
    margin: 0;
}

.proyectos .carousel-indicators li {
    height: 70px;
    width: 70px;
    margin: 0 5px;
    background-position: center;
    background-size: cover;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.proyectos .carousel-indicators li.active {
    border-color: #ffffff;
    transform: scale(1.2);
}

.proyectos .carousel-control-next,
.proyectos .carousel-control-prev {
    height: 20px;
    width: 20px;
    opacity: 1;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.proyectos .carousel-control-next:hover,
.proyectos .carousel-control-prev:hover {
    box-shadow: 0 0 10px #ffffff;
}

.proyectos .carousel-control-next img,
.proyectos .carousel-control-prev img {
    width: 30px;
}

.proyectos .carousel-control-next {
    right: -90px;
}

.proyectos .carousel-control-prev {
    left: -90px;
}

/*responsive*/
@media(max-width: 767px) {

    .proyectos .carousel-control-next,
    .proyectos .carousel-control-prev {
        display: none;
    }

    .proyectos .carousel-indicators li {
        display: none;
    }

    .proyectos .carousel-item h1 {
        font-size: 25px;
    }

    .proyectos .carousel-item p {
        font-size: 20px;
    }

    .proyectos .carousel-item button {
        margin-top: 5%;
    }
}
/* Proyectos Realizados Fin ---------------------------------------*/

/* Puertas Inicio ---------------------------------------*/
.card-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
}

.card-wrapper .img-display {
    overflow: hidden;
}

.card-wrapper .img-showcase {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.card-wrapper .img-showcase img {
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.card-wrapper .img-select {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.card-wrapper .img-item {
    margin: 0 5px;
    cursor: pointer;
}

.card-wrapper .img-item img {
    width: 70px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.card-wrapper .img-item:hover img {
    border-color: #007bff;
}

.card-wrapper .product-content {
    padding: 2rem;
}

.card-wrapper h2 {
    font-size: 1.8rem;
    color: #333;
}

.card-wrapper .social-links a {
    font-size: 18px;
    color: #333;
    margin-right: 10px;
    transition: color 0.3s;
}

.card-wrapper .social-links a:hover {
    color: #007bff;
}
/* Puertas Fin ---------------------------------------*/

/* Blog Inicio ---------------------------------------*/
/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.link-hover {
    transition: 0.5s;
}

.link-hover:hover {
    color: var(--bs-primary) !important;
}


.img-zoomin {
    transition: 0.5s;
}

.img-zoomin:hover {
    transform: scale(1.1);
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-white);
}

.topbar {
    padding: 10px 0;
}

.topbar .top-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

@media (max-width: 1400px) {
    .sticky-top .top-link {
        display: none;
    }
    
}

.topbar .top-link a {
    font-size: medium;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}

#note {
    position: relative;
    animation: noteAnimate 10s infinite;
    animation-timing-function: ease-in-out;
    display: flex;
    align-items: center;
}

@keyframes noteAnimate {
    from {left: -735px;}
    to {left: 735px;}
}
/*** Topbar End ***/
/* Blog Fin ---------------------------------------*/

/* Preguntas Frecuentes Inicio ---------------------------------------*/
:root {
	--primario: #198d4d;
	--gris-claro: #B8B8B8;
	--sombra: 0 0 0 0 rgba(185,185,185, .25);
}

.categorias {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 30px;
}

.categoria {
	cursor: pointer;
	text-align: center;
	padding: 10px;
	border-radius: 10px;
	background: #fff;
	color: var(--gris-claro);
	border: 2px solid transparent;
	transition: .3s ease all;
}

.categoria:hover {
	box-shadow: var(--sombra);
	color: #000;
}

.categoria:hover path {
	fill: var(--primario);
}
.categoria:hover h1 {
	color: #198d4d;
}

.categoria path {
	fill: var(--gris-claro);
	transition: .3s ease all;
}
.categoria h1 {
	color: #B8B8B8;
	transition: .3s ease all;
}

.categoria.activa {
	border: 2px solid var(--primario);
	color: #000;
}

.categoria.activa path {
	fill: var(--primario);
}
.categoria.activa h1 {
    color: #198d4d;
}

/*! =================================================*/
/*! ============= Contenedor Preguntas ============= */
/*! =================================================*/
.contenedor-preguntas {
	display: none;
	grid-template-columns: 1fr;
}

.contenedor-preguntas.activo {
	display: grid;
}

.contenedor-pregunta {
	background: #fff;
	padding: 20px;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	transition: .3s ease all;
	cursor: pointer;
}

.contenedor-pregunta:hover {
	box-shadow: var(--sombra);
}

.contenedor-pregunta.activa {
	border: 2px solid var(--primario);
}
/*! =================================================*/
/*! ============= Responsive Design ============= */
/*! =================================================*/
@media screen and (max-width: 820px){
	.categorias {
		grid-template-columns: 1fr 1fr;
	}

	.categoria {
		padding: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 5px;
	}

	.categoria svg {
		width: 30px;
		margin-right: 10px;
		margin-bottom: 0;
	}
}

@media screen and (max-width: 500px){
	.categorias {
		grid-template-columns: 1fr;
	}
}
/* Preguntas Frecuentes Fin ---------------------------------------*/

/* Descargas Inicio ---------------------------------------*/
    .descargas{
        color: #198d4d !important; /* Mantener el color original del texto al pasar el mouse */
        text-decoration: none !important; /* Mantener la ausencia de subrayado */
    }
/* Descargas Fin ---------------------------------------*/

/* Prodcucto seccion 1 Inicio ---------------------------------------*/
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.hero-wrapper > * {
    height: 400px;
    width: 100%;
    position: relative;
}
.hero-image.active,
.hero-item.active {
    opacity: 1;
    visibility: visible;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s, visibility 1s;
}
.hero-item {
    display: flex;
    align-items: center;
    padding: 32px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s, visibility 1s;
}
.hero-item-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}
.hero-item-description {
    color: var(--gray-400);
    line-height: 1.5;
    margin-bottom: 24px;
}
/* Prodcucto seccion 1 Fin ---------------------------------------*/

/* start: Product */
.product-section {
    padding: 64px 0;
}
.product-tab {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--white);
    margin-left: -16px;
    margin-right: -16px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    margin-bottom: 16px;
    overflow-x: auto;
}
.product-tab > button {
    padding: 16px 24px;
    background-color: var(--gray-50);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-weight: 600;
    color: var(--gray-500);
    margin-right: 12px;
    transition: border-color .2s, background-color .2s, color .2s;
    cursor: pointer;
    white-space: nowrap;
}
.product-tab > button:hover {
    background-color: var(--gray-100);
    color: var(--black);
}
.product-tab > button.active {
    border-color: var(--blue-500);
    background-color: var(--blue-50);
    color: var(--blue-600);
}
[data-tab-item] {
    display: none;
}
[data-tab-item].shown {
    display: block;
}
.product-wrapper {
    position: relative;
}
.product-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    border-radius: 50%;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden;
}
.product-arrow.hidden {
    display: none;
}
.product-arrow.prev {
    left: -16px;
}
.product-arrow.next {
    right: -16px;
}
.product-wrapper:hover .product-arrow {
    opacity: 1;
    visibility: visible;
}
.product-wrapper:hover .product-arrow.prev {
    left: 0;
}
.product-wrapper:hover .product-arrow.next {
    right: 0;
}
.product-arrow:hover {
    color: var(--blue-600);
    background-color: var(--gray-50);
}
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 24px;
}
.product-grid-scroller {
    grid-template-columns: unset !important;
    grid-auto-flow: column;
    grid-auto-columns: 240px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-left: -16px;
    margin-right: -16px;
    padding: 16px;
    scroll-padding: 16px;
}
.product-grid-scroller::-webkit-scrollbar {
    display: none;
}
.product-grid-scroller > * {
    scroll-snap-align: start;
}
.product-grid > * {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .1);
}
.product-item-header {
    position: relative;
}
.product-item-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.product-item-cart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: color .2s, background-color .2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}
.product-item-cart:hover {
    color: var(--blue-600);
    background-color: var(--gray-50);
}
.product-item-body {
    padding: 16px;
}
.product-item-tag {
    margin-bottom: 12px;
}
.product-item-tag > span {
    display: inline-block;
    padding: 4px 8px 4px 16px;
    margin-left: -16px;
    background-color: var(--yellow-400);
    font-weight: 600;
    font-size: 13px;
    border-radius: 0 6px 6px 0;
}
.product-item-title {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 12px;
    transition: opacity .2s;
}
.product-item-title:hover {
    opacity: .8;
}
.product-item-price {
    font-size: 18px;
    font-weight: 800;
}
.product-item-discount {
    margin-top: 4px;
    margin-bottom: 16px;
}
.product-item-discount-percent {
    font-size: 13px;
    font-weight: 800;
    display: inline-block;
    padding: 4px;
    border-radius: 4px;
    background-color: var(--red-50);
    color: var(--red-600);
}
.product-item-discount-price {
    font-size: 13px;
    text-decoration: line-through;
    color: var(--gray-400);
    margin-left: 4px;
}
.product-item-rating {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
}
.product-item-rating > i {
    font-size: 16px;
    color: var(--yellow-400);
    margin-right: 2px;
}
.product-item-sold {
    font-weight: 400;
    color: var(--gray-400);
    margin-left: 4px;
}
/* end: Product */

/* Galeria Productos Lineas Inicio ---------------------------------------*/
.galeria-contenedor {
    overflow: hidden; /* Para evitar que la imagen se salga del contenedor */
    position: relative;
    padding: 0px;  /* Espacio entre imágenes */
    margin-bottom: 20px;
}
.galeria-contenedor a {
    display: block;
}
.galeria-contenedor img {
    width: 100%;
    height: auto;
    transition: transform 0.2s ease; /* Añade transición suave */
}
.galeria-contenedor:hover img {
    transform: scale(1.1); /* Aumenta el tamaño de la imagen */
}
.producto-info {
    margin-top: 20px;
}
.producto-info .producto-datos {
    padding: 5px;
    float: left;
    width: 60%;
}
.producto-info .producto-datos p {
    font-size: 12px;
    line-height: 1%; /* Ajuste del espaciado entre líneas */
}
.producto-info .producto-botones {
    float: right;
    width: 40%;
}
.producto-info .producto-botones .btn {
    padding: 2px !important;
    font-size: 10px;
    color: #FFF;
    margin-bottom: 5px;
}

/* Media Query para pantallas pequeñas */
@media (max-width: 768px) {
    .galeria-contenedor:hover img {
        transform: none; /* Desactiva el efecto de escala en dispositivos móviles */
    }
}
/* Galeria Productos Lineas Fin ---------------------------------------*/



#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

img.animated.pulse {
    animation-duration: 5s;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar Inicio *******************************************************/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 85px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 45px;
    padding: 0;
    color: var(--bs-dark);
    font-weight: 500;
    transition: .5s;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--bs-primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar Fin *******************************************************/


/*** Hero Header Inicio ******************************************************/
.hero-header {
    position: relative;
    margin-top: -85px;
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/bg1.webp) center center no-repeat;
    background-size: cover;
}

.hero-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.hero-header .container {
    position: relative;
    z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
}
/*** Hero Header Fin ******************************************************/

/*** Feature ***/
.feature-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.feature-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Deal ***/
.deal {
    position: relative;
    background: url(../img/bg1.webp) center center no-repeat;
    background-size: cover;
}

.deal::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.deal .bg1-white {
    position: relative;
    z-index: 1;
}

.deal .cdt span {
    display: block;
    font-size: 16px;
    font-style: italic;
    font-weight: 200;
    text-transform: capitalize;
}


/*** How To Use ***/
.how-to-use {
    position: relative;
    background: url(../img/bg1.webp) center center no-repeat;
    background-size: cover;
}

.how-to-use::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.how-to-use .container {
    position: relative;
    z-index: 1;
}

.how-to-use .border {
    border-color: rgba(255, 255, 255, .2) !important;
}


/*** Productos Populares ***/
.product-item {
    transition: transform 0.3s, background-color 0.3s, color 0.3s; /* Agrega una transición para el efecto de zoom, color de fondo y color de texto */
}

.product-item:hover {
    border-width: 0 !important;
    transform: scale(1.1); /* Aplica un efecto de zoom al pasar el mouse */
    box-shadow: 0 0 5px #198d4d;
}

/*** Testimonial ***/
.testimonial {
    position: relative;
    background: url(../img/bg1.webp) center center no-repeat;
    background-size: cover;
}

.testimonial::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.testimonial .testimonial-carousel {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 255, 255, .2) !important;
    margin: 0 auto 20px auto;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--bs-dark);
}


/*** Blog ***/
.blog-item {
    transition: opacity 0.1s;
    opacity: 0.7;
}

.blog-item:hover {
    border-width: 0 !important;
    opacity: 1;
    box-shadow: 0 0 5px #198d4d;
}


/*** Contact ***/
.contact-info-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.contact-info-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Newsletter ***/
.newsletter {
    position: relative;
    background: url(../img/bg1.webp) center center no-repeat;
    background-size: cover;
}

.newsletter::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter .form-control {
    background: rgba(255, 255, 255, .3);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--bs-body);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 10px 0;
    border-top: 3px solid var(--bs-light);
}

.footer .copyright a {
    color: var(--bs-body);
}

.footer .copyright a:hover {
    color: var(--bs-primary);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 3px solid var(--bs-light);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



/* CHATBOX */
/* ESTYLOS Y COLORES */
:root {
	--blue: #198d4d;
	--grey: #F5F5F5;
	--grey-d-1: #EEE;
	--grey-d-2: #DDD;
	--grey-d-3: #888;
	--white: #FFF;
	--dark: #222;
}
/* ESTYLOS Y COLORES */

.chatbox-wrapper {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	width: 4rem;
	height: 4rem;
    z-index: 1;
}
.chatbox-toggle {
	width: 70%;
	height: 70%;
	background: var(--blue);
	color: var(--white);
	font-size: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	cursor: pointer;
	transition: .2s;
}
.chatbox-toggle:active {
	transform: scale(.9);
}
.chatbox-message-wrapper {
	position: absolute;
	bottom: calc(100% + 15px);
	right: 0;
	width: 420px;
	border-radius: .5rem;
	overflow: hidden;
	transform: scale(0);
	transform-origin: bottom right;
	transition: .2s;
}
.chatbox-message-wrapper.show {
	transform: scale(1);
}
.chatbox-message-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--white);
	padding: .75rem 1.5rem;
}
.chatbox-message-profile {
	display: flex;
	align-items: center;
	grid-gap: .5rem;
}
.chatbox-message-image {
	height: 20px;
    margin-right: 10px;
	object-fit: cover;
}
.chatbox-message-name {
	font-size: 1.125rem;
	font-weight: 600;
}
.chatbox-message-status {
	font-size: 12px;
	color: var(--grey-d-3);
}
.chatbox-message-dropdown {
	position: relative;
}
.chatbox-message-dropdown-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.25rem;
	cursor: pointer;
	border-radius: 50%;
}
.chatbox-message-dropdown-toggle:hover {
	background: var(--grey);
}
.chatbox-message-dropdown-menu {
    z-index: 999;
	list-style: none;
	margin: 0;
	position: absolute;
	top: 100%;
	right: 0;
	background: var(--white);
	padding: .5rem 0;
	width: 120px;
	box-shadow: .25rem .25rem 1.5rem rgba(0, 0, 0, .1);
	transform: scale(0);
	transform-origin: top right;
	transition: .2s;
	border-radius: .5rem;
}
.chatbox-message-dropdown-menu.show {
	transform: scale(1);
}
.chatbox-message-dropdown-menu a {
	font-size: .875rem;
	font-weight: 500;
	color: var(--dark);
	text-decoration: none;
	padding: .5rem 1rem;
	display: block;
}
.chatbox-message-dropdown-menu a:hover {
	background: var(--grey);
}
.chatbox-message-content {
	background: var(--grey);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	grid-row-gap: 1rem;
	max-height: 300px;
	overflow-y: auto;
}
.chatbox-message-item {
	width: 90%;
	padding: 1rem;
}
.chatbox-message-item.sent {
	align-self: flex-end;
	background: var(--blue);
	color: var(--white);
	border-radius: .75rem 0 .75rem .75rem;
}
.chatbox-message-item.received {
	background: var(--white);
	border-radius: 0 .75rem .75rem .75rem;
	box-shadow: .25rem .25rem 1.5rem rgba(0, 0, 0, .05);
}
.chatbox-message-bottom {
	background: var(--white);
	margin-top: 10px;
}
.chatbox-message-form {
	display: flex;
	align-items: center;
	background: var(--grey);
	border-radius: .5rem;
	padding: .5rem 1.25rem;
}
.chatbox-message-input {
	background: transparent;
	outline: none;
	border: none;
	resize: none;
	scrollbar-width: none;
}
.chatbox-message-input::-webkit-scrollbar {
	display: none;
}
.chatbox-message-submit {
	font-size: 1.25rem;
	color: var(--blue);
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}
.chatbox-message-no-message {
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
}

/* BREAKPOINTS */
@media screen and (max-width: 576px) {
	.chatbox-message-wrapper {
		width: calc(100vw - 2rem);
	}
	.chatbox-wrapper {
		bottom: 1rem;
		right: 1rem;
	}
}
/* BREAKPOINTS */
/* CHATBOX */