.section-4 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background-color: #fffff7;
    padding-top: 4rem;
}

.healings-wrapper-1 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    padding-bottom: 2rem;
}

.healing {
    width: 30rem;
    background-color: #fffff7;
    padding: 1rem 1rem 2rem 1rem;
    box-shadow: 1rem 1rem 2rem #fffff7, -1rem -1rem 2rem #f6eedc;
    position: relative;
    opacity: 0.8;
    transition: opacity 0.5s;
}

.healing:hover {
    opacity: 1;
    cursor: pointer;
}

.healing-img {
    width: 100%;
    border-radius: 0.5rem;
}

.healing-name {
    font-size: 3rem;
    font-weight: 400;
    color: #b48811;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

#trademark {
    font-size: 1.5rem;
    font-weight: 100;
    padding-left: 1rem;
}

.benefits-healing {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0 2rem 0;
}

.benefits-healing li {
    font-size: 1.9rem;
    font-weight: 500;
    color: #000;
    padding-top: 3rem;
}

.story-btn {
    width: 4rem;
    height: 4rem;
    background-color: #b48811;
    position: absolute;
    top: -1rem;
    right: -1rem;
    border-radius: 5rem;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 50;
    transition: transform 0.5s;
}

.change-story-btn {
    transform: rotate(405deg);
}

.story-btn-line {
    width: 100%;
    height: 0.1rem;
    background-color: #fffff7;
}

.story {
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 247, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    transform: scale(0);
    transform-origin: top right;
    border-radius: 50rem 0 50rem 50rem;
    transition: all 0.5s;
}

.change.story {
    transform: scale(1);
    border-radius: 0;
}

.story-heading {
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 2rem;
}

.story-paragraph {
    font-family: "Alegreya Sans";
    font-size: 1.8rem;
    font-weight:450;
    color: #000000;
    text-align: justify;
    letter-spacing: 0;
    text-indent: 1rem;
}

@media (max-width: 1536px) {
    .healings-wrapper-1 {
        flex-wrap: wrap;
    }

    .healings-wrapper-2 {
        flex-wrap: wrap;
    }

    .healings-wrapper-3 {
        flex-wrap: wrap;
    }
}
@media (max-width: 1024px){
    .healings-wrapper-1 {
        flex-wrap: wrap;
      
    }

    .healings-wrapper-2 {
        flex-wrap: wrap;
    }

    .healings-wrapper-3 {
        flex-wrap: wrap;
    }
    
    .healing{
        margin-bottom: 10rem;
        padding-bottom: 2rem;
    }
    
       
} 

@media (max-width: 800px) {
    .healings-wrapper-1 {
        flex-direction: column;
        flex-wrap: wrap;
      
    }

    .healings-wrapper-2 {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .healings-wrapper-3{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
       
    }
    
    .healing{
       
        margin-bottom: 10rem;
        padding-bottom: 2rem;
    }
    
       
}

@media (max-width: 500px){
    .section-4{
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 400px){
    .section-4{
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 360px){
    .healings-wrapper-1 {
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
      
    }

    .healings-wrapper-2 {
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
    }

    .healings-wrapper-3{
        display: flex;
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
       
    }
   

}  

    


