@font-face {
  font-family: 'CraftworkSans';
  src: url('Craftwork_Sans_Family/Webfonts/CraftworkSans-Bold.eot');
  src: url('Craftwork_Sans_Family/Webfonts/CraftworkSans-Bold.woff');
  src: url('Craftwork_Sans_Family/Webfonts/CraftworkSans-Bold.woff2');
  font-weight: bold;
}
@font-face {
  font-family: 'CraftworkSans';
  src: url('Craftwork_Sans_Family/Webfonts/CraftworkSans-Medium.eot');
  src: url('Craftwork_Sans_Family/Webfonts/CraftworkSans-Medium.woff');
  src: url('Craftwork_Sans_Family/Webfonts/CraftworkSans-Medium.woff2');
  font-weight: medium;
}
@font-face {
  font-family: 'CraftworkSans';
  src: url('Craftwork_Sans_Family/Webfonts/CraftworkSans-Regular.eot');
  src: url('Craftwork_Sans_Family/Webfonts/CraftworkSans-Regular.woff');
  src: url('Craftwork_Sans_Family/Webfonts/CraftworkSans-Regular.woff2');
  font-weight: regular;
}

body {
    background-color: #000;
    font-family: 'CraftworkSans', sans-serif;
    font-style: regular;
    font-weight: 300;
    margin: 0;
}



.hero {
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    max-width: 340px;
}
    .hero__photo {
        border-radius: 24px;
        display: block;
        height: 100px;
        margin: 30px auto 15px;
        width: 100px;
    }
    .hero__name {
        color: #fff;
        display: block;
        font-size: 20px;
        font-weight: bold;
        line-height: 1.75;
        letter-spacing: .98;
        text-align: center;
    }
    .hero__description {
        color: #666666;
        font-size: 15px;
        font-weight: medium;
        line-height: 1.75;
        letter-spacing: 1.25;
        text-align: center;
    }
        .hero__description a {
            color: #C5E278;
            font-weight: bold;
            text-decoration: none;
        }
        .hero__description a[href="https://bindy.app"]:before {
            background-image: url('bindy-icon.svg');
            -webkit-background-size: cover;
            background-size: cover;
            display: inline-block;
            content: " ";
            height: 16px;
            margin: 0 4px 0 0px;
            position: relative;
            top: 2px;
            width: 16px;
        }
        .hero__description span {
            color: #999;
            cursor: pointer;
            font-weight: bold;
            text-decoration: none;
        }
    .hero__links {
        display: block;
        margin: 30px auto;
    }
        .hero__links__item {
            background-color: #1a1a1a;
            border-radius: 15px;
            color: #666;
            display: inline-block;
            float: left;
            font-size: 12px;
            font-weight: bold;
            line-height: 1.6;
            letter-spacing: 1.05;
            margin-top: 12px;
            padding: 24px 20px 21px;
            text-decoration: none;
            transition: all ease-in-out .3s;
            vertical-align: top;
        }
        .hero__links__item:hover {
            background-color: rgba(197, 226, 120, .18);
            color: #C5E278;
        }
        .hero__links__item + .hero__links__item {
            margin-left: 12px;
        }
        .hero__links__item.-link-1-3 {
            text-align: center;
            width: calc(((100% - (12px * 2)) / 3) - (20px * 2));
        }
        .hero__links__item.-link-1-2 {
            text-align: left;
            width: calc(((100% - 12px) / 2) - (20px * 2));
        }
            .hero__links__item svg {
                stroke: #666;
                transition: all ease-in-out .3s;
            }
            .hero__links__item:hover svg {
                stroke: #C5E278;
            }
            .hero__links__item .caption {
                margin-top: 15px;
            }
