.warranty-contacts{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.warranty-contacts .contact-item{
  width: 31.7%;
  display: inline-block;
  position: relative;
  margin-bottom: 80px;
    padding: 75px 30px 30px;
    background-color: #fff;
    box-shadow: 0px 12px 30px 0px rgba(174,184,198, 0.20)
}

.warranty-contacts .contact-item .contact-icon{
position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 8px 25px 0px rgba(85,91,99,0.25);
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-out 0s;
  overflow: hidden;
}
.warranty-contacts .contact-item .contact-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.warranty-contacts .contact-item .contact-con h4{
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
    transition: all 0.2s ease-out 0s;
}

.warranty-contacts .contact-item .contact-con p{
  margin-bottom: 17px;
  color: #555b63;
}

.warranty-contacts .contact-item .contact-con a{
    position: relative;
    color: #0e1b2c;
    font-weight: 500;
  padding-bottom: 5px;
}

.warranty-contacts .contact-item .contact-con a:after{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: transparent;
    transition: all 0.2s ease-out 0s;
}

.warranty-contacts .contact-item .contact-con a:hover{
  text-decoration: none;
  color: #2db9dd;
}
.warranty-contacts .contact-item .contact-con a:hover:after{
    background-color: #2db9dd;
    width: 100%;
}
@media screen and (max-width:767px){
  .warranty-contacts{
    justify-content: center;
  }
  
  .warranty-contacts .contact-item{
    width: 90%;
  }

  .warranty-contacts .contact-item .contact-con p{
    word-wrap: break-word;
    word-break: break-all;
  }
}