#all{
    overflow: hidden;
    margin-top: 80px;
}

#all h1{
    font-family: 'Mukta', sans-serif;
    color: var(--text-color);
}

#all h2{
    font-family: 'Mukta', sans-serif;
    color: var(--text-color);
}

#all p{
    font-family: 'Mukta', sans-serif;
    color: var(--text-color);
}

#footer {
    background-color: var(--footer-bg);
}

#footer h2{
    color: var(--footer-text) !important;
}

#footer p{
    color: var(--footer-text) !important;
}

.title-curse{
    margin-top: 25px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--text-color);
    opacity: 0;
    text-align: center;
    padding: 10px 0px;
    box-sizing: content-box;
    line-height: 1.2;

    transition: all 4s ease;
}

@media (max-width: 530px){
    .title-curse{
        padding: 25px 10px;
        margin: 15px 0;
        margin-top: 30px;
        font-size: 40px;
        text-align: left;
    }
}



.curse-container-top{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 100px 100px 100px;
    flex-shrink: 0;
    line-height: 1.2;
}

.curse-container-top-img{
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    
    border-radius: 30px;
    flex-shrink: 0;

    -webkit-box-shadow: 0px 0px 9px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 9px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 9px 0px rgba(255,255,255,1);

}

.curse-container-top-img img{
    width: 100%;
    filter: sepia() contrast(1.5);

    transition: all 2s ease;
}

.curse-container-top-info{
    position: absolute;
    width: 75%;
    height: 210px;
    bottom: -30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    flex-grow: 0;
    backdrop-filter: blur(0px);

    transition: all 2s ease;
}

.curse-container-top-info-individual{
    opacity: 0;
    transform: translateY(100px);
    background-color: var(--curse-content-back) !important; 
    transition: all 1.5s ease;
}

.curse-container-top-info-individual-sides{
    height: 100%;
    width: 470px;
    background-color: var(--curse-content-back) !important; 
    padding: 15px 10px 15px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.curse-container-top-info-individual-center{
    height: 100%;
    width: 400px;
    background-color: var(--curse-content-back) !important; 
}

.curse-container-top-info-individual-sides h2{
    position: relative;
    font-size: 38px;
    color: white;
    height: 60px;
    width: 80%;
    display: flex;
    align-items: center;
}

.curse-container-top-info-individual-sides p{
    width: 75%;
    font-size: 22px;
    color: white;
}

#curse-container-top-info-individual-side-left-h2:before{
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background-color: rgb(36, 36, 36);
    bottom: 0;
    left: -10px;
}


.curse-container-top-info-individual-center{
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#curse-container-top-info-individual-center-first-h2{
    font-size: 34px;
    color: white;
    text-align: center;
}

#curse-container-top-info-individual-center-last-h2{
    position: relative;
    font-size: 36px;
    color: white;
    text-align: center;
    padding: 10px 0;
}

#curse-container-top-info-individual-center-last-h2:before{
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background-color: rgb(36, 36, 36);
    bottom: 0;
    left: 0;
}

#curse-container-top-info-individual-center-last-h2:after{
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background-color: rgb(36, 36, 36);
    top: 0;
    left: 0;
}




#curse-container-top-info-individual-side-right{
    align-items: flex-end;
    padding: 15px 30px 15px 10px;
}

#curse-container-top-info-individual-side-right h2{
    position: relative;
    justify-content: flex-end;
}

#curse-container-top-info-individual-side-right p{
    text-align: right;
}

#curse-container-top-info-individual-side-right-h2:before{
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background-color: rgb(36, 36, 36);
    bottom: 0;
    left: 10px;
}


@media (max-width: 1510px){
    #curse-container-top-info-individual-center-last-h2{
        font-size: 30px;
    }

    #curse-container-top-info-individual-center-first-h2{
        font-size: 30px;
    }

    .curse-container-top-info-individual-center{
        justify-content: space-around;
    }
}

@media (max-width: 1200px){

    #curse-container-top-info-individual-center-last-h2{
        font-size: 36px;
    }

    #curse-container-top-info-individual-center-first-h2{
        font-size: 34px;
    }

    #curse-container-top-info-individual-side-right{
        align-items: center;
        padding: 15px 10px 15px 10px;
    }

    #curse-container-top-info-individual-side-left{
        align-items: center;
        padding: 15px 10px 15px 10px;
    }

    #curse-container-top-info-individual-side-left h2{
        justify-content: center;
    }

    #curse-container-top-info-individual-side-right h2{
        justify-content: center;
    }

    #curse-container-top-info-individual-side-right p{
        text-align: center;
    }

    #curse-container-top-info-individual-side-left p{
        text-align: center;
    }

    #curse-container-top-info-individual-side-right-h2:before{
        left: 0;
    }

    #curse-container-top-info-individual-side-left-h2:before{
        left: 0;
    }


    .curse-container-top-info{
        flex-direction: column;
        width: auto;
        bottom: auto;
        overflow: hidden;
        height: auto;
        flex-shrink: 1;
        justify-content: center;
        top: 50%;
        transform: translateY(-50%);
        margin: 0 70px;
    }

    .curse-container-top-info-individual-center{
        width: auto;
        max-width: 470px;
        height: 240px;
        flex-shrink: 1;
        background-color: rgba(142, 142, 142, 0.901);
    }

    .curse-container-top-info-individual-sides{
        width: auto;
        max-width: 470px;
        height: 240px;
        flex-shrink: 1;
        background-color: rgba(142, 142, 142, 0.901);
    }

    .curse-container-top-img{
        height: 900px;
        position: relative;
    }

    .curse-container-top-img img{
        position: absolute;
        width: auto;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* Centra la imagen */
    }

    .curse-container-top{
        padding: 50px;
    }
}

@media (max-width: 780px){
    .curse-container-top{
        padding: 30px 0px 30px 0px;
    }

    .curse-container-top-img{
        border-radius: 0;
    }
}

@media (max-width: 470px){
    #curse-container-top-info-individual-center-last-h2{
        font-size: 30px;
    }

    #curse-container-top-info-individual-center-first-h2{
        font-size: 30px;
    }

    .curse-container-top-info-individual-sides p{
        width: 90%;
    }

}

/*-------------------End top-----------------*/

.curse-container-medium{
    height: 100%;
    width: 100%;
    padding-top: 100px;
    display: flex;
    justify-content: center;

}

.curse-container-medium-inter{
    width: 60%;
    background-color: var(--card-bg);
    border-radius: 30px;
    padding: 0 50px;

    -webkit-box-shadow: 0px 0px 9px 0px var(--shadow-color-strong);
    -moz-box-shadow: 0px 0px 9px 0px var(--shadow-color-strong);
    box-shadow: 0px 0px 9px 0px var(--shadow-color-strong);

}

.curse-container-medium-inter h2{
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: var(--text-color);
}

.curse-container-medium-inter-container-individual-all{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 50px;

}

.curse-container-medium-inter-individual{
    background-color: var(--curse-content-back) !important; 
    height: 160px;
    width: 260px;
    flex-shrink: 0;

    transition: all 1.5s cubic-bezier(0, 0.1, 0.5, 0.8);
}

.curse-container-medium-inter-individual p {
    width: 100%;
    height: 100%;
    padding: 30px 20px 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 20px;
    opacity: 0;
    line-height: 1.2;
    background-color: var(--curse-content-back);

    transition: all 1s ease;
}


@media (max-width: 1200px){
    .curse-container-medium{
        padding: 50px 50px 0 50px; 
       
    }

    .curse-container-medium-inter{
        width: 100%;
        padding: 20px;
        overflow: hidden; 
        overflow-x: scroll;
    }

}

@media (max-width: 470px){
    .curse-container-medium{
        padding: 50px 30px 0 30px;  
    }
}



.curse-container-bottom{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.curse-container-bottom-inter{
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.curse-container-bottom-prices{
    height: 100%;
    width: 45%;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 0 50px 0 50px;

    -webkit-box-shadow: 0px 0px 15px -6px var(--shadow-color-strong);
-moz-box-shadow: 0px 0px 15px -6px var(--shadow-color-strong);
box-shadow: 0px 0px 15px -6px var(--shadow-color-strong);
}

.curse-container-bottom-prices h3{
    height: 90px;
    width: 100%;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
}

.curse-container-bottom-prices-top{
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 310px;
}

.curse-container-bottom-prices-top-individual{
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
}

.curse-container-bottom-prices-top-individual-last{
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
}

.curse-container-bottom-prices-top-circle{
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    flex-shrink: 0;
    flex-wrap: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 700ms ease;
    z-index: 9;
}

.curse-container-bottom-prices-top-circle-first{
    background-color: yellow;
}

.curse-container-bottom-prices-top-circle-active{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid yellow;
    flex-shrink: 0;
    display: flex;
    opacity: 0;
    transition: all 700ms ease;
}

.curse-container-bottom-prices-top-circle-active-first{
    display: flex;
    opacity: 1;
    transition: all 700ms ease;
}




.curse-container-bottom-prices-top-individual:before{
    position: absolute;
    content: '';
    background-color: rgba(199, 199, 199, 0.884);
    height: calc(100% + 15px);
    width: 2.2px;
    left: 9px;
    z-index: 9;
}

.curse-container-bottom-prices-top-individual h2{
    font-size: 28px;
    transform: translateY(-5px);
    cursor: pointer;
    height: 40px;
}

.h2-prices{
    font-size: 28px;
    transform: translateY(-5px);
    cursor: pointer;
    text-align: left;
}

.curse-container-bottom-prices-top-individual-content p{
    padding: 0;
    font-size: 20px;
    box-sizing: border-box;
    overflow: hidden;
    height: 100%;
    max-height: 0;
    opacity: 0;
    

    transition: all 1.5s ease;
}


.curse-container-bottom-prices-top-individual-content-first p{
    padding: 10px 0 30px 15px;
    opacity: 1;
    max-height: 300px;
}

.curse-container-bottom-prices-img{
    overflow: hidden;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: contrast(5);
    z-index: 999;
    border-radius: 15px;

    transition: all 800ms ease;
}

.curse-container-bottom-prices-img img{
    height: 100%;
    border-radius: 10px;
}


.curse-container-bottom-prices-bottom{
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.curse-container-bottom-prices-bottom p{
    font-size: 22px;
    text-align: center;
}

.curse-container-bottom-prices-bottom-wpp-container{
    height: 50px;
    width: 70%;
    background-color: var(--curse-content-back);
    cursor: pointer;
    border-radius: 20px;
    opacity: 0;

    transition: all 500ms ease;
}

.curse-container-bottom-prices-bottom-wpp-container a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.curse-container-bottom-prices-bottom-wpp-container i{
    font-size: 40px;
    color: white;
}

[data-theme="light"] .curse-container-bottom-prices-bottom-wpp-container i {
    color: black;
}

.curse-container-bottom-testimony{
    position: relative;
    height: 100%;
    width: 45%;
    background-color: var(--card-bg);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 15px;
    z-index: 6;

    -webkit-box-shadow: 0px 0px 15px -6px var(--shadow-color-strong);
    -moz-box-shadow: 0px 0px 15px -6px var(--shadow-color-strong);
    box-shadow: 0px 0px 15px -6px var(--shadow-color-strong);
}

.curse-container-bottom-testimony video{
    width: auto;
    filter:brightness(0.3) blur(1px);

    transition: all 1s ease;
}

.curse-content-info-top-testimony-volumeOn{
    position: absolute;
    height: 120px;
    width: 120px;
    background-color: rgba(255, 255, 255, 0.555);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 40;
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 45px;

    transition: all 400ms ease;

}

.fa-volume-xmark{
    opacity: 0;
    position: absolute;
}



@media (max-width: 1650px){
    .curse-container-bottom-inter{
        width: 70%;
    }
}

@media (max-width: 1370px){
    .curse-container-bottom-prices-top{
        height: 320px;
    }
}

@media (max-width: 1200px){
    .curse-container-bottom-prices-top{
        height: 320px;
    }

    .curse-container-bottom-inter{
        width: 100%;
        padding: 0 50px;
    }

    .curse-container-bottom-prices{
        width: 48%;
    }

    .curse-container-bottom-testimony{
        width: 48%;
    }

    .curse-container-bottom-testimony video{
        width: 150%;
    }
}

@media (max-width: 960px){
    .curse-container-bottom-inter{
        flex-direction: column;
        align-items: center;
        gap: 30px;
        height: 100%;
    }

    .curse-container-bottom-prices{
        width: 70%;
    }

    .curse-container-bottom-testimony{
        width: 70%;
    }

}

@media (max-width: 700px){
    .curse-container-bottom-prices{
        width: 100%;
    }

    .curse-container-bottom-testimony{
        width: 100%;
    }
}

@media (max-width: 545px){
    .curse-container-bottom-prices-top {
        height: 350px;
    }
}

@media (max-width: 470px){
    .curse-container-bottom-inter{
        padding: 0 30px;
    }
}

@media (max-width: 450px){
    .curse-container-bottom-prices{
        padding: 0 30px 0 30px;
    }

    .curse-container-bottom-prices-bottom-wpp-container{
        width: 90%;
    }

    .curse-container-bottom-prices-bottom-wpp-container a{
        gap: 10px;
    }
}

@media (max-width: 400px){
    .curse-container-bottom-prices-top {
        height: 380px;
    }
}








