*{
    margin: 0;
    padding: 0;
}

.intro{
    font-size: 2rem;
    text-align: center;
    margin: 30px 0;
    font-weight: bold
}

h1{
    color: #b44e00;
}

.inner{
    color: black;
    font-size:x-large;
}

hr{
    border: none;
    background-color: #b44e00;
    height: 2px;
    width: 240px;
    margin: 30px auto;
}

.container{
    display: flex;
    justify-content: center;
    padding: 0;
}

.accordion{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0;
}

.accordion li{
    list-style: none;
    width: 100%;
}

label{
    background-color: #b44e00cf;
    color: #fff;
    border-radius: 10px;
    margin: 10px;
    cursor: pointer;
}

.accordion li label{
    display: flex;
    align-items: center;
}

label::before{
    content: '+';
    font-size: 24px;
    font-weight: 600;
}

input[type='radio']{
    display: none;
}

.accordion .acontent{
    color: #555;
    max-height: 0;
    overflow: hidden;
}

.accordion input[type='radio']:checked + label + .acontent{
    max-height: 100%;
}

.accordion input[type='radio']:checked + label::before{
    content: '-';
}

.card-group{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden;
    }

.card{
    height: 550px;
    margin: 0 10px;
    box-sizing: border-box;
    padding: 10px;
}

.card-body{
    width: 100%;
    height: 100px;
}

.btn-card-container{
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.btn-card{
    transition: .5s all;
}

.btn-card:hover{
    border: none;
    background-color: #b44e00;
    scale: 1.1;
}
.i-container{
    height: 300px;
    background-color: black;
}

.i-card{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.extensivel{
    margin: 15px 0;
}

@media(max-width:365px) {
    .card{
        width: 300px;
        height: 500px;
        margin: 0 10px;
        box-sizing: border-box;
        padding: 10px;
    }

    .i-container{
        height: 200px;
        background-color: black;
    }
    
    .i-card{
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
}