.questions_news {
    margin-top: 60px;
    display: flex;
    gap: 60px;
    align-items: center;

}

.questions {
    display: grid;
    gap: 24px;
    max-width: 480px;
    width: 100%;
}

.questions .btn-plyus {
    height: 64px;
    padding: 12px 20px;
    background: #2D487D;
    border-radius: 16px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news {
    display: flex;
    gap: 20px;
}


.news_card {
    position: relative;
    padding: 16px;
    border: 1px solid #F75929;
    border-radius: 24px;
    max-width: 360px !important;
    width: 100% !important;
    max-height: 506px;
}


.news_card_img img {
    width: 100%;
    border-radius: 16px;
    max-height: 222px;
    object-fit: cover;
}

.news_card_img {
    margin-bottom: 17px;
}

.news_card_title {
    font-family: Bebas Neue;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    text-align: left;
    color: #F75929;
}

.news_card_text {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    margin-top: 17px;
    display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
}



.question_answers {
    background: #2D487D;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
}


.btn-plyus {
    display: flex;
    justify-content: space-between;
}

.btn-plyus p {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    text-align: left;
    color: white;
}

.savollar_btn {
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 16px;
    text-align: end;
    padding-right: 15px;
}

.savollar_btn img {
    transition: transform 0.5s ease;
}

.rotate {
    transform: rotate(45deg);
}


.answer {
    height: 0;
    opacity: 0;
    /* overflow: hidden; */
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    padding: 0 25px;
    color: white;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    text-align: left;
    color: white;
}


.answer.show {
    height: 40px;
    opacity: 1;
}

.news_card-list{
    padding: 25px 0;
}

@media (max-width:1310px) {
    .news_card_title{
        line-height: 25px;
        font-size: 22px;
    }
}

@media (max-width:1100px) {
    .news_card {
        max-width: 300px !important;
    }

    .news_card_text {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width:1000px) {
    .questions_news {
        gap: 20px;
    }

    .questions {
        margin-bottom: 40px;
    }
}

@media (max-width:920px) {
    .questions_news {
        display: block;
    }

    .questions{
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .news {
        gap: 0;
    }

    #card-wrapper {
        padding-left: 0;
        max-width: 750px !important;
    }

    .news_card{
        margin: 0 auto;
    }

}

@media (max-width:800px) {
    #card-wrapper {
        max-width: 630px;
    }

    .questions_news .swiper {
        margin-top: 50px;
    }

    .questions {
        max-width: none;
    }
}