input:focus,
textarea:focus {
    outline: 0;
    box-shadow: 0px 0px 5px #00b2dc;
}

html,
body {
    font-family: 'Hind', sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0px;
    padding: 0px;
}

header {
    background: url('images/header_bg.png') 50%;
    background-size: cover;
    height: 624px;
    position: relative;
}

header .container {
    position: relative;
}

header .languages-box {
    position: absolute;
    right: 0px;
    margin: auto;
    z-index: 22222;
}

header .languages-box form {
    display: inline-block;
}

header .languages-box form input[type="submit"] {
    background: rgba(76, 160, 206, 0.7);
    border: 0px;
    height: 30px;
    width: 40px;
    margin-bottom: 2px solid #2974ab;
    cursor: pointer;
}

header .languages-box .cs-lang input[type="submit"] {
    background: url('images/flag_cs.png') 50% no-repeat, rgba(76, 160, 206, 0.7);
}

header .languages-box .en-lang input[type="submit"] {
    background: url('images/flag_en.png') 50% no-repeat, rgba(76, 160, 206, 0.7);
}

.navbar {
    background: transparent;
    border: 0px;
    margin-left: -15px;
}

.navbar .navbar-brand {
    margin-top: 18px;
}

.navbar .nav {
    margin-top: 50px;
}

.navbar .nav li {
    margin-left: 13px;
}

@media (min-width:768px) {
    .navbar .nav li:nth-child(1):hover ~ hr {
        margin-left: 0%;
        opacity: 1;
    }
    .navbar .nav li:nth-child(2):hover ~ hr {
        margin-left: 20%;
        opacity: 1;
    }
    .navbar .nav li:nth-child(3):hover ~ hr {
        margin-left: 40%;
        opacity: 1;
    }
    .navbar .nav li:nth-child(4):hover ~ hr {
        margin-left: 60%;
        opacity: 1;
    }
    .navbar .nav li:nth-child(5):hover ~ hr {
        margin-left: 80%;
        opacity: 1;
    }
    hr {
        height: 3px;
        width: 20%;
        margin: 0;
        background: #fff;
        border: none;
        transition: .3s ease-in-out;
        opacity: 1;
        position: relative;
        float: left;
        opacity: 0;
    }
}

.navbar .nav li a {
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.navbar .nav li a:hover {
    color: white;
}

.navbar .navbar-toggle {
    margin-top: 60px;
    margin-bottom: 20px;
}

header h1 {
    color: white;
    margin-top: 52px;
    font-size: 64px;
    margin-left: -2px;
    line-height: 62px;
    position: relative;
    font-weight: 700;
}

@media (max-width:768px) {
    header h1 {
        font-size: 40px;
    }
}

header h1 .h1bonus {
    width: 125px;
    position: absolute;
    padding: 6px;
    padding-left: 17px;
    display: block;
    background: #faf70e;
    font-size: 14px;
    font-weight: bold;
    color: black;
    line-height: 14px;
    margin-left: 170px;
    margin-top: -17px;
    -ms-transform: rotate(-9deg);
    -webkit-transform: rotate(-9deg);
    transform: rotate(-9deg);
}

header h1 .h1bonus {
    -moz-animation-name: padDolu;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease-in;
    -moz-animation-duration: 6s;
    -webkit-animation-name: padDolu;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-duration: 6s;
    animation-name: padDolu;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 6s;
}

@-moz-keyframes padDolu {
    0% {
        margin-top: -450px;
    }
    50% {
        margin-top: -450px;
    }
    60% {
        margin-top: -17px;
    }
    75% {
        margin-top: -17px;
    }
    100% {
        margin-top: -17px;
    }
}

@-webkit-keyframes padDolu {
    0% {
        margin-top: -450px;
    }
    50% {
        margin-top: -450px;
    }
    60% {
        margin-top: -17px;
    }
    75% {
        margin-top: -17px;
    }
    100% {
        margin-top: -17px;
    }
}

@keyframes padDolu {
    0% {
        margin-top: -450px;
    }
    50% {
        margin-top: -450px;
    }
    60% {
        margin-top: -17px;
    }
    75% {
        margin-top: -17px;
    }
    100% {
        margin-top: -17px;
    }
}

header h2 {
    color: white;
    font-size: 18px;
    margin-top: 40px;
    line-height: 22px;
    font-weight: 300;
}

header .read-more {
    color: white;
    border: 3px solid white;
    margin: 3px;
    width: 185px;
    margin-top: 25px;
    height: 62px;
    font-weight: 600;
    font-size: 18px;
    padding-top: 17px;
    transition: all 0.2s;
}

header .read-more a {
    color: white;
    text-decoration: none;
}

header .read-more:hover {
    border: 3px solid transparent;
    background: #fff;
}

header .read-more:hover a {
    color: #499bc3;
}

@-moz-keyframes carRun {
    0% {
        margin-left: 110px;
        -moz-transform: scale(0.5);
    }
    100% {
        margin-left: 390px;
        -moz-transform: scale(0.5);
    }
}

@-webkit-keyframes carRun {
    0% {
        margin-left: 110px;
        -webkit-transform: scale(0.5);
    }
    100% {
        margin-left: 390px;
        -webkit-transform: scale(1);
    }
}

@keyframes carRun {
    0% {
        margin-left: 110px;
        transform: scale(0.5);
    }
    100% {
        margin-left: 390px;
        transform: scale(1);
    }
}

@-moz-keyframes carRunRes {
    0% {
        margin-left: 110px;
        -moz-transform: scale(0.5);
    }
    100% {
        margin-left: 220px;
        -moz-transform: scale(0.5);
    }
}

@-webkit-keyframes carRunRes {
    0% {
        margin-left: 110px;
        -webkit-transform: scale(0.5);
    }
    100% {
        margin-left: 220px;
        -webkit-transform: scale(1);
    }
}

@keyframes carRunRes {
    0% {
        margin-left: 110px;
        transform: scale(0.5);
    }
    100% {
        margin-left: 220px;
        transform: scale(1);
    }
}


header .kamion {
    margin-left: 390px;
    margin-top: -310px;
    -moz-animation-name: carRun;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease-in;
    -moz-animation-duration: 0.3s;
    -webkit-animation-name: carRun;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-duration: 0.3s;
    animation-name: carRun;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 3s;
}

@media (min-width:992px) and (max-width:1200px) {
    header .kamion {
        margin-left: 220px;
        margin-top: -310px;
        -moz-animation-name: carRunRes;
        -moz-animation-iteration-count: 1;
        -moz-animation-timing-function: ease-in;
        -moz-animation-duration: 0.3s;
        -webkit-animation-name: carRunRes;
        -webkit-animation-iteration-count: 1;
        -webkit-animation-timing-function: ease-in;
        -webkit-animation-duration: 0.3s;
        animation-name: carRunRes;
        animation-iteration-count: 1;
        animation-timing-function: ease-in;
        animation-duration: 3s;
    }
}

.content {
    font-family: Ubuntu;
}

.content .o-nas h3 {
    font-weight: bold;
    font-size: 45px;
    margin-top: 90px;
    margin-left: 22px;
}

.content .o-nas p {
    margin-top: 95px;
}

@media (min-width:992px){

.content .o-nas .title-block:after {
    display: block;
    width: 2px;
    height: 195px;
    content: '';
    background: #4a98bf;
    position: absolute;
    top: 0px;
    right: 0;
    margin-right: 33px;
}

.content .o-nas .title-block:before {
    display: block;
    width: 18px;
    height: 18px;
    content: '';
    background: #4a98bf;
    border-radius: 50%;
    position: absolute;
    top: 193px;
    right: 0;
    margin-right: 25px;
}
}

.content .fotogalerie {
    margin-top: 110px;
    height: 205px;
}

.content .fotogalerie h3 {
    font-family: 'Hind';
    font-weight: 700;
    font-size: 30px;
    margin-left: 23px;
    font-weight: bold;
}

@media (min-width:992px){
.content .fotogalerie .title-block:after {
    display: block;
    width: 2px;
    height: 205px;
    content: '';
    background: #4a98bf;
    position: absolute;
    top: 0px;
    right: 0;
    margin-right: 33px;
}

.content .fotogalerie .title-block:before {
    display: block;
    width: 12px;
    height: 12px;
    content: '';
    background: #4a98bf;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: 0;
    margin-right: 28.2px;
}
}

.content .fotogalerie .gallery-thumb-area {
    padding: 0;
    margin-right: px;
    margin-top: 20px;
}

.content .fotogalerie .gallery-thumb-area:last-child {
    margin-right: px;
}

.content .fotogalerie .gallery-thumb-area img {
    max-width: 95%;
    max-height: 95%;
}

.sluzby {
    background: #f4f4f4;
    min-height: 450px;
}

.sluzby h3 {
    font-family: 'Ubuntu';
    font-weight: 700;
    font-size: 45px;
    margin-top: 38px;
    margin-left: 10px;
}

.sluzby .item {
    margin-top: 20px;
    border: 4px solid #eaecf0;
    margin-left: 10px;
    margin-top: 40px;
    min-height: 250px;
}

.sluzby .item:first-child {
    margin-left: 5px;
}

.sluzby .item img {
    margin-top: 20px;
}

.sluzby .item h4 {
    font-weight: 700;
    font-size: 21px;
    font-family: Hind;
    margin-top: 25px;
}

.sluzby .item p {
    font-family: Hind;
    color: #a5a9aa;
    line-height: 17px;
}

.sluzby .bigpic {
    margin-top: 55px;
    margin-left: -65px;
}

.partneri h3 {
    font-family: 'Ubuntu';
    font-weight: 700;
    font-size: 45px;
    margin-top: 45px;
    margin-left: 20px;
    text-transform: uppercase;
}

.partneri .loga {
    height: 80px;
    display: table;
    margin-top: 60px;
    width:100%;
}

.partneri .loga .logo-area {
    position: relative;
    min-height: 60px;
}

.partneri .loga .logo-area img{
    margin-left:auto;
    margin-right:auto;
}

footer {
    background: #3c414c;
    margin-top: 10px;
    min-height: 830px;
    font-family: 'Ubuntu';
}

footer h3 {
    font-weight: 700;
    font-size: 45px;
    margin-top: 50px;
    margin-left: 10px;
    text-transform: uppercase;
    color: white;
}

footer .mapa {
    background: url('images/map.png');
    width: 256px;
    height: 146px;
    margin-top: 20px;
}

footer .mapa img {
    margin-left: 190px;
    margin-top: 70px;
}

footer p {
    padding-top: 20px;
    display: block;
    line-height: 24.1px;
}

footer .left-side:after {
    display: block;
    width: 2px;
    height: 225px;
    content: '';
    background: #fff;
    position: absolute;
    top: -110px;
    right: 40px;
    margin-right: 33px;
}

footer .left-side:before {
    display: block;
    width: 18px;
    height: 18px;
    content: '';
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 100px;
    right: 40px;
    margin-right: 25px;
}

footer .mapa span {
    color: #1aa3e8;
    font-weight: bold;
    font-size: 14px;
    margin-left: 130px;
    margin-top: -15px;
    position: relative;
    display: block;
}

footer p {
    margin-left: 10px;
    color: #9b9fa4;
    font-size: 16px;
    margin-top: 20px;
}

footer p strong {
    color: white;
}

footer h5 {
    font-family: Hind;
    color: white;
    font-size: 17.2px;
    margin-top: 65px;
}

footer form {
    width: 100%;
}

footer form input,
footer form textarea {
    background-color: transparent;
    height: 60px;
    width: 100%;
    border: 3px solid #62666f;
    padding: 10px;
    margin-top: 5px;
    font-family: Hind;
    font-size: 17px;
    color: #808591;
}

footer form textarea {
    height: 140px;
}

footer input[type="submit"] {
    background: url('images/mail.png') 95% 50% no-repeat, #2c87c4;
    height: 60px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    padding-left: 25px;
}

footer .copyright {
    margin-top: 50px;
    display: block;
}

footer .copyright a {
    color: #3177a9;
    font-weight: bold;
}

.uparrow {
    background: url('images/uparrow.jpg');
    cursor: pointer;
    width: 67px;
    height: 70px;
    position: fixed;
    bottom: 30px;
    right:30px;
    display:none;
}