@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    overflow-x: hidden;
    background-color: #f5f5f5;
    color: #183a68;
    font-weight: 500;
}
a{
    text-decoration: none;
    color: #183a68;
}
.vcard-header{
    width: 100%;
    height: 20rem;
}
small{
    font-weight: 700;
}
.top-banner{
    width: 100%;
    height: 15rem;
    /*background-image: linear-gradient(to bottom, red, yellow);*/
    /*background-color: #000000;*/
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.top-banner img{
    max-height: 50%;
    max-width: 75%;
}
.top-banner h2{
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #183a68;
}

.quick-links{
    width: 100%;
    /*height: 5rem;*/
    display: flex;
    justify-content: center;
}
.quick-link-button{
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    border-radius: 50%;
    /*color: #000000;*/
    color: #183a68;
    background-color: #ffffff;
    position: relative;
    top: -26px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.detais-container{
    text-align: center;
}
.details-card{
    border: none;
    text-align: left;
}
.detail-box{
    border-bottom: 2px solid #e3e3e3;
    margin-bottom: 10px;
}
.detail-icon-box{
    display: flex;
    justify-content: center;
    align-items: center;
}
.detail-icon {
    width: 45px;
    height: 45px;
    font-size: large;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /*color: #ffcb08;*/
    /*background: #000000;*/
    background: #183a68;
    color: #ffffff;
}
.detail-text-box{
    color: #183a68;
}
.btn-custom{
    width: 100%;
    /*background: #0070d2;*/
    /*color: #ffffff;*/
    background: #183a68;
    color: #ffffff;
    font-weight: 700;
    padding: 15px;
    border-radius: 10px;
}
