/* white paper styles */
.white_paper_header_block{

    background: linear-gradient(180deg, #265EBE 0%, #002E85 100%);
    display: flex;
    padding: 30px;
    border-radius: 20px;

}

.white_paper_img img{
    width: 100%;
}

.white_paper_content h1, .white_paper_content p, .white_paper_content a, .white_paper_details_banner p{

    color: #fff;
}

.white_paper_content p, .white_paper_content a, .white_paper_details_banner p{
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.white_paper_content h1{
    font-size: 42px;
}

.white_paper_content a{
    text-decoration: none;
}

.white_paper_content button, .white_paper_details_banner button{
    padding: 10px 15px;
    box-shadow: 0px 13px 16px -8px #265EBE99;
    background: #fff;
    border: none;
    border-radius: 15px;
    color: #265EBE;
    width: max-content;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.white_paper_content button:hover, .white_paper_details_banner button:hover{

    background: #265EBE;
    color: #fff;
}

.white_paper_content button:hover svg path,  .white_paper_details_banner button:hover svg path{
    fill: #fff;
}

.white_paper_header_primary{
    color: #002E85;
}

.w_card_main_img{
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1/1;
}

.white_paper_card{
    background: #2254AA;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(1);
    transition: 0.3s transform;
    height: 100%;
}
.white_paper_card:hover{
    transform: scale(1.1);
}

.white_paper_description_container {
    padding: 20px;
}

.w_floating_logo{
    width: 125px;
    position: absolute;
    top: 15px;
    left: 15px;
}

.white_paper_details_banner{

    /* background: url(../white-paper-banner-1.webp); */
    background: var(--bg-image);
    height: 400px;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    position: relative;

}

    .backdrop_webmobilemenu{
    
        background: #ffffffc7;
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: 100;
        visibility: hidden;
        opacity: 0;
        transform: scale(0);
        will-change: opacity, transform;
        top: 0;
        left: 0;
    
    }

.white_paper_details_banner::before{

    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #00000051;
    left: 0;
    top: 0;
}

.w_form_container{
    background-color: #265EBE;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.w_form_container input[type="text"], .w_form_container input[type="email"] {   
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    outline: none;
    border: none;
}

.w_form_container label{
    font-size: 14px;
}

.w_form_submit_button{
    width: 100%;
    padding: 8px;
    border: navajowhite;
    border-radius: 10px;
    border: 1px solid var(--Primary-Primary-100, #B5CEFF);
    color: #265ebe;
}

.w_table_content_wrapper{
    border: 1px solid #99AECF;
    box-shadow: 0px 1px 3px 0px #A6AFC366;
    padding: 15px;
    border-radius: 8px;
    position: sticky;
    top: 20px;
}

.w_table_content_wrapper p{
    color:#112A55;
    font-weight: 500;
}

.w_table_content_wrapper li{
    color: #265EBE;
}
.w_table_content_wrapper li a{

    text-decoration: none;
}

.w_form{

    position: sticky;
    top: 20px;

}

.fill_out_text{
    color: #5587DD;
    font-weight: 600;
}

.insights_list li{
    margin-top: 20px;
}

.w_social_link_container{
    display: flex;
    gap: 1rem;
    align-items: center;
}

.w_social_link_container img{
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.is_not_valid{
    border: 1px solid #e30101 !important;
}
.error_text{
    display: none;
    font-size: 14px;
    font-style: italic;
    color: #fb6a6a;
}

@media screen and (max-width: 576px) {

    .white_paper_content p, .white_paper_content a, .white_paper_details_banner p{
        font-size: 20px;
    }
    
}