html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, Verdana, sans-serif;
    color: #58585A;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

h1 {
    line-height: 1.2;
    font-size: 1.2rem;
    font-weight: 500;
}

h1 span {
    color: grey;
}

@media screen and (min-width: 992px) {
    h1 {
        line-height: 1.2;
        font-size: 1.5rem;
    }
}

h2 {
    font-size: 1rem;
}

h2 span {
    display: block;
}

a {
    color: #e53518;
    text-decoration: none;
}

.fluid {
    width: 100%;
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
}

@media screen and (min-width: 1024px) {
    section {
        height: 100vh;
    }
}

body:before {
    position: fixed;
    content: '';
    background-color: #58585A;
    background-image: url(Images/body_back.gif);
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}


.wrapper {
    position: relative;
    background: #fff;
    width: 85%;
    margin: 30px auto 30px;
}

@media screen and (min-width: 1024px) {
    .wrapper {
        width: 800px;
        margin-top: 100px;
    }
}

.wrapper .text {
    padding: 30px;
}

.wrapper .images {
    position: relative;
}

.images .logo {
    position: absolute;

}