@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

.question,
.answer {
    width: 100%;
    list-style-type: none;
    color: #fff;
    cursor: pointer;
}

.question {
    padding: 1.5em;
    padding-right: 6em;
    font-weight: bold;
    position: relative;
    font-size: 14px;
}

ul:last-child {
    backdrop-filter: blur(5px);
    background: radial-gradient(67.8117% 100% at 50% 100%, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 17px;
    box-shadow: rgba(0, 255, 166, 0) 0px -40px 60px -40px inset, rgba(255, 255, 255, 0.2) 0px 1px 1px 0px inset, rgba(255, 255, 255, 0.05) 0px -1px 2px 0px inset;
    opacity: 1;
}

.question:hover {
    cursor: pointer;
}

.answer {
    display: none;
    padding: 1.5em;
    font-size: 14px;
    color: #cecece;
}

.expand-bar {
    position: absolute;
    top: 50%;
    right: 1.5em;
    transition: all 0.5s ease;
}

.expand-bar,
.expand-bar:after {
    width: 15px;
    height: 2px;
    background-color: rgb(255, 255, 255);
}

.expand-bar:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(90deg);
    transition: all 0.5s ease;
}

.open {
    border-bottom: none;
}

.open .expand-bar {
    transform: rotate(180deg);
}

.open .expand-bar:after {
    transform: rotate(180deg);
}

@media (max-width: 880px) {
    .txt_bx_hr {
        padding: 30px 14px;
    }
    .main_cont {
        margin-top: 50px;
    }
}