.collection{/* 
    height: 100vh; */
    background-color: #21201F;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:100px 0;
}
.collection .content{
    height: 28rem;
    width: 25rem;
    background-color: #1b1f2a;
    border: .2rem solid rgba(255,255,255,.1);
    border-radius: .7rem;
    border-bottom: .4rem solid #FF9700;
    border-top: .4rem solid #FF9700;
    overflow: hidden;
    /* padding: .2rem; */
}

.content img{
    width: 100%;
    border-bottom-left-radius: .6rem;
    border-bottom-right-radius: .6rem;
}
.text-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.text-content h3{
    font-size: 1.7rem;
    font-weight: 500;
}
.text-content p{
    max-width: 22rem;
    font-size: .8rem;
    font-weight: 400;
    text-align: center;
}
.btn{
    background-color: #FF9700;
    padding: .2rem;
    border: 2px solid #FF9700;
    outline: none;
    font-size: .8rem;
    border-radius: .5rem;
    margin: 1rem 0;
    cursor: pointer;
}

.paragraph-carousel{
    color: #fff;
}

.img-slider{
    width: 100%;
    text-align: center;
}

.img-slider img{
    width: 53%;
}

@media(min-width: 320px){
    .collection .content {
        width: 20rem;
    }
}

@media(max-width: 425px){

    .collection {
        min-height: 123vh;
        background-color: #21201F;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


@media(min-width: 768px){
    .collection .content {
        width: 25rem;
    }
}