/* Black #191716 */
/* White #fff */
/* Yellow #e6af2e */
/* Gray #beb7a4 */
/* Blue rgba(7,23,55,.8) */

/* --mainWhite: #fff;*/
/* --mainYellow:#ffbf00;*/
/* --mainRed: #f90606;*/
/* --mainBlue: #00bfff;*/
/* --mainGrey:#f0f5f5;*/
/* --mainKyBlue: skyblue;*/
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
font-size: 10px;
font-family: 'Roboto' sans-serif;
}
a{
text-decoration: none;
color: var(-mainWhite);
}
section{
padding: 10rem 0;
background-color: #fff;
}
.title-text{
text-transform: uppercase;
font-size: 3.5rem;
letter-spacing: -2px;
margin-right: -3px;
margin-bottom: 5rem;
text-align: center;
color: #333;
position: relative;
}
.title-text::after{
content: '';
width: 30rem;
height: .8rem;
background-color: #ff6600;
position: absolute;
bottom: -2rem;
left: 50%;
transform: translateX(-50%);
border-radius: 3px;
}
.card-wrap{
display: flex;
align-items: center;
align-content: center;
flex-direction: column;
}
.card{
width: 32rem;
background-color:#fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 2rem 0;
box-shadow: .5rem .5rem 3rem rgba(0, 0, 0, 0.5);
border-radius: 10px;
}
.img-card{
width: 100%;
height: 26rem;
object-fit: cover;
border-radius: 10px;
}
/*
.inner{
overflow: hidden;
}
.inner img{
transition: all 1.5s ease;
}
.inner:hover img{
transform: scale(1.5);
}
*/

.img-info{
width: 25rem;
height: 30rem;
object-fit: cover;
border-radius: 50%;
margin-top: -12rem;
z-index: 999;
border: 1rem solid #ff6600
}
.card h1{
font-size: 2.5rem;
color: #ff6600;
margin: 1.0rem 0;
text-transform: capitalize;
}
.job-title{
color: #777;
font-size: 1.0rem;
font-weight: 300;
}
.text-p{
font-size: 1.5rem;
padding: 10px;
margin: 1.5rem 0;
font-style: italic;
text-align: center;
color: #333;
}
.card .btn{
padding: 1rem 2.5rem;
background-color:#ff6600;
border-radius: 1rem;
margin: 1rem 0;
text-transform: capitalize;
color: #eee;
font-size: 1.4rem;
transition: all .5s;
}
.card .btn:hover{
transform: translateY(-2px);
box-shadow: .5rem .5rem 2rem rgba(0, 0, 0, 0.5);
}
.card .btn:active{
transform: translateY(0);
box-shadow: none;
}
.sociol-media ul{
width: 100%;
list-style: none;
display: flex;
justify-content: space-evenly;
padding: 2rem 8;
margin-top: 1.9rem;
border-top: 2px solid #ff6600;
width: 240px ;
}
.sociol-media i{
font-size: 3rem;
transition: color .5s;
}
.fa-facebook-square{
color: #ff0000;
}
.fa-twitter{
color: #ff0000;
}
.fa-instagram{
color: #ff0000;
}
.fa-google-plus-square{
color: #ff0000;
}

.fa-facebook-square:hover,
.fa-twitter:hover,
.fa-instagram:hover,
.fa-google-plus-square:hover{
color: #ff6600;
}
@media screen and (min-width: 700px) {
.card-wrap{
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.card{
margin: 2rem;
}
@keyframes fadeIn {
from{
opacity: 0;
}
to{
opacity: 1;
}
}
.card:nth-child(1){
animation: fadeIn .5s, .5s backwards;
}
.card:nth-child(2){
animation: fadeIn .5s, .1s backwards;
}
.card:nth-child(3){
animation: fadeIn .5s, 1.1s backwards;
}
.card:nth-child(4){
animation: fadeIn .5s, .2s backwards;
}
}
