.card-wrapper {
  width: 400px;
  height: 500px;
  position: relative;
}

.card-travel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 450px;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: 0.5s;
  
  .card-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #000;
    transition: .5s;
  }
  
  &:hover img {
    opacity: 0.4;
    transition: .5s;
  }
}

.card-travel:hover .card-image {
  transform: translateY(-100px);
  transition: all .9s;
}

/**** Social Icons *****/

.social-icons {
  position: absolute;
  top: 48%;
  left: 65%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex; 
}

.social-icons li {
    list-style: none;
 } 

.social-icons li  a {
      position: relative;
      display: block;
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      background: #fff;
      font-size: 23px;
      color: #333;
      font-weight: bold;
      margin: 0 6px;
      transition: .4s;
      transform: translateY(100px);
      opacity: 0;
   
  }

.card-travel:hover .social-icons li a {
  transform: translateY(0px);
  opacity: 1; 
}

.social-icons li a:hover {
  background: #000; 
  transition: .2s;
  .fab {
    color: #fff;
  } 
}

.social-icons li a .fab {
  transition: .8s;
    
  &:hover {
      transform: rotateY(360deg);
      color: #fff;
  } 
}

.card-travel:hover li:nth-child(1) a {
    transition-delay: 0.1s;
}
.card-travel:hover li:nth-child(2) a {
  transition-delay: 0.2s;
}
.card-travel:hover li:nth-child(3) a {
  transition-delay: 0.3s;
}
.card-travel:hover li:nth-child(4) a {
  transition-delay: 0.4s;
}

/**** Personal Details ****/

.details {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 200px;
  z-index: 1;
  padding: 10px; 
   
}

.details h3 {
 
    margin: 40px 0 ;
    padding: 0;
    text-align: left;


}

.details h3 .job-title {
        font-size: 4rem;
        margin-top: 2rem;
        line-height: 2.5rem;
        color: #333;
        font-weight: 400;
        text-align: right;
    
  }
 .job-ciudad {
  position: absolute;
  right: 20px;
   bottom: 20px;
        font-size: 4rem;
        line-height: 2.5rem;
        color: #438097;
        font-weight: 600;
    
  }

.jane {
  position: absolute;
  bottom: -120px;
  left: 0;
  opacity: 0;
  background: #fff;
  width: 100%;
  height: 200px;
  z-index: 3;
  padding: 10px;
  transition: .4s;
}

.profile-two .social-icons li a {
  border-radius: 50%;
}

.card-travel:hover .profile-img--two {
  transform: rotateY(180deg);
}

.card-travel:hover .jane {
  bottom: 0;
  left: 0;
  transition-delay: 0.5s;
  opacity: 1;
}

.card-cabezote {
  background: #fff;
  border-radius: 6px;
  height: 80px;
  margin: 1rem;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0px 0px 19px 3px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 19px 3px rgba(0,0,0,0.75);
box-shadow: 0px 0px 19px 3px rgba(0,0,0,0.75);
}

.card-jobs {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.card-jobs:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

