*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,p{
    margin: 0;
}
h1,h2,h3,h4,h5{
    font-family: "Merriweather", serif;
}
a{
    text-decoration: none;
}
body{
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    color: #333;
}

/* header part start */
/* top header part start */
.top-header{
    background-color: #f7f7f7;
}
.top-header-box,
.header-middle-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-header-box{
    justify-content: center;
}
.top-header-left p,
.top-header-right a{
    font-size: 14px;
    line-height: 24px;
    color: #000;
}
.top-header-right a i{
    color: #00bad0;
}
/* top header part end */

/* header middle part start */
.logo{
    width: 200px;
}
.header-middle-btn a,
.com-btn{
    display: inline-block;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #00bad0;
    border-radius: 5px;
    transition: .3s all linear;
}
.header-middle-btn a:hover,
.com-btn:hover{
    background-color: #000;
}
/* header middle part end */

/* header bottom part start */
.nav-item a:focus,
.header-bottom{
    background-color: #00bad0;
}
.nav-item a:focus{
    color: #fff;
}
.nav-item a{
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    padding: 15px !important;
    transition: .3s all linear;
}
.nav-item a:hover,
.nav-item a.active{
    background-color: #323857;
    color: #fff !important;
}
/* header bottom part end */

/* header part end */

/* banner part start */
.banner{
    min-height: 85vh;
    background: url("../images/banner.jpg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    display: flex;
    align-items: center;
}
.banner-box{
    max-width: 600px;
    width: 100%;
}
.banner-box h1,
.com-heading,
.page-banner-box h1{
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: #0c385f;
}
/* banner part end */

/* common section part start */
.common-section-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px 100px;
    align-items: center;
}
.common-section-img img{
    box-shadow: 0 0 1.5px #323857;
    border-radius: 10px;
}
.com-heading{
    font-size: 40px;
    line-height: 50px;
}
/* common section part end */

/* footer part start */
.footer{
    background-color: #181d31;
    color: #fff;
    font-size: 15px;
}
/* footer part end */


/* page banner part start */
.page-banner{
    background: url("../images/life-banner.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 10;
    
}
.annuities-page{
    background: url("../images/annuities.jpg");
}
.retirement-page{
    background: url("../images/retirement-2.jpg");
}
.mutual-page{
    background: url("../images/mutual.jpg");
}
.calculator-page{
    background: url("../images/calculator.jpg");
}
.contact-page{
    background: url("../images/contact.jpg");
}
.health-page{
    background: url("../images/health.jpg");
}
.annuities-page,
.retirement-page,
.mutual-page,
.calculator-page,
.contact-page,
.health-page{
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
}
.page-banner::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
/* page banner part end */

/* common card part start */
.com-card-box,
.calculator-box{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
.com-card-top p,
.single-com-card p{
    font-size: 16px;
    line-height: 26px;
}
.main-card-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.single-com-card{
    width: 330px;
    padding: 30px 25px;
    background-color: #f0f9fa;
    border: 1px dashed #c3cae1;
    transition: .3s all linear;
}
.single-com-card:hover{
    transform: translateY(-5px);
}
.single-com-card h3,
.com-page-last-h{
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    color: #0c385f;
}
.invest-btn{
    border: none;
}
.single-com-card p b{
    font-weight: 600;
}
.mutual-benefits-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px 30px;
}
.mutual-benefits-box p b{
    font-weight: 600;
}
.mutual-benefits-box p{
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 10px;
    text-align: start;
}
/* common card part end */

/* calculator part start */
.form-box{
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    background-color: #f0f9fa;
    border: 1px dashed #c3cae1;
    padding: 30px 25px;
}
.input-box label{
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #181d31;
    margin-bottom: 4px;
}
.input-box input{
    width: 100%;
    padding: 7px 15px;
    border: 1px solid #d3d3d3;
    border-radius: 25px;
    font-size: 16px;
}
.input-box input:focus{
    border-color: #00bad0;
}
.form-box button{
    border-radius: 25px;
    background-color: #181d31;
    margin-top: 10px;
}
/* calculator part end */

/* contact part start */
.contact-box{
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 30px;
    border: 2px dashed #00bad0;
}
.input-box-2 input,
.input-box-2 textarea{
    border: none;
    border-bottom: 1px solid #d3d3d3;
    padding: 8px 16px;
    font-size: 16px;
    width: 100%;
    color: #0c385f;
}

.contact-info-box p{
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    font-size: 14px;
    line-height: 24px;
    color: #6e789b;
    align-items: center;
}
.contact-info-box p a{
    color: #6e789b;
}
.contact-info-box i{
    width: 30px;
    height: 30px;
    border: 1px solid #6e789b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* contact part end */


/* spiner start */
.spinner {
    display: none;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
}

.spinner::before {
    content: '';
    width: 15px;
    height: 15px;
    border: 3px solid #ccc;
    border-top-color: #004868;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.success-message{
    display: none;
    padding: 5px 12px;
    background-color: #10ac84;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #fff;
    border-radius: 3px;
    text-align: center;
}
.success-message.active{
    display: block;
}
/* spiner end */