.header{
    background-color: white;
}
.containerProducts{
    width: 100%;
    height: fit-content;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.cajita{
    width: 15%;
    height: 370px;
    border-radius: 20px;
    box-shadow: .1px .1px 10px 1px rgba(0, 0, 0, 0.164);
    background-color: white;
    display: flex;
    opacity: 0;
    flex-direction: column;
    justify-content: start;
    padding-top: 20px;
    gap: 10px;
    align-items: center;
    transition: .5s ease;
    transition: opacity 0.5s ease, display .5s ease;
}
.names{
    font-family: graphie-bold;
}
.descriptions{
    margin-bottom: 10px;
}
.botonsito{
    border-radius: 5px;
    background-color: var(--verde);
    color: var(--negro);
    text-decoration: none;
    padding: 5px 8px;
    font-family: graphie-regular;
    transition: .3s ease;
}
.botonsito:hover{
    box-shadow: .3px .3px 10px 1px rgba(0, 0, 0, 0.164);
    font-family: graphie-bold;
}
.cajita:hover{
    transform: scale(1.05);
}
.cajita.animacion{
    transition: .5s ease;
    opacity: 1;
}
.texts{
    width: 100%;
    height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.backg{
    background-image: url(../../img/IMG_1068.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: multiply;
    background-position: center center;
    background-color: #393e41d8;
    width: 99%;
    height: 97%;
    border-radius: 20px;
}
.blur{
    display: flex;
    justify-content: start;
    padding-left: 100px;
    align-items: center;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px) grayscale(70%);
}
.typeContainer{
    width: 70%;
    height: 70%;
    border-radius: 20px;
    backdrop-filter: blur(100px);
    background-color: rgba(184, 198, 108, 0.048);
    box-shadow: 3px 3px 10px 3px rgba(184, 198, 108, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.textContainer{
    height: 90%;
    width: 80%;
}
.cajatittle{
    border: 1px solid var(--verde);
    border-radius: 30px;
    padding: 5px;
    backdrop-filter: grayscale(250%);
    margin: auto;
    width: fit-content;
    margin-bottom: 10px;
}
.separadorall{
    width: 70%;
    height: 0;
    margin: auto;
    border: 1px solid var(--verde);
    border-radius: 1px;
    margin-bottom: 10px;
}
#text1T{
    font-size: 3rem;
    color: white;
}
#text2T{
    font-size: 4rem;
}
.imagenProduct{
    object-fit: contain;
    width: auto;
    height: 100%;
}
.containerImage{
    width: fit-content;
    height: 50%;
}