﻿/***********hover link**********/
.link {
    color: #000;
    /*background-color: #fff;
    font-family: 'Maven Pro', sans-serif;
    font-size: 27px;*/
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    line-height: 25px;
    padding: 0 4px 3px;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    transition: all 0.3s;
}

    .link:hover {
        color: #555;
        animation: clock 1s infinite linear;
    }

@keyframes clock {
    0% {
        box-shadow: 2px 0 0 2px #ff6348, 0 0 10px -7px #555;
    }

    15% {
        box-shadow: 2px 2px 0 2px #3742fa, 0 0 10px -5px #555;
    }

    30% {
        box-shadow: 0 2px 0 2px #ff4757, 0 0 10px -5px #555;
    }

    45% {
        box-shadow: -2px 0 0 2px #1e90ff, 0 0 10px -5px #555;
    }

    60% {
        box-shadow: -2px -2px 0 2px #ff6348, 0 0 10px -5px #555;
    }

    75% {
        box-shadow: 0 -2px 0 2px #3742fa, 0 0 10px -5px #555;
    }

    90% {
        box-shadow: -2px -2px 0 2px #ff4757, 0 0 10px -5px #555;
    }

    100% {
        box-shadow: 0 0 0 2px #1e90ff, 0 0 10px -5px #555;
    }
}

@media only screen and (max-width: 767px) {
    .link {
        margin: 0 0 20px 0;
    }
}
/**************button*****************/
.btn {
    color: #fff;
    font-family: 'Baloo Bhai', cursive;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 10px 3px;
    border-radius: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

    .btn:hover {
        color: #fff;
        text-shadow: 0 0 5px #555;
    }

    .btn:before,
    .btn:after {
        content: '';
        background-color: #0abde3;
        height: 100%;
        width: 50%;
        transform: skewX(30deg) translateX(100%) translateY(15%);
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        transition: all 0.3s;
    }

    .btn:after {
        background-color: #222;
        transform: skewX(30deg) translateX(-100%) translateY(-15%);
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
    }

    .btn:hover:before,
    .btn:hover:after {
        transform: skewX(0) translateX(0) translateY(0);
    }

    .btn.red:before {
        background: #ff6b6b;
    }

    .btn.green:before {
        background: #1dd1a1;
    }

    .btn.orange:before {
        background: #ffa047;
    }

@media only screen and (max-width: 767px) {
    .btn {
        margin-bottom: 20px;
    }
}