@media (max-width: 500px) {
    * {

        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .center {
        display: flex;
        justify-content: center;
    }

    body {

        margin: 0;
        padding: 0;
        background-color: #fff2db;
        height: auto;
        width: auto;
        padding-bottom: 40vw;
    }


        .questionlogo img {
        width:60vw;
        margin-top:10vw;
        margin-left:10vw;
        margin-bottom:10vw;
    }

    .accordion-004 {
        max-width: 80vw;
        margin-bottom: 7px;
        border: 2px solid #d0d0d0;
        border-radius: 5px;
        background-color: white;
        margin-left:10vw;
    }

    .accordion-004 summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 1em 2em;
        color: #333333;
        font-weight: 600;
        cursor: pointer;
    }

    .accordion-004 summary::-webkit-details-marker {
        display: none;
    }

    .accordion-004 summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 7px;
        height: 7px;
        margin-left: 10px;
        border-bottom: 3px solid #333333b3;
        border-right: 3px solid #333333b3;
        content: '';
        transition: transform .3s;
    }

    .accordion-004[open] summary::after {
        transform: rotate(225deg);
    }

    .accordion-004 p {
        transform: translateY(-10px);
        opacity: 0;
        margin: 0;
        padding: .3em 2em 1.5em;
        color: #333333;
        transition: transform .5s, opacity .5s;
    }

    .accordion-004[open] p {
        transform: none;
        opacity: 1;
    }


    .bottom-tab {
        z-index: 100;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 600px;
        background: #ffffff;
        padding: 15px;
        display: flex;
        justify-content: space-around;
        height: 100px;
    }

    .tab-item {
        width: 60px;
        height: 60px;
        background: #14325c;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        font-style: italic;
        box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.2),
            -5px -5px 8px rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .tab-item i {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .tab-item:hover {
        transform: scale(1.1);
    }

    .bar img {
        display: flex;
        justify-content: center;
        height: 13vw;
    }

    .barr {
        display: flex;
        justify-content: center;
        gap: 10vw;
    }



}





@media (min-width: 500px) {


    .bg-wrapper {
        background: url('img/back.png');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        width: auto;
        height: auto;
    }

    .container {
        max-width: 500px;
        margin: 0 auto;
        /* padding: 40px 16px; */
        background: #fff2dc;
        position: relative;
        z-index: 1;
        height: auto;
        padding-bottom:130px;
    }

    body {
        margin: 0;
        padding: 0;
        height: auto;
        width: auto;
    }

    .center {
        display: flex;
        justify-content: center;
    }

    .questionlogo img {
        width:300px;
        margin-top:50px;
        margin-left:60px;
        margin-bottom:70px;
    }

    .accordion-004 {
        max-width: 400px;
        margin-bottom: 7px;
        border: 2px solid #d0d0d0;
        border-radius: 5px;
        background-color: white;
        margin-left:50px;
    }

    .accordion-004 summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 1em 2em;
        color: #333333;
        font-weight: 600;
        cursor: pointer;
    }

    .accordion-004 summary::-webkit-details-marker {
        display: none;
    }

    .accordion-004 summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 7px;
        height: 7px;
        margin-left: 10px;
        border-bottom: 3px solid #333333b3;
        border-right: 3px solid #333333b3;
        content: '';
        transition: transform .3s;
    }

    .accordion-004[open] summary::after {
        transform: rotate(225deg);
    }

    .accordion-004 p {
        transform: translateY(-10px);
        opacity: 0;
        margin: 0;
        padding: .3em 2em 1.5em;
        color: #333333;
        transition: transform .5s, opacity .5s;
    }

    .accordion-004[open] p {
        transform: none;
        opacity: 1;
    }



    .bottom-tab {
        z-index: 100;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 500px;
        background: #ffffff;
        display: flex;
        justify-content: space-around;
        height: 100px;
        margin-left: 0px;
    }


    .tab-item {
        width: 60px;
        height: 60px;
        background: #14325c;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        font-style: italic;
        box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.2),
            -5px -5px 8px rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .tab-item i {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .tab-item:hover {
        transform: scale(1.1);
    }

    .bar img {
        display: flex;
        justify-content: center;
        height: 60px;
        margin-top: 20px;
    }

    .barr {
        display: flex;
        justify-content: center;
        gap: 50px;
    }

}