@font-face {
    font-family: 'ProximaNova';
    font-weight: 700;
    font-style: normal;

    src: url('../fonts/ProximaNova-Bold.woff') format('woff');
}

@font-face {
    font-family: 'ProximaNova';
    font-weight: 500;
    font-style: normal;

    src: url('../fonts/ProximaNova-Semibold.woff') format('woff');
}

@font-face {
    font-family: 'ProximaNova';
    font-weight: 400;
    font-style: normal;

    src: url('../fonts/ProximaNova-Reg.woff') format('woff');
}

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

html, body {
    font-family: 'ProximaNova', sans-serif;
    width: 100%;
    height: 100%;
}

body {
    min-height: 100%;
}

/*
 * COMMON
 */

a {
    text-decoration: none;
}

a.button {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    height: 50px;
    line-height: 48px;
    padding: 0 22px;
    text-transform: uppercase;
    color: #ffffff;
    border: 2px solid #000000;
    background-color: #000000;
    letter-spacing: 1.2px;
    text-align: center;
    transition: all 0.5s;
}

a.button:hover {
    border: 2px solid #000000;
    background: #ffffff;
    color: #000000;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
}

.wrapper {
    max-width: 790px;
    margin: auto;
}

p {
    margin: 0 0 24px;
}

@media (max-width: 480px) {
    a.button {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 20px 100px;
    }
}

/*
 * HEADER BLOCK
 */
header {
    text-align: center;
    padding: 50px 0 30px;
}

.header-logo {
    position: relative;
    display: inline-block;
    width: 82px;
    height: 82px;
}

.header-logo-img {
    width: 26px;
    position: absolute;
    top: 23px;
    left: 28px;
}

.header-logo-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.header-logo.running .header-logo-text {
    animation: rotation 5s infinite ease-in-out;
    -moz-animation: rotation 5s infinite ease-in-out;
    -webkit-animation: rotation 5s infinite ease-in-out;
}

@media (max-width: 480px) {
    header {
        padding-top: 2px;
    }

    .header-logo {
        width: 70px;
        height: 70px;
    }

    .header-logo-img {
        width: 22px;
        top: 20px;
        left: 25px;
    }
}

/*
 * CONTENT BLOCK
 */

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-bottom: 20px;
}

.content-title {
    text-align: center;
    font-weight: 500;
    font-size: 40px;
    line-height: 50px;
    color: #000000;
    margin-bottom: 24px;
}

.content-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 36px;
    line-height: 28px;
}

.content-actions {
    text-align: center;
    margin-bottom: 24px;
}

.content-social {
    text-align: center;
}

.content-social span {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-right: 19px;
}

.content-social .social-network + .social-network {
    margin-left: 15px;
}

.content-social .facebook img {
    height: 17px;
}

.content-social .twitter img {
    height: 14px;
}

.content-social .linkedin img {
    height: 15px;
}

.content-social span, a {
    vertical-align: middle;
}

@media (max-width: 480px) {
    .content-title {
        font-size: 28px;
        line-height: 40px;
    }

    .content-description {
        font-size: 16px;
        line-height: 22px;
    }
}

/*
 * FOOTER BLOCK
 */

footer .wrapper {
    max-width: 820px;
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    color: #000000;
    letter-spacing: 0;
    opacity: 0.4;
}

.footer-company {
    text-align: center;
    margin-bottom: 24px;
}

.footer-company img {
    width: 53px;
}

.footer-company span {
    display: block;
    font-size: 13px;
    margin-bottom: 14px;
}

@media (max-width: 480px) {
    .footer-company {
        margin-bottom: 8px;
    }

    .footer-company span {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 10px;
        line-height: 14px;
    }
}


@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}
