html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body
{
    background: #FFF;
    font-family: "Spartan", sans-serif;
    font-weight: 400;
    color: #392b04;
    font-size: 20px;
    margin: 0px;
}

.intro
{
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0px auto;
    background: #FFF;
}

    .intro .logo
    {
        margin-bottom: 100px;
    }

    .intro .footer
    {
        margin-top: 100px;
    }

    .intro .text
    {
        font-size: 24px;
        font-weight: bold;
    }

    .intro .contacts
    {
        margin-top: 30px;
        padding-top: 30px;
        position: relative;
    }

        .intro .contacts::before
        {
            content: " ";
            position: absolute;
            top: 0px;
            left: 50%;
            height: 6px;
            background: #70c102;
            width: 40px;
            top: -6px;
            margin-left: -20px;
        }
