                     :root {
                        --main-color: #bda892;
                        --black-color: #231F20;
                        --border: 0.1rem solid rgba(117, 75, 40, 0.4);
                        --main-color2: #754b28;
                    }
                    
                    .subeler {
                        width: 100%;
                    }
                    
                    .subeler>.sube {
                        aspect-ratio: 3/2;
                        width: 70%;
                        margin: -50px 15% 75px 15%;
                        background-color: white;
                        border-radius: 20px;
                        padding: 20px 30px;
                        content: '';
                        transition: 600ms;
                        opacity: 0;
                    }
                    
                    .subeler>.sube.active {
                        margin: 50px 15% 75px 15%;
                        opacity: 1;
                    }
                    
                    .subeler>.sube>span {
                        font-weight: bold;
                        font-size: 26px;
                        color: var(--main-color);
                        margin-left: 4%;
                    }
                    
                    .subeler>.sube>span>span {
                        font-weight: bold;
                        font-size: 26px;
                        color: var(--main-color2);
                    }
                    
                    .subeler>.sube>img {
                        aspect-ratio: 16/9;
                        background-color: gray;
                        width: 100%;
                        border: var(--main-color2) solid 2px;
                        content: '';
                        border-radius: 10px;
                        margin-top: 10px;
                        transition: 500ms;
                        object-fit: cover;
                    }
                    
                    .subeler>.sube>img:hover {
                        transform: scale(1.02);
                    }
                    
                    .subeler>.sube>iframe {
                        aspect-ratio: 16/9;
                        width: 100%;
                        border: var(--main-color2) solid 2px;
                        border-radius: 10px;
                        margin-top: 10px;
                        margin-bottom: 20px;
                    }
                    
                    .subeler2 {
                        display: flex;
                        justify-content: space-around;
                        padding: 0 5% 0 5%;
                        flex-flow: row wrap;
                    }
                    
                    .subeler2>.sube2 {
                        aspect-ratio: 3/2;
                        width: 30%;
                        background-color: white;
                        border-radius: 20px;
                        margin-top: -50px;
                        margin-bottom: 80px;
                        padding: 20px 30px;
                        content: '';
                        transition: 500ms;
                        opacity: 0;
                    }
                    
                    .subeler2>.sube2.active {
                        margin-top: 0;
                        opacity: 1;
                    }
                    
                    .subeler2>.sube2>span {
                        font-weight: bold;
                        font-size: 26px;
                        color: var(--main-color);
                        margin-left: 4%;
                    }
                    
                    .subeler2>.sube2>span>span {
                        font-weight: bold;
                        font-size: 26px;
                        color: var(--main-color2);
                    }
                    
                    .subeler2>.sube2>img {
                        aspect-ratio: 16/9;
                        background-color: gray;
                        width: 100%;
                        border: var(--main-color2) solid 2px;
                        content: '';
                        border-radius: 10px;
                        margin-top: 10px;
                        transition: 500ms;
                        object-fit: cover;
                    }
                    
                    .subeler2>.sube2>img:hover {
                        transform: scale(1.02);
                    }
                    
                    .subeler2>.sube2>iframe {
                        aspect-ratio: 16/9;
                        width: 100%;
                        border: var(--main-color2) solid 2px;
                        border-radius: 10px;
                        margin-top: 10px;
                        margin-bottom: 20px;
                    }
                    
                    @media (max-width: 1600px) {
                        .subeler2 {
                            display: flex;
                            justify-content: space-around;
                            padding: 0 3% 0 3%;
                            flex-flow: row wrap;
                        }
                        .subeler2>.sube2 {
                            aspect-ratio: 3/2;
                            width: 40%;
                            background-color: white;
                            border-radius: 20px;
                            margin-bottom: 80px;
                            padding: 20px 30px;
                            content: '';
                        }
                    }
                    
                    @media (max-width: 500px) {
                        .subeler>.sube {
                            aspect-ratio: 3/2;
                            width: 90%;
                            margin: 50px 5% 75px 5% !important;
                            background-color: white;
                            border-radius: 20px;
                            padding: 20px 30px;
                            content: '';
                        }
                        .subeler2 {
                            display: flex;
                            justify-content: space-around;
                            padding: 0;
                            flex-flow: row wrap;
                        }
                        .subeler2>.sube2 {
                            aspect-ratio: 3/2;
                            width: 45%;
                            background-color: white;
                            border-radius: 20px;
                            margin-bottom: 30px;
                            padding: 5px 15px;
                            content: '';
                        }
                        .subeler>.sube>span {
                            font-weight: bold;
                            font-size: 16px;
                            color: var(--main-color);
                            margin-left: 2%;
                        }
                        .subeler>.sube>span>span {
                            font-weight: bold;
                            font-size: 18px;
                            color: var(--main-color2);
                        }
                        .subeler2>.sube2>span {
                            font-weight: bold;
                            font-size: 16px;
                            color: var(--main-color);
                            margin-left: 2%;
                        }
                        .subeler2>.sube2>span>span {
                            font-weight: bold;
                            font-size: 18px;
                            color: var(--main-color2);
                        }
                    }