/*CSS reset:*/
html,
body,
div,
span,
h1,
p,
a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    font-size: 18pt;
}

body {
    line-height: 1;
    -webkit-text-size-adjust: none;
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.0;
    word-wrap: break-word;
    overflow: auto !important;
}

ol,
ul {
    list-style: none;
}

a {
    -moz-transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    -webkit-transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    -ms-transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    color: inherit;
    text-decoration: underline;
}

body:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    -moz-pointer-events: none;
    -webkit-pointer-events: none;
    -ms-pointer-events: none;
    pointer-events: none;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-attachment: scroll;
}

#wrapper {
    -webkit-overflow-scrolling: touch;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    padding: 1.5625rem 1.5625rem 1.5625rem 1.5625rem;
}

#main {
    display: flex;
    position: relative;
    max-width: 100%;
    z-index: 1;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    text-align: center;
    background-color: rgba(34, 36, 43, 0.459);
    border-radius: 2rem 2rem 2rem 2rem;
}

#main>.inner {
    position: relative;
    z-index: 1;
    border-radius: inherit;
    padding: 3.125rem 2.5rem;
    max-width: 100%;
    width: 25rem;
}

#main>.inner>* {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
    -moz-transition: opacity 0.5s ease-in-out 0.125s;
    -webkit-transition: opacity 0.5s ease-in-out 0.125s;
    -ms-transition: opacity 0.5s ease-in-out 0.125s;
    transition: opacity 0.5s ease-in-out 0.125s;
}

#main>.inner> :first-child {
    margin-top: 0 !important;
}

#main>.inner> :last-child {
    margin-bottom: 0 !important;
}

.image {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    display: block;
}

.image img {
    width: 9rem;
    border-radius: 100%;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
}

.image:not(:first-child) {
    margin-top: 1.5rem !important;
}

.image:not(:last-child) {
    margin-bottom: 1.5rem !important;
}

h1 {
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.075rem;
    width: 100%;
    font-size: 2.25em;
    line-height: 1.175;
    font-weight: 400;
}

p {
    color: rgba(255, 255, 255, 0.629);
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.025rem;
    width: 100%;
    font-size: 1em;
    line-height: 1.425;
    font-weight: 400;
}

.icons {
    cursor: default;
    padding: 0;
    letter-spacing: 0;
    font-size: 1.25em;
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
}

.icons li {
    display: inline-block;
    vertical-align: middle;
    margin: 0.5rem;
    position: relative;
    z-index: 1;
}

.icons li a {
    border: solid 1px #FFFFFF;
    display: flex;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    border-radius: 100%;
    width: 2em;
    height: 2em;
}

.icons li a svg {
    width: 60%;
    height: 60%;
    fill: #000000;
    display: block;
    position: relative;
    -moz-transition: fill 0.25s ease;
    -webkit-transition: fill 0.25s ease;
    -ms-transition: fill 0.25s ease;
    transition: fill 0.25s ease;
}

.icons li a .label {
    display: none;
}

.icons .icon svg {
    fill: #fff;
}

.icons .icon {
    border: solid 1px rgba(255, 255, 255, 0.2);
}

.icons .icon:hover {
    border-color: #fff !important;
}

.icons .icon:hover svg {
    fill: #fff !important;
}

@media (max-width: 1680px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 1280px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 980px) {
    html {
        font-size: 11pt;
    }
}

@media (max-width: 736px) {
    html {
        font-size: 11pt;
    }

    #main>.inner {
        padding: 3.125rem 2rem;
    }

    #main>.inner>* {
        margin-top: 1.125rem;
        margin-bottom: 1.125rem;
    }

    .image:not(:first-child) {
        margin-top: 1.125rem !important;
    }

    .image:not(:last-child) {
        margin-bottom: 1.125rem !important;
    }

    .image img {
        width: 7rem;
    }

    h1 {
        letter-spacing: -0.065625rem;
        width: 100%;
        font-size: 2.25em;
        line-height: 1.175;
    }

    p {
        letter-spacing: -0.021875rem;
        width: 100%;
        font-size: 1em;
        line-height: 1.425;
    }

    .icons {
        font-size: 1.25em;
        width: calc(100% + 1rem);
        margin-left: -0.5rem;
    }

    .icons li {
        margin: 0.5rem;
    }
}

@media (max-width: 480px) {
    #main>.inner>* {
        margin-top: 0.984375rem;
        margin-bottom: 0.984375rem;
    }
}

@media (max-width: 360px) {
    #main>.inner {
        padding: 2.34375rem 1.5rem;
    }

    #main>.inner>* {
        margin-top: 0.84375rem;
        margin-bottom: 0.84375rem;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .icons {
        width: calc(100% + 0.75rem);
        margin-left: -0.375rem;
    }

    .icons li {
        margin: 0.375rem;
    }
}
