@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@200;400&display=swap&family=Montserrat:wght@300;400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}
body
{
    background: rgb(242,242,242) !important;
}
.wrapper {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    margin-top: 0px;
    margin-right: auto;
    min-height: 100vh;
}
.card-container {
    display: flex;
    flex-direction: column;
    font-family: "Nunito Sans", sans-serif;
    line-height: 0;
    max-width: 440px;
    min-width: 320px;
    overflow-x: hidden;
    overflow-y: hidden;
    transform: translateZ(0px);
    width: 100%;
    box-shadow: 0 5px 5px -3px rgb(0 0 0 / 20%), 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%);
    border-radius: 1rem;
}
h1, h2 {
    text-align: left;
    font-weight: 700 !important;
    color: #00d1cd !important;
    font-family: 'Montserrat' !important;
    margin-bottom: 0px !important; 
}
h1 {
    font-weight: 700 !important;
    line-height: 40px !important;
    font-size: 2em !important;
}
h2 {
    font-weight: 300 !important;
    line-height: 30px !important;
    font-size: 1.5em !important;
}
.card
{
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    width: 100%;
    background: #ffffff;
    border-width: 0px;
}
.card .fas, .card .fab, .card .fa {
    font-size: 30px;
    color: #00d1cd;
    margin-right: 10px;
}
a {
    text-decoration: none !important;
}
.card:hover
{
    box-shadow: inset -6px -6px 20px rgba(255,255,255,0.5), inset 6px 6px 20px rgba(0,0,0,0.05);
}
.card span
{
    position: relative;
    text-align: center;
    font-size: 18px;
    color: #1B1B1B;
    font-weight: 400;
    line-height: 36px;
    padding-left: 30px;
}
/* .card:hover span
{
    display: block;
    transform: scale(0.98);
} */
.social-footer {
    margin: 30px 0px;
    text-align: center;
}
.social-footer .fab {
    font-size: 26px;
    color: #00d1cd;
    margin-left: 3px;
}
.identification {
    margin-left: 26px;
    padding-left: 10px;
    border-left: 1px dashed #00d1cd;
    margin-bottom: 10px;
}
.avatar {
    width: 100%;
    height: 400px;
    background-size: cover;
    margin-bottom: 20px;
    position: relative;
}
.avatar svg {
    width: 100%;
    bottom: -2px;
    left: 0px;
    position: absolute;
}
.avatar .language-switch {
    padding: 0px;
    top: 12px;
    left: 15px;
    position: absolute;
}
.btn-action {
    cursor: pointer;
    background-color: #00d1cd !important;
    border-radius: 2rem;        
    height: 3.25rem;
    margin-top: 1rem;
    padding: 0px 2rem;
    transition-duration: 300ms;
    transition-property: transform;
    text-align: center;
}
.btn-action span {
    line-height: 3rem;
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    font-family: 'Montserrat' !important;
}
.btn-action .fa {
    margin-right: 6px;
}

@media only screen and (max-width: 600px) {
    .card-container {
        border-radius: 0;
        border-bottom-left-radius: 2em;
        border-bottom-right-radius: 2em;
    }
    .wrapper {
        padding-bottom: 60px;
    }
  }