@import url('//fonts.googleapis.com/css?family=Montserrat:300,400&subset=latin');



html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,figcaption,figure,footer,header,legend,nav,section{display:block}audio,canvas,label,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}h1{margin:.7em 0;font-size:2em}b,strong{font-weight:700}img{height:auto;max-width:100%;border:0}


html,
html * {
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    line-height: 1.5;
    color: #444;
}

a { color: #2bace3; }
a:hover { color: #111; }

.content {
    width: 760px;
    margin: 2em auto;
    background: #fff;
}
.mast {
    display: block;
}
.block {
    padding: 2em;
}

h1 {
    font-size: 2.19em;
    line-height: 1.3;
    color: #176db4;
    font-weight: 200;
    text-align: center;
}

ol {
    counter-reset: nums;
    padding: 0;
}

ol li {
    counter-increment: nums;
    margin-bottom: 1em;
    list-style: none;
    padding-left: 3em;
    position: relative;
}

ol li:before {
    content: counter(nums);
    color: #fff;
    background: #176db4;
    line-height: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.share-button {
    text-align: center;
    margin: 0;
    padding: 0 0 2.5em;
}
.share-button a {
    display: inline-block;
    vertical-align: middle;
    background: #176db4;
    color: #fff;
    text-align: center;
    padding: 1em 1.5em;
    transition: .15s;
    text-decoration: none;
    font-weight: bold;
}
.share-button a:hover {
    background: #2bace3;
}