@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400,700&subset=cyrillic');
body {
    background: url("img/truck.jpg") no-repeat;
    background-size: cover;
	background-color: black;
	background-blend-mode: screen;
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    line-height: 1.3;
    padding: 0;
    margin: 0;
    color: white;
}

a{
    text-decoration: none;
}

.boxed {
    border-color: white;
}
.darkslategray {
    background-color: darkslategray;
}

/* Global */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.container-inner {
    padding: 15px;
}

.container_inner {
    padding: 5px;
    opacity: .8;
}

.subscription {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

#reqs
{
	list-style: circle;
}

.button_1 {
    height: 37px;
    background:green;
    border: 0;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
	font-size: 1.3em;
}

/* Header **/
header {
    padding-top: 15px;
    min-height: 70px;
}

header h1:hover {

}

header nav {
    float: right;
    margin-top: 2px;
}

header nav a {
    text-transform: uppercase;
    font-size: 20px;
	color: white;
}

header nav ul li {
    float: left;
    width: 200px;
    height: 40px;
    background-color: darkslategray;
    opacity: .8;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    margin-right: 3px;
    margin-bottom: 3px;
}

header #branding {
    float: left;

}

#branding h1 {
    margin: 0;
}

#branding a {
    color: white;
}


ul li a {
    text-decoration: none;
    color: white;
    display: block;
}

ul li a:hover {
    background-color: green;
}

ul li.has-dropdown ul {
    display: none;
    z-index: 1;
    position: absolute;
}

ul li.has-dropdown:hover ul {
    display: block;
}

/* Showcase **/
#showcase {
    min-height: 400px;
    text-align: center;
}

#showcase h1 {
    margin-top: 100px;
    font-size: 55px;
    margin-bottom: 10px;
}

#showcase p {
    margin-top: 150px;
    font-size: 25px;
}

/* Newsletter **/

#newsletter {
    color: white;
    opacity: .8;
}


#newsletter input[type="email"] {
    padding: 4px;
    height: 25px;
    width: 250px;
}

/* Boxes **/

#boxes {
    margin-top: 20px;
}

#boxes .box {
    float: left;
    text-align: center;
    width: 30%;
    padding: 10px;
}

#boxes .box img {
    width: 250px;
}

#boxes .boxt img {
    width: 300px;
    align-self: right;
}
footer {
	position: absolute;
    padding: 10px;
	/*bottom: 0;*/
	box-sizing: border-box;
    margin-top: 20px;
    color: white;
    background-color: darkslategray;
    text-align: center;
    opacity: .7;
	width: 100%;
}

@media screen and (max-width: 768px) {
    .subscription{
        display: block;
    }
    .subscription form > *{
        width: 100%!important;
    }
    #boxes .box {
        width: 100%;
    }
}
