/* ===============================
            P_heade
=================================*/

.P_heade {
    background-color: #2555a0;
    display: flex;
}

.p_heade_text {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    color: white;
}

h1 {
    font-size: clamp(20px, 4vw, 30px);
    line-height: 1.2;
    margin-bottom: 40px;
    margin-top: 150px;
}

main {
    max-width: 1000px;
    margin: 0 auto;
}

summary {
    font-size: 1.12rem;
    font-weight: 500;
    background-color: #fafafa;
    background-image:  radial-gradient(circle at 40% 91%, rgba(251, 251, 251, 0.04) 0%, rgba(229, 229, 229, 0.04) 100%), linear-gradient(90deg, #2555a0, #2c7df6);
    color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    outline: none;
    border-radius: 0.25rem;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.faq__content p {
    text-align: left;
    color: black;
    font-size: arial;
    font-size: 17px;
    margin-left: 10px;
}

details[open] summary~* {
    animation: sweep .5s ease-in-out;
}

@keyframes sweep {
    0% {
        opacity: 0;
        margin-top: -10px
    }

    100% {
        opacity: 1;
        margin-top: 0px
    }
}

details>summary::after {
    position: absolute;
    content: "+";
    right: 20px;
}

details[open]>summary::after {
    position: absolute;
    content: "-";
    right: 20px;
}

details>summary::-webkit-details-marker {
    display: none;
}



.whatsapp-btn {
    border-radius: 5px;
    position: fixed;
    bottom: 32px;
    left: 20px;
    z-index: 1;
    font-size: 46px;
}

@media (min-width: 768px) {
    .whatsapp-btn {
        bottom: 32px;
        left: 32px;
    }
}