*{
    margin: 0;
    padding: 0;
    border:border-box;
}
body {
    overflow-x: hidden;
}
html{
    scroll-behavior: smooth;
}
/* All Keyframes Animaions */
@keyframes appear {
    from{
        opacity: 0;
        /* transform: translateX(-50px); */
        transform: scale(0.7);
        /* scale:0.5; */
    }
    to{
        opacity: 1;
        /* transform: translateX(0px); */
        transform: scale(1);
        /* scale:1; */

    }
}
@keyframes slide-left {
    from{
        opacity: 0;
        transform: translateX(20%);
        /* transform: scale(0.9); */
        /* scale:0.5; */
    }
    to{
        opacity: 1;
        transform: translateX(0%);
        /* transform: scale(1); */
        /* scale:1; */
    }
}

@keyframes slide-out {
    from{
        opacity: 0;
        transform: translateX(-100px);
        /* transform: scale(0.9); */
        /* scale:0.5; */
    }
    to{
        opacity: 1;
        transform: translateX(0px);
        /* transform: scale(1); */
        /* scale:1; */

    }
}
@keyframes slide-top-bottom {
    from{
        opacity: 0;
        transform: translateY(80px);
        /* transform: scale(0.5); */
        /* scale:0.5; */
    }
    to{
        opacity: 1;
        transform: translateY(0px);
        /* transform: scale(1); */
        /* scale:1; */
    }
}
@keyframes slide-in {
    0%{
        transform: translateY(-90px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
/* bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
.hdfc-heading{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #00529C;
    font-size: 25px;
    background-color: #ffffff;
    animation:slide-in 2s ease forwards;
    width:100%;    


}
@media(max-width:700px){
    .hdfc-name{
        font-size: 14px;
    }
    .hdfc-quote{
        font-size: 10px;
    }
}

.hdfc-convo{
    height: auto;
    width: 100%;
    /* background-color: orange; */
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation :appear 2s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;


    
}
.convo_image{
    height: 500px;
    width: 80%;
    background-size: cover;
}
@media(max-width:700px){
    .convo_image{
        height: 200px;
        width: 100%;
    }
}


/* All insurance types  */
.ourproduct{
    margin-top: 5px;
    font-weight:600;
    animation :slide-top-bottom 5s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}
@media(max-width:700px){
    .ourproduct{
        font-size:14px;
    }
}

.hdfc_insur_type{
    height: auto;
    width: 100%;
    padding: 20px 100px 20px 100px;
    display: flex;
    
}
.hdfc-img-sec{
    margin-right: 20px;
    width:35%;
    
    padding-left: 10px;
    border-radius: 20px;
    height: 400px;
    padding-top: 15px;
    box-shadow: 5px 5px 10px 0px #959696;
    animation :slide-out 5s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}
.insur_img{
  
    height: 350px;
    width: 400px;
    border-radius: 20px;
    
    
}

.insur_desc{
    height: 400px;
    width: 65%;
    
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
    /* padding-left: 100px; */
    border-radius: 20px;
    box-shadow: 5px 5px 10px 0px #959696;
    animation :slide-left 5s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}

.hdfc_type_heading{
    height: 50px;
    width: 70%;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 0px;
    padding-bottom: 30px;
    
    background-color: #00529C;
    color: #ffffff;
    padding-top: 3px;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0px #878282;
}
.type_desc{
    /* margin-left: -150px; */
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 5px;
    font-size: 20px;
}
.type-desc1{
    margin-top: 20px;
    height: 30px;
    width: 500px;
    animation :slide-out 5s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}
.bksw{
    display: flex;
    flex-direction:row-reverse;

}
.hdimgsw{
    margin-right:0px;
}
.hdfc_descsw{
    margin-right:20px;
}

.hdfc_form_button{
    height: 40px;
    width: 150px;
    background-color: #00529C;
    color: white;
    border-radius: 20px;
    text-align: center;
    padding-top: 10px;
    margin-top: 20px;
    animation: bounce 1s infinite; 
    animation-play-state: running; 

}
.hdfc_form_button:hover{
    animation-play-state: paused;
}


button {
    all: unset; /* Resets all inherited styles */
    display: inline-block; /* Ensures the button behaves as expected */
    cursor: pointer; /* Ensures the pointer shows for buttons */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    border: none; /* Remove any borders */
    background: none; /* Remove background color */
    color: inherit; /* Ensures the text color is inherited */
    font: inherit; /* Uses the inherited font */
    outline: none; /* Remove default focus outline */
}

@media(max-width:700px){
    .hdfc_insur_type{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    .hdfc-img-sec{
        margin-top: 20px;
        margin-left: 20px;
        height: 200px;
        width: 70%;
    }
    .insur_img{
  
        height: 100%;
        width: 100%; 
        overflow: hidden;
       
        
    }
    .insur_desc{
        margin-top: 15px;
        height: 350px;
        width: 80%;
    }
    .hdfc_type_heading{
        font-size: 11px;
        padding-top:10px;
    }

    .type_desc{
        font-size: 16px;
        margin-right: -15px;
        padding-left: 20px;
        padding-right: 20px;
       
    }
    .type-desc1{
        width: 100%;
        margin-top:15px;
    }
    .hdimgsw{
        margin-right:20px;
    }
    .hdfc_descsw{
        margin-right:0px;
    }
    .hdfc_form_button{
        margin-top: 5px;
    }
    
}

.hdfc_cust_form{
    height: auto;
    width: 100%;
    /* background-color: rgb(205, 172, 212); */
    background-image: url("../hdfc_ergo/hdfc_plant.jpg");
    background-size: cover;
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    animation :slide-out 5s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%; 
}
.applyhdfc-heading{
    font-size: 20px;
    color: #00529C;
    padding-bottom: 20px;

}
.hd1{
    text-align: left;
    margin-left: 350px;
    margin-bottom: 10px;
    animation :slide-out 5s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}

.whyhdfc{
    color: #467eb0;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;
}
#hdfc_main_apply_button{
    display: flex;
    align-items: center;
    justify-content: center;
}
@media(max-width:700px){
    .hdfc_cust_form{
        padding: 30px;
    }
    .applyhdfc-heading{
        font-size: 14px;
    }
    .hd1{
        text-align: left;
        margin-left: 25px;
        margin-bottom: 10px;
    }
}


/* hdfc insurance section */

.health_insur_section{
    height: auto;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 20px;
    padding: 20px;
    background-color:#00529C;
    animation:slide-in 2s ease forwards;

}

.healthmain{
    height: auto;
    width: 100%;
    /* background-color: orange; */
    
    padding: 30px;
}

.health_border{
    height: auto;
    width: 100%;
    border: 1px solid black;
    border-radius: 20px;
    padding: 20px;

    display: flex;
    justify-content: space-evenly;
}

.heartimg{
    height: 100%;
    width: 35%;
    animation :slide-out 5s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;


}
.sub_heart{
    height: 100%;
    width: 100%;

}

.feature_hdfc{
    height: 100%;
    width: 60%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
}
.feauture_heading{
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #467eb0;
    
}

.feauture_desc{
   padding: 20px;
   animation :slide-left 5s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;


}

.feauture_desc1{
    margin-top: 30px;
    animation :slide-left 5s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}
.broucher{
    margin-top: 20px;
    font-weight: 600;
}
.broucher a{
    color: rgb(12, 38, 202);;
}

@media(max-width:700px){
    .healthmain{
       
    }
    .health_border{
        flex-direction: column;
        /* align-items: center; */
    }
    .heartimg{
        padding: 5px;
        margin-top: -20px;
        height: 230px;
        width: 100%;
    }
    .sub_heart{

    }
    .feature_hdfc{
        /* margin-left: -120px; */
        text-align: left;
    }
    .feauture_heading{
        font-size: 16px;
        height: 30px;
        width: 100%;
        text-align: center;
        margin-left: 100px;
    }

    .feauture_desc{
        margin-top: -10px;
        margin-left: 10px;
    }
    
    .feauture_desc1{
        height: 70px;
        width: 175%;
    }
    .broucher{
        width: 150%;
        margin-left: 130px;
        margin-top: 0px;
    }
}

.cashless_hospital{
    height: auto;
    width: 96%;
    border: 1px solid black;
    border-radius: 20px;
    margin: 0px 30px 30px 30px;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.coverage{
    height: 350px;
    width: 60%;
   
    padding: 20px 20px 20px 20px;
    text-align: center;
    animation :slide-out 5s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}
.coverage_heading{
    width: 90%;
    height: 30px;
    color: #467eb0;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.coverage_details{
    text-align: left;
    margin-left: 60px;
    margin-top: 50px;
    height: auto;
    width: 100%;
}
.cvd{
    height: 30px;
    width: 100%;
    margin-top: 20px;
    animation :slide-out 5s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}
.hospital_image{
    height: 350px;
    width: 40%;
    
    padding: 0px 10px 10px 10px;
    background-size: cover;
    animation :slide-left 5s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}

.custom-img{
    height: 100%;
    width: 100%;
}

.checkout_list{
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    margin-top: 23px;
   margin-left: -100px;
}
.checkout_list a{
    color:blue;
}

@media(max-width:700px){
    .cashless_hospital{
        flex-direction: column-reverse;
        width: 86%  ;
        height: auto;
    }
    .hospital_image{
        height: 200px;
        width: 300px;
        padding: 0px 0px 0px 0px;
    }
    .coverage{
        height: auto;
        width: 100%;
    
    }
    .coverage_heading{
        width: 100%;
        font-size: 16px;
        /* margin-right: 100px; */
        margin-top: -10px;
    }
    .coverage_details{
        margin-top: 15px;
       margin-left: 0px;
       width: 100%;
    }
    .cvd{
        margin-top: 40px;
    }
    .checkout_list{
        margin-left:0 ;
    }
}

.hdfc_forms{
    height: auto;
    width: 96%;
    margin: 30px;
    padding: 20px;
    border: 1px solid black;
    border-radius: 20px;
}
.download_forms_heading{
    height: 30px;
    width: 100%;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #00529C;
    animation :slide-top-bottom 5s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

    

}

.claim_links{
    height: 80px;
    width: 100%;
   
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}
.kycform{
    height: 50px;
    width: 40%;
    border: 1px solid black;
    padding: 10px;
    color: white;
    background-color: #467eb0;
    animation :slide-out 5s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}
.kycform a{
    color: white;
    font-size: 23px;
    font-weight: 600;
}

.health_forms_link{
    height: 50px;
    width: 40%;
    border: 1px solid black;
    padding: 10px;
    color: white;
    background-color: #467eb0;
    animation :slide-left 5s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}
.health_forms_link a{
    color: white;
    font-size: 23px;
    font-weight: 600;
}
@media(max-width:700px){
    .hdfc_forms{
        width: 86%;
    }
    .download_forms_heading{
        font-size: 14px;
    }
    .kycform{
        padding-top: 15px;
    }
    .kycform a{
        font-size: 16px;
       
    }
    .health_forms_link{
        padding-top: 5px;
    }
    .health_forms_link a{
        font-size: 13px;   
    }
}
















.backto-top-lic{
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #232F3E;
    transition: transform 0.3s ease;
}
.backto-top-home a:hover{
    transform: translateY(-5px);
}
@media(max-width:700px){
    .backto-top-lic{
     margin-bottom:-21px;
    }
 }

