.fondo , .fondo-card{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.fondo-card{
    height:200px;
}

@media screen and (min-width:1440px){
    .fondo-card{
        height: 250px;
    }
}
@media screen and (max-width:576px){
    .fondo-card{
        height: 150px;
    }
}
.search-container{
    max-width: 400px;
}

.search-container > div{
    box-shadow: -1px 2px 0px #0006;
    border-radius: 10px;
}

.search-container button{
    border-radius:10px;
    border:none
}

.search-container input{
    border-radius: 10px 0 0 10px;
    border:none;
}


.item-help{
    width:100%;
	box-shadow:0px 1px 5px #0006;
	margin-top:3rem;
	border-radius:15px
}

.item-help img{
    width:120px;
    height:140px;
	object-fit:contain
}

.pointer{
	cursor:pointer
}

.fondo-cards{
    border-radius: 15px;
    transition:all 500ms;
    background-color:#C7D6F2;
}


.questions-container-desktop, .questions-container-mobile{
    background: #C7D6F2;
    border-radius: 15px;
}


.question-item{
    border-radius:10px;
}

.accordion-item , .accordion-item  button{
    border-radius:10px!important
}

.accordion-body > p{
    margin:0
}


.triangulo, .triangulo-mobile {
    width: 0;
    height: 0;
    top:-30px;
    left:36px;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 50px solid #C7D6F2;
}

@media screen and (max-width:576px){
    .item-help{
        width:100%;
        margin-top:1rem
    }
    .item-help img{
        width:100px;
        height:120px;
    }
}
.list-cards{
    display:grid
}
@media screen and (min-width:992px) {
    .list-cards{
        grid-template-columns: repeat(6,1fr);
        column-gap:2rem
    }
}
@media screen and (min-width:768px) and (max-width:992px) {
    .list-cards{
        grid-template-columns: repeat(4,1fr);
        column-gap:1rem
    }
}
@media screen and (min-width:576px) and (max-width:767px) {
    .list-cards{
        grid-template-columns: repeat(3,1fr);
        column-gap:2rem
    }
}
@media screen and (min-width:1200px) {
    .list-cards{
        column-gap:3rem
    }
}


#search-help{
    border:none!important
}   