.page-content {
    margin-top: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

/* ===============================
            P_heade
=================================*/

.P_heade {
    background-color: #2555a0;
    display: flex;
}

.p_heade_text {
    text-align: center;
    margin-top: 100px;
    font-weight: bold;
    color: white;
}

/* ============================== */

.tabs-policy {
    margin-top: 20px;
}

.responsive-tab ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

.responsive-tab li {
    display: inline-block;
    padding: 0;
    vertical-align: bottom;
    margin-right: 15px;
}

.responsive-tab a {
    display: inline-block;
    color: black;
    text-decoration: none;
    padding: 1px;
    font-size: 20px;
    font-weight: bold;
}

.responsive-tab a:hover {
    color: #2555a0;
}

.responsive-tab a.customActive {
    border-bottom: 3px solid #2555a0;
    ;
    position: relative;
    bottom: -3px;
    color: #2555a0;
    outline: none;
}

.responsive-tab a.customActive:after {
    content: "\f0d7";
    font-family: "FontAwesome";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 auto;
    color: #2555a0;
    ;
}

.tabs-policy>div {
    display: none;
    padding: 1rem;
}

.tabs-policy>.active {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 80px;
    margin-left: 80px;
}

@media (max-width: 767px) {
    .responsive-tab ul {
        position: relative;
        background: #fff;
        border: none;
    }

    .responsive-tab ul::after {
        content: "\f0c9";
        position: absolute;
        top: 12px;
        right: 15px;
        z-index: 2;
        pointer-events: none;
        font-size: 17px;
        font-family: "FontAwesome";
    }

    .responsive-tab li {
        display: block;
    }

    .responsive-tab a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-color: transparent;
        padding: 10px;
    }

    .responsive-tab ul.open a {
        position: relative;
        display: block;
        border-color: #2555a0;
    }

    .responsive-tab a.customActive {
        z-index: 1;
        background: #fff;
    }

    .tabs-policy>.active {
        margin-right: 10px;
        margin-left: 10px;
    }
}

.tab-content {
    background-color: white;

}

/* =================================
           Table css
===================================*/

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 6px;
    border: 4px double #2555a0;
    text-align: left;
    border-style: double;
}


th {
    background-color: #310202;
    font-weight: bold;
}

td {
    vertical-align: top;
}

mark {
    background-color: yellow;
    font-weight: bold;
}

@media (max-width: 600px) {
    table {
        font-size: 10px; 
        margin-right: 20px;
    }

}


/* =============================== 
            p_alignment
=====================================*/

.p_alignment {
    color: black;
    font-style: arial;
    margin-left: 6px;
    margin-right: 6px;
}

.p_alignment p {
    font-size: 17px;
}

.p_alignment ol {

    padding-left: 5px;
}

.p_alignment li {
    list-style-type: decimal;

}

/* ======================================
            UNDER LINE CSS  
=========================================*/

.underline-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.underline {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2.3px;
    background-color: orange;
    animation: slide 3s infinite;
}

@keyframes slide {

    0%,
    100% {
        width: 0;
    }

    25%,
    75% {
        width: 100%;
    }
}

.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;
    }
}