section.service {
    width: 100%;
    margin: 0;
    padding-top: 72px;
    padding-bottom: 72px;

    color: #333;
    background: #f0f0f0;

    text-align: center;
}

section.service h2 {
    margin: 0;
    padding: 0;
    margin-bottom: 24px;

    font-size: 2.1em;
    text-transform: uppercase;
    font-weight: normal;
}

section.service a.link {
    color: #486fdb;
    text-decoration: underline;
    cursor: pointer;
}
section.service p {
    color: #5e5e5e;
    margin-top: 24px;
    margin-bottom: 24px;
}

section.service .col {
    position: relative;
    display: inline-block;
    width: calc(100% - 48px);
    max-width: 500px;
    margin: 24px;
    text-align: center;
    vertical-align: middle;
}
section.service .col.texts {
    text-align: justify;
}
section.service .col.tags {
    max-width: 434px;
}

/* Tag content */
section.service .tag {
    position: relative;
    width: 100%;
    max-width: 430px;
    border-radius: 8px;
    vertical-align: middle;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: background-color 1s ease, border 1s ease;
            transition: background-color 1s ease, border 1s ease;
}
section.service .tag > i,
section.service .tag > p {
    display: inline-block;
    vertical-align: middle;
    margin-top: 24px;
    margin-bottom: 24px;
    -webkit-transition: color .5s ease, transform .5s ease;
            transition: color .5s ease, transform .5s ease;
}
section.service .tag:hover p  {
    color: #fff;
}

/* Copy tag animation*/
section.service .tag::after {
    content: attr(data-copytext);
    position: absolute;
    top: calc(50% - 9px);
    right: 0;
    width: 80%;
    height: 18px;

    vertical-align: middle;
    font-size: 1.2em;
    transform: translateY(60px);

    -webkit-transition: color .5s ease, transform .5s ease;
            transition: color .5s ease, transform .5s ease;
}
section.service .tag.copied > p {
    transform: translateY(-60px);
}
section.service .tag.copied::after {
    transform: translateY(0);
}


/* Hover animation */
section.service .tag.malt {
    border: 2px solid #fc5656;
    margin-bottom: 24px;
}
section.service .tag.malt:hover {
    border: 2px solid transparent;
    color: #fff;
    background-color: #fc5656;
}
section.service .tag.linkedin {
    border: 2px solid #0a66c2;
}
section.service .tag.linkedin:hover {
    border: 2px solid transparent;
    color: #fff;
    background-color: #0a66c2;
}



/* Tag image animation */
section.service .tag > i {
    width: 40px;
    height: 40px;
    margin-right: 24px;
    -webkit-mask-size: cover;
            mask-size: cover;
}
section.service .tag.malt > i {
    background-color: #fc5656;

    -webkit-mask-image: url(../../images/mask/malt.svg);
            mask-image: url(../../images/mask/malt.svg);

    -webkit-transition: background-color .75s ease, transform .75s ease;
            transition: background-color .75s ease, transform .75s ease;
}
section.service .tag.malt:hover > i {
    background-color: #fff;
    transform: rotate(360deg);
}
section.service .tag.linkedin > i {
    background-color: #0a66c2;

    -webkit-mask-image: url(../../images/mask/linkedin.svg);
            mask-image: url(../../images/mask/linkedin.svg);

    -webkit-transition: background-color .75s ease;
            transition: background-color .75s ease;
}
section.service .tag.linkedin:hover > i {
    background-color: #ffffff;
    -webkit-animation: ease .75s linkedin-anim forwards;
            animation: ease .75s linkedin-anim forwards;
}

@keyframes linkedin-anim {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    45% {
        opacity: 0;
        transform: translateY(-50px);
    }
    46%, 55% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}