.body-div-1-box{
    width: 100%;
    box-sizing: border-box;
}
.body-div-1{
    width: 95%;
    margin: 0 auto;
}
.body-div-item-box{
    background-color: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 15px 0 #002b86bd;
    border-radius: 10px;
    position: relative;
}
.body-div-item-box-box{
    display: grid;
    row-gap: 25px;
}
.body-div-1-title-box{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7em;
    position: relative;
}
.body-div-item-title{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 20px;
    position: sticky;
    top: 70px;
    bottom: 0;
    cursor: pointer;
    background-color: #fff;
    border-radius: 10px;
    transition: box-shadow 100ms 200ms linear;
}

.body-div-item-title-2{
    width: 20px;
    height: 20px;
    background-image: url("../img/AR-DownArrow.svg");
    background-size: cover;
}

.body-div-item-data{
    width: 100%;
    line-height: 25px;
    height: 0px;
    overflow: hidden;
    padding: 0px 15px ;
    box-sizing: border-box;
    overflow: hidden;
}
.body-div-item-title.active{
    box-shadow: 0px 5px 5px 0 #00000073;
    transition: all 100ms 0ms linear;
    border-radius: 10px 10px 0 0;
}
.body-div-item-data.active{
    transition: all 300ms linear;
    height: auto;
    margin-top: 15px;
    padding: 15px 15px ;
}
.body-div-item-data.deactive{
    transition: all 300ms linear;
    height: 0px;
    margin-top: 0px;
    padding: 0px 15px ;
}


.body-div-item-data ul{
    list-style: inside;
}

.body-get-advice-button-box,.body-get-advice-button{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-get-advice-button{
    width: 98%;
    height: 45px;
    color: #fff;
    background-color: #000290;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 500;
}