﻿@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
    --primary: #052e64;
   /* #f65959;*/
    --white: #fff;
    --gray: #f0f1f3;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    position: relative;
    box-sizing: border-box;
    color: #222222;
    font-size: 1rem;
}

a {
    text-decoration: none;
}

.container {
    overflow: hidden;
}

.container {
    max-width: 400px;
    margin: 100px auto;
   /* padding: 20px;*/
}

.business-card {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 3px 3px 12px #d4d4d4;
    background: var(--white);
}

svg {
    width: 50px;
}

h1,
h2,
p {
    margin: 0;
}

.head {
    height: 200px;
    display: flex;
    justify-content: center;
    background-color: var(--gray);
}

    .head .head-banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



.avatar {
    --p: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: var(--p);
    margin-top: calc((-50px) - var(--p));
    text-align: left;
}

.avatar-image-warp {
    background-color: var(--gray);
    padding: 10px;
    box-sizing: border-box;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    object-fit: cover;
    overflow: hidden;
    border: 5px solid #fff;
}

    .avatar-image-warp img {
        width: 100%;
        object-fit: cover;
    }

.avatar-name-designation h3 {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 7px;
}

.infos {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-info-list {
    display: flex;
    margin: 5px;
    gap: 16px;
    align-items: center;
}

    .social-info-list h6 {
        font-size: 1rem;
        font-weight: 600;
        text-transform: capitalize;
    }

    .social-info-list p {
        font-size: 0.8rem;
        margin: 5px 0;
        font-weight: 300;
        color: #969393;
    }

.social-list-icon-wrap {
    background: var(--primary);
    border-radius: 50px;
    width: 26px;
    height: 26px;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.save-btn-wrap {
    text-align: center;
    margin: 1rem 0 2rem;
}

.save-btn {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    padding: .8rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 50px;
    box-shadow: 0px 4px 12px #cccccc;
    cursor: pointer
}
