* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Saira Condensed', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #efefef;
}

.logo {
    width: 250px;    
    position: absolute;
    object-fit: cover;
    padding: 10px 10px 10px 5px;
    margin: 10px 80px;
    
 }

.card {
    position: relative;
    width: 400px;
    height: 650px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: .5s;
}

.card:hover{
    box-shadow: 0 5px rgba(253, 216, 2, 0.812);
    transform: translateY(-15px);
    }

.card .head {
    height: 200px;
    width: 100%;
    position: relative;
}
/**
.card .head .circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #D94F04;
    bottom: 0;
}
**/
.card .head .img {
    width: 150px;
    height: 150px;
    position: absolute;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    bottom: -30%;
    left: 50%;
    transform: translate(-50%);
}

.card .head .img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.card .description {
    height: 200px;
    padding: 50px 20px 20px 20px;
    border-bottom: solid 1px rgba(6,74, 76, .18);
    text-align: center;
}

.card .description h3 {
    color: #025259;
}

.card .description p {
    margin-top: 20px;
    font-size: 15px;
}

.card .contact {
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card .contact a{
    text-decoration: none;
    color: #fff;
    background: #D94F04;
    padding: 10px 50px;
    border-radius: 5px;
    transition: .3s;
}
/** cuando el mouse pasa por contacto **/
.card .contact a:hover {
    background: #F29325;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Saira Condensed', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #224898;
}

.logo {
    width: 250px;    
    position: absolute;
    object-fit: cover;
    padding: 10px 10px 10px 5px;
    margin: 0px 80px;
    
 }

.card {
    position: relative;
    width: 400px;
    height: 650px;
    background: #F69F3A;
    border-radius: 5px;
    overflow: hidden;
    transition: .5s;
}

.card:hover{
    box-shadow: 0 5px rgba(248, 248, 246, 0.812);
    transform: translateY(-15px);
    }

.card .head {
    height: 180px;
    width: 100%;
    position: relative;
}

.card .head .circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #D94F04;
    bottom: 0;
}

.card .head .img {
    width: 150px;
    height: 150px;
    position: absolute;
    background: #f5f6f7;
    padding: 5px;
    border-radius: 50%;
    bottom: -30%;
    left: 50%;
    transform: translate(-50%);
}

.card .head .img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.card .description {
    height: 200px;
    padding: 50px 20px 20px 20px;
    border-bottom: solid 1px rgba(6,74, 76, .18);
    text-align: center;
}

.card .description h1 {
    color: #f6f8fa;
}

.card .description p {
    margin-top: 20px;
    font-size: 15px;
    color: #f3f4f7;
}


.card .contact {
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card .contact a{
    text-decoration: none;
    color: #f1f2f4;
    background: #da7c12;
    padding: 10px 50px;
    border-radius: 5px;
    transition: .3s;
}
/** cuando el mouse pasa por contacto **/
.card .contact a:hover {
    background: #224898;
}
