.email-signature{
background: #fff;
font-family: 'Lato', sans-serif;
font-size: 0;
box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
position: relative;
z-index: 1;
}
.email-signature:after{
content: '';
background: #efefef;
width: 110px;
height: 100%;
transform: translateX(-50%) translateY(-50%);
position: absolute;
top: 50%;
left: 59%;
z-index: -1;
clip-path:polygon(35% 0, 100% 50%, 35% 100%, 15% 100%, 80% 50%, 15% 0);
}
.email-signature .signature-icon{
color: #fff;
background: #45546b;
font-size: 60px;
text-align: center;
line-height: 100px;
width: 120px;
height: 120px;
border: 10px solid #fff;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
transform: translateX(-50%) translateY(-50%);
position: absolute;
top: 50%;
left: 50%;
z-index: 1;
}
.email-signature .signature-content{
background-color: #fe2400;
width: 50%;
padding: 30px 70px 30px 15px;
margin: 0;
list-style: none;
display: inline-block;
clip-path: polygon(80% 0, 100% 50%, 80% 100%, 0 100%, 0 0);
}
.email-signature .signature-content li{
color: #fff;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.5px;
margin: 0 0 10px;
}
.email-signature .signature-content li:last-child{ margin-bottom: 0; }
.email-signature .signature-content li i{
color: #fff;
background: #45546b;
font-size: 11px;
text-align: center;
line-height: 20px;
width: 20px;
height: 20px;
margin-right: 3px;
border-radius: 20px 20px;
}
.email-signature .signature-details{
color: #45546b;
background: #ffbb00;
text-align: center;
width: 50%;
padding: 20px 15px 20px 70px;
vertical-align: top;
display: inline-block;
transform: translateY(50%);
clip-path: polygon(100% 0, 100% 100%, 25% 100%, 0 50%, 25% 0);
}
.email-signature .title{
font-size: 22px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.5px;
margin: 0;
}
.email-signature .post{
font-size: 17px;
font-weight: 600;
text-transform: capitalize;
letter-spacing: 1px;
display: block;
}
@media screen and (max-width:576px){
.email-signature:after{
transform: translateX(0);
width: 100%;
height: 100px;
left: 0;
clip-path: polygon(100% 0, 100% 20%, 50% 100%, 0 20%, 0 0, 50% 80%);
}
.email-signature .signature-icon{
transform: translateX(-50%) translateY(0);
top: 150px;
left: 50%;
}
.email-signature .signature-details,
.email-signature .signature-content{
width: 100%;
text-align: center;
}
.email-signature .signature-details{
padding: 75px 15px 20px;
transform: translateY(0);
clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 100%, 0 100%);
}
.email-signature .signature-content{
padding: 20px 20px 80px;
clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
}
}