.section4{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: url("../img/bgdesk/11.png")no-repeat ;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    min-height: 90vh;
    padding-top: 10vh;
    padding-top: 20vh;
    padding-bottom: 12vh;
}
.section4::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.accordion{
    max-width: 800px;
    z-index: 2;
}

.accordion .container{
    position: relative;
    margin: 20px 20px;
    border: 1px solid #cdab7c48;;
}

.accordion .container .label{
    position: relative;
    padding: 10px;
    padding-right: 30px;
    background: var(--beje);
    color: black;
    cursor: pointer;

}

.accordion .container .label::before{
    content: "+";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    font-size: 1.3em;
}

.accordion .container .content{
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    color: rgb(197, 197, 197);
    height: 0;
    overflow: hidden;
    transition: .5s;
}

.accordion .container .content.big{
    line-height: 26px;
}


.accordion .container.active .content{
    height: 60px;
    padding: 6px 10px;
    line-height: 26px;
    text-align: justify;
}

.accordion .container.active .content.big{
    height: 100px;
}

@media screen and (max-width:820px){
    .accordion .container.active .content{
        height: 100px;
        padding: 6px 10px;
        line-height: 26px;
    }
    
    .accordion .container.active .content.big{
        height: 140px;
    }
}



@media screen and (max-width:500px){
    .accordion .container.active .content{
        height: 140px;
        padding: 5px 7px;
        line-height: 26px;
    }
    
    .accordion .container.active .content.big{
        height: 210px;
    }

    .section4{
        display: flex;
        align-items: center;
        justify-content: space-around;
        background-image: url("../img/bgmob/10.png");
        background-size: cover;
        background-size: cover;
        background-position: center top;
        background-attachment: fixed;
    }
    .section4::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }
    .bannermob{
        width: 100%;
        height: 50%;
        background: url("../img/2.png")no-repeat center center;
        background-size: contain;
        margin-top: 40vw;
    }

    .section4 .box{
        padding: 1% 1% 1.5% 1%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 300px;
        height: 30vh;
        color: white;
        border: 1px solid var(--beje);
        z-index: 3;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, -50%);
        box-shadow: 2px 6px 4px 4px rgba(0, 0, 0, 0.475);
    }
}