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

html,
body {
    margin: 0;
}

body {
    background-color: #ffffff;
    font-family: Tahoma, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: auto;
}

header {
    background-color: #454545;
    height: 120px;
}

header > div {
    height: 100%;
    position: relative;
    background-image: url(../images/logo-3.png);
    background-position: bottom right 20px;
    background-repeat: no-repeat;
}

header .logo {
    margin: 10px 0;
}

header .logo a {
    color: #ee6a1b;
    font-size: 32px;
    font-weight: normal;
    line-height: 40px;
    text-decoration: none;
}

header .logo a:hover {
    color: #ee6a1b;
    text-decoration: underline;
}

header .nav-pills {
    margin-top: 40px;
}

footer {
    margin-top: auto;
}

footer {
    background-color: #505050;
    color: white;
}

footer div.box {
    width: 25%;
    float: left;
    min-height: 100px;
}

footer h4 {
    color: #fff;
}

header a,
footer a {
    color: #cccccc;
}

header a:hover,
footer a:hover {
    color: #ffffff;
}

h1 {
    font-size: 2em;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a {
    color: inherit;
}

a {
    color: #d04a00;
}

a:hover {
    color: #d04a00;
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

ul.unstyled,
ol.unstyled {
    padding-left: 0;
    list-style: none;
}

.text-right {
    text-align: right;
}

img.block {
    width: 100%;
    display: block;
}
