.wrapper_card .outer {
  position: relative;
  background: #fff;
  padding: 22px 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 10px;
}
.wrapper_card .outer:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.24);
    transition: all 0.2s ease;
}
.wrapper_card .logo-overlay {
  background: rgba(255, 255, 255, 0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrapper_card img {
  position: absolute;
  top: 0px;
  right: -20px;
  z-index: 0;
  animation-delay: 0.5s;
}
.wrapper_card .content {
  animation-delay: 0.3s;
  left: 20px;
  z-index: 3  
}
.wrapper_card h3 {
  color: #07215f;
    font-family: "Montserrat";
    line-height: 1.3;
    margin-top: 10px;
}
.wrapper_card p {
  font-size: 13px;
  line-height: 1.4;
  color: #111;
  margin: 8px 0;
  
}
.wrapper_card .website-link {
  display: inline-block;
  color: #fff;
  background: cornflowerblue;
  padding: 0px 15px;
  border-radius: 50px;
  font-size: .9em;
  position: absolute;
  right: 25px;
  bottom: 25px;
}
.wrapper_card .website-link i {
  font-size: 12px;
  transform: rotate(0.15turn);
  margin-left: 5px;
}
.wrapper_card .social-icons ul {
  margin: 5px 0;
}
.wrapper_card .social-icons ul li {
  float: left;
  list-style: none;
  margin-right: 10px;
}
.wrapper_card .social-icons ul li a {
  font-size: 14px;
  padding: 5px;
  border: 1px solid #eee;
}

.wrapper_card .button {
  width: fit-content;
  height: fit-content;
  margin: 20px 0  10px 0;
}
.wrapper_card .button a {
  display: inline-block;
  overflow: hidden;
  position: relative;
  font-size: 11px;
  color: #111;
  text-decoration: none;
  padding: 4px 15px;
  border: 1px solid #eee;
  font-weight: bold; 
}
.wrapper_card .button a.mail-btn {
  margin-right: -4px;
}
.wrapper_card .button a:after{
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 0%;
  background: #07215f;
  height: 100%;
  z-index: -1;
  transition: width 0.3s ease-in-out;
  transform: skew(-25deg);
  transform-origin: right;
}
.wrapper_card .button a:hover:after {
  width: 150%;
  left: -10px;
  transform-origin: left;
  
}
.wrapper_card .button a:hover {
  color: #fff;
  transition: all 0.2s ease;
}
.wrapper_card .button a:nth-of-type(1) {
  border-radius: 50px 0 0 50px;
  border-right: none;
}

.wrapper_card .button a:nth-of-type(2) {
  border-radius: 0px 50px 50px 0;
}