.background-blue0{ background-color:  #00a0fd};
.background-blue1{background-color:  #61c4ff};
.background-blue2{ background-color: #89d3ff};
.background-blue2-rgb{ background-color: rgb(137,211,255) };
.background-blue3{background-color: #b0e1ff};
.background-blue3-rgb{background-color: rgb(176,225,255) };
.background-blue4{background-color:  #d7f0ff};
.background-purple1{background-color:  #452c80};
.background-purple2{background-color:  #7461a0};
.background-purple3{background-color:  #a295bf};
.background-purple4{background-color: #d0cadf};
.background-gray1{background-color: #f4f5f7}

*{
    font-family: 'Lato', sans-serif;
}
a{
    text-decoration: none;
}
p{
    margin: 0;
}
nav{
    display: grid;
    grid-template-columns: 150px auto;
    align-items: center;
    height: 80px; 
    padding: 0px 1rem 0px 3rem;
}

nav a{
    color: #393737;
    font-style:normal;
    font-weight: 600;
    line-height: normal;
}
.nav_list_mobile_content{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 40px;
}

.nav_list_mobile{
    display: none;
    background: rgba(255,255,255,0.9);
    padding: 0.5rem;
    width: 30px;
    border-radius: 3px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.nav_list_mobile img{
    width: 100%;
}

.nav_logo{
    width: 100%;
    padding: 4px; 
    display: flex;
    position: relative;
    align-items: center;
}

.nav_logo_image{
    width: 100px;
    height: 30px;
    position: relative;
    left: -80px;
    z-index: 2;
}

.nav_logo_mobile_image{
    width: 200px;
    margin: 0 auto;
    position: fixed;
    bottom: 20px;
}

.nav_logo_icon{
    width: 100px;
    top: -10;
    position: relative;

}
.nav_logo_mobile_icon{
    margin: 0 auto;
    width: 100px;

}

.wrapper_nav_items{
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: end;
}

.logo img{
width: 100%;
}

.wrapper{
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: center;
    height: calc(100vh - 80px);
    align-items: center;
    position: relative;
}

.wrapper_we_are, .wrapper_benefics, .wrapper_appertain, .wrapper_bond{
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}
.wrapper_app{
    display: grid;
    grid-template-columns: 70%;
    justify-content: center;
    align-items: center;
    height: 70vh ;
    position: relative;
}

.text_app{
    justify-content: center;
}

.container_card{
    display: grid;
    grid-template-columns: 25% 25%;
    justify-content: center;
    gap: 1rem;
    padding: 20px 0;
}

.card{
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.card_header_icon{
    padding: 5px;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 40px;
}

.card_header{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card_img{
    width: 30px;
}

.text_primary_color{
    color: #452c80;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.text_primary_secondary{
    color: #00A0FD;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.card_body_text{
    text-align: start;
    padding: 8px 0;
    color: #6d6d6d;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btn_outline_primary{
    border-radius: 20px;
    border: 1px solid #452C80;
    background: #FFF;
    color:#452C80
}

.btn_outline_primary:hover{
    border: 1px solid #a295bf;
    color: #a295bf;
}

.btn_outline_secondary{
    border-radius: 20px;
    border: 1px solid #00A0FD;
    background: #FFF;
    color:#00A0FD
}

.btn_outline_secondary:hover{
    border: 1px solid #89d3ff;
    color: #89d3ff;
}

.header_image_mobile{
    display: none;
}

 .header_text{
    position: relative;
    z-index: 2;
    padding: 3rem;
}


.header_item{
    color: #00A0FD;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 2.7px;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header_item span{
    background-color:#00A0FD ; 
    height: 0.1rem;
    width: 1rem;
}

.header_title{
    color: #000;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.header_title_center{
    text-align: center;
}

.header_title span{
    color: #452C80;
}
.header_subtitle{
    color: #555;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.header_subtitle_center{
    text-align: center;
}
.header_actions{
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 1rem 0;
    gap: 1rem;
}
.btn_primary{
    border-radius: 10px;
    background: #452C80;
    color: white;
    height: 3rem;
    /* width: 10rem; */
    flex-shrink: 0;
    font-weight: 500;
    font-size: 1.2rem;
    border: none;
}
.btn_primary:hover{
    background-color: #7461a0;
}
.btn_secondary{
    border-radius: 10px;
    border: 1px solid #452C80;
    background: #FFF;
    height: 3rem;
    flex-shrink: 0;
    color: #452C80;
    font-size: 1.2rem;
}
.btn_secondary:hover{
    border: 1px solid #7461a0;
    color: #7461a0;
}
.header_image{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrapper .header_image img{
    height: calc(100vh - 80px);
}
.wrapper_general .header_image img{
    height: 90%;
    width: 85%;
}
.wrapper_images{
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    grid-template-rows: auto;
    gap: 0.5rem;
}

.wrapper_images img{
    width: 100%;
    border-radius: 10px;

}
@media (max-width: 1226px) {
    .wrapper_bond{
        grid-template-columns: 100%;
    }
    .header_image img{
        max-width: 400px;
        max-height: 400px;
    }
    .wrapper, .wrapper_app, .wrapper_appertain, .wrapper_benefics, .wrapper_bond, .wrapper_we_are{
        height: max-content;
    }
}

@media (max-width: 880px) {
    .container_card{
        grid-template-columns: 70%;
    }
    .wrapper_app{
        grid-template-columns: 70%;
        height: max-content;
    }
    .wrapper_general .header_image img{
        max-width: 400px;
        max-height: 400px;
    }
    .header_item{
        font-size:0.8rem ;
    }
    .header_title{
        font-size:2rem ;
    }
    .header_subtitle{
        font-size:1rem ;
    }
    nav{
        grid-template-columns: 90% auto;
    }
    .nav_list_mobile{
        width: 38px;
    }
    .logo img{
        width: 150px;
    }
    .wrapper_nav_items{
        display: none;
    }
     .wrapper{
        grid-template-columns: auto 362px; 
        height: max-content;
    }
    .wrapper_we_are, .wrapper_appertain{
        grid-template-columns: 350px auto; 
        height: max-content;
    }
    .wrapper_benefics{
        grid-template-columns: auto 350px; 
        height: max-content;
    }
    .wrapper_bond{
        grid-template-columns: 100%; 
        height: max-content;
    }
    .wrapper .header_image img{
        width: 100%;
        height: 90%;
    }
    .wrapper_general .header_image img{
        height: 350px;
        width: 350px;
    }
    .wrapper_nav_items{
        display: none;
    }
    .nav_list_mobile{
        display: flex;
        justify-content: end;
        align-items: center;
    }

}

@media (max-width: 677px) {
    .wrapper{
        grid-template-columns: 100%; 
        align-items: start;
        height: max-content;
    }
    .wrapper_we_are, .wrapper_appertain{
        grid-template-columns: 100%; 
        align-items: start;
        height: max-content;
    }
    .wrapper_benefics{
        grid-template-columns: 100%; 
        align-items: start;
        height: max-content;
    }
    .container_card{
        grid-template-columns: 70%;
    }
    .wrapper_app{
        grid-template-columns: 100%;
        height: max-content;
    }
    .header_image_mobile{
        text-align: center;
        display: block;
    }
    .header_image{
        display: none;
    }
    .header_image_mobile img{
        height: 300px;
    }
    .header_text{
        padding: 1rem;
        text-align: center;
    }
    .header_actions{
        justify-content: center;
    }
    .header_item{
        font-size:0.6rem ;
        justify-content: center;
    }
    .header_title{
        font-size:1.8rem ;
    }
    .header_subtitle{
        font-size:0.9rem ;
    }
    .nav_list_mobile{
        display: flex;
        justify-content: end;
        align-items: center;
    }
    .nav_list_mobile{
        width: 30px;
    }
    .btn_primary{
        height: 2rem;
    }
    .btn_secondary{
        height: 2rem;
    }
    nav{
        padding: 0px 1rem 0px 1rem;
    }
    .header_item span{
        width: 0;
    }
}
