html, body{
    background-color: #d0d2d6;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica,sans-serif;
    color: #535761;
    line-height: 20px;
    font-size: 14px;
}

@font-face {
    font-family: 'benopl';
    src: url('fonts/benopl.eot');
    src: url('fonts/benopl.eot') format('embedded-opentype'),
        url('fonts/benopl.woff') format('woff'),
        url('fonts/benopl.ttf') format('truetype'),
        url('fonts/benopl.svg#benopl') format('svg');
}

@media screen and (min-width: 1224px){
    .center_wrapper{
        margin: 0 auto;
        width: 1200px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1223px){
    .center_wrapper{
        margin: 0 auto;
        width: 1000px;
    }
}

@media screen and (min-width: 1024px){
    html, body{
        background-image: url('gfx/bg-pattern.png'), url('gfx/bg.jpg');
        background-repeat: repeat, no-repeat;
        background-position: top center;
    }
    
    .triple_box_title1{
        font-size: 30px;
    }

    .half_box{
        width: 49%;
        float: left;
    }

    .half_box + .half_box{
        margin-left: 2%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px){
    .center_wrapper{
        margin: 0 auto;
        width: 750px;
    }
}

@media screen and (max-width: 1023px){    
    html, body{
        background-image: url('gfx/bg-pattern.png');
        background-repeat: repeat;
    }
    
    .triple_box_title1{
        font-size: 20px;
    }

    nav.bottom{
        display: none;
    }

    .half_box{
        width: 100%;
        float: left;
    }
    
    .img_container{
        display: none;
    }
    
    .half_box:last-child{
        margin-top: 10px;
    }
}

@media screen and (min-width: 768px){    
    .triple_box{
        width: 32%;
    }

    .triple_box + .triple_box{
        margin-left: 2%;
    }

    .triple_box_title1{
        padding: 5%;
        width: 90%;
    }

    .triple_box_content{
        padding: 5%;
        width: 90%;
        min-height: 200px;
    }

    .location{
        background: url('gfx/location.png') no-repeat 0 0;
        padding: 0 0 0 20px;
        float: left;
        margin-right: 50px;
    }

    .mail_phone{
        background: url('gfx/mail_phone.png') no-repeat 0 0;
        padding: 0 0 0 20px;
        float: left;
        margin-right: 50px;
    }

    .logo{
        width: 330px;
        height: 103px;
        margin-top: -28px;
    }

    header{
        height: 75px;
        margin-top: 40px;
    }

    address{
        margin-top: 15px;
        font-size: 12px;
    }
    
    .truck_img{
        margin: 0 2% 1% 0;
    }
}

@media screen and (max-width: 768px){
    .center_wrapper{
        margin: 0 auto;
        width: 460px;
    }

    .slider{
        display: none;
    }

    .triple_box{
        width: 100%;
        margin-bottom: 10px;
    }

    .triple_box_title1{
        padding: 2%;
        width: 96%;
    }

    .triple_box_content{
        padding: 2%;
        width: 96%;
    }

    .logo{
        width: 165px;
        height: 52px;
        margin-top: -14px;
    }

    header{
        height: 38px;
        margin-top: 25px;
    }

    address{
        font-size: 10px;
        line-height: 12px;
        margin-top: 5px;
    }

    .location{
        background: url('gfx/location.png') no-repeat 0 0;
        padding: 0 0 0 20px;
        float: left;
        margin-right: 15px;
    }

    .mail_phone{
        background: url('gfx/mail_phone.png') no-repeat 0 0;
        padding: 0 0 0 20px;
        float: left;
        margin-right: 15px;
    }
    
    .truck_img{
        margin: 0 2% 0 0;
        float: none;
        width: 100%;
    }
}

header{
    float: left;
    width: 100%;
    border-radius: 5px;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #E8E8E8),
        color-stop(1, #CFCFCF)
        );
    background-image: -o-linear-gradient(bottom, #E8E8E8 0%, #CFCFCF 100%);
    background-image: -moz-linear-gradient(bottom, #E8E8E8 0%, #CFCFCF 100%);
    background-image: -webkit-linear-gradient(bottom, #E8E8E8 0%, #CFCFCF 100%);
    background-image: -ms-linear-gradient(bottom, #E8E8E8 0%, #CFCFCF 100%);
    background-image: linear-gradient(to bottom, #E8E8E8 0%, #CFCFCF 100%);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

address{
    float: right;
    color: #777777;
    font-weight: bold;
    font-style: normal;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
}

nav.main, footer{
    float: left;
    margin: 15px 0;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #575B65),
        color-stop(1, #3F424D)
        );
    background-image: -o-linear-gradient(bottom, #575B65 0%, #3F424D 100%);
    background-image: -moz-linear-gradient(bottom, #575B65 0%, #3F424D 100%);
    background-image: -webkit-linear-gradient(bottom, #575B65 0%, #3F424D 100%);
    background-image: -ms-linear-gradient(bottom, #575B65 0%, #3F424D 100%);
    background-image: linear-gradient(to bottom, #575B65 0%, #3F424D 100%);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

nav.bottom{
    float: right;
}

nav ul{
    display: inline;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav.main ul a  {
    float: left;
    color: #bfc0c2;
    font-family: benopl;
    font-size: 25px;
    text-shadow: -1px -1px 1px rgba(0,0,0,0.5);
    width: 20%;
    text-align: center;
    height: 60px;
    line-height: 60px;
    vertical-align: middle;
    cursor: pointer;
}
a {
    text-decoration: none;
}
li a:hover {
    color: white;
}

nav.bottom ul a {
    float: left;
    color: #bfc0c2;
    font-size: 12px;
    text-shadow: -1px -1px 1px rgba(0,0,0,0.5);
    padding: 0 20px;
    text-align: center;
    height: 60px;
    line-height: 60px;
    vertical-align: middle;
    cursor: pointer;
    text-decoration: none;
}

nav ul a:after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(255,255,255,0.1);
    float: left;
}

nav ul a:before{
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    float: left;
}

nav.bottom ul a:after{
    margin: 0 0 0 -20px;
}

nav.bottom ul a:before{
    margin: 0 0 0 -21px;
}

nav.main ul a:first-child:before, nav.main ul a:first-child:after{
    display: none;
}

nav.main ul a:first-child{
    width: 10%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.home_icon{
    width: 26px;
    height: 23px;
    background: url('gfx/home.png') no-repeat 0 0;
    display: inline-block;
}

nav.main ul a:first-child:hover > .home_icon, nav.main ul a:first-child:active > .home_icon{
    background: url('gfx/home.png') no-repeat 0 -23px;
}

nav ul a:last-child{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

nav ul a:hover, nav ul li:active{
    background-color: rgba(0,0,0,0.2);
    color: #ffffff;
    -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out;
    -moz-transition: background-color 0.3s ease-out, color 0.3s ease-out;
    -o-transition: background-color 0.3s ease-out, color 0.3s ease-out;
    transition: background-color 0.3s ease-out, color 0.3s ease-out;
}

.slider{
    float: left;
    margin: 0 0 15px 0;
    width: 100%;
    min-height: 300px;
    max-height: 500px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

article{
    float: left;
    margin: 0;
    width: 100%;
    min-height: 400px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

section{
    float: left;
    margin: 0;
    width: 96%;
    padding: 2%;
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #f2f2f2 0%, #ffffff 40%, #ffffff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(40%,#ffffff), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f2f2f2 0%,#ffffff 40%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f2f2f2 0%,#ffffff 40%,#ffffff 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f2f2f2 0%,#ffffff 40%,#ffffff 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f2f2f2 0%,#ffffff 40%,#ffffff 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

section:first-child{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

section:last-child{
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.logo{
    background: url('gfx/logo.png') no-repeat;
    float: left;
    cursor: pointer;
    background-size: 100%;
}

.copyrights{
    height: 60px;
    line-height: 60px;
    color: #bfc0c2;
    display: inline-block;
    padding: 0 20px;
    float: left;
    font-size: 12px;
}

.ib_text{
    font-style: italic;
    font-weight: bold;
}

img{
    float: left;
    border: 0;
}

img.slider_img{
    border-radius: 5px;
    width: 100%;
}

img.cargofloor{
    max-width: 989px;
    width: 100%;
    float: none;
}

a{
    color: inherit;
}

a:hover{
    color: #2473b9;
}

.copyrights a:hover{
    color: #ffffff;
}

.triple_box{
    float: left;
    border-radius: 2px;
    background-color: #ededee;
}

.triple_box_title1{
    color: #ffffff;
    line-height: 40px;
    font-family: benopl;
    vertical-align: middle;
    float: left;
    border-radius: 2px;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #3E424D),
        color-stop(1, #565A64)
        );
    background-image: -o-linear-gradient(bottom, #3E424D 0%, #565A64 100%);
    background-image: -moz-linear-gradient(bottom, #3E424D 0%, #565A64 100%);
    background-image: -webkit-linear-gradient(bottom, #3E424D 0%, #565A64 100%);
    background-image: -ms-linear-gradient(bottom, #3E424D 0%, #565A64 100%);
    background-image: linear-gradient(to bottom, #3E424D 0%, #565A64 100%);
}

.triple_box_title2{
    text-align: center;
    color: #ffffff;
    line-height: 40px;
    vertical-align: middle;
    width: 90%;
    padding: 1% 5%;
    float: left;
    border-radius: 2px;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #111878),
        color-stop(1, #181AA8)
        );
    background-image: -o-linear-gradient(bottom, #111878 0%, #181AA8 100%);
    background-image: -moz-linear-gradient(bottom, #111878 0%, #181AA8 100%);
    background-image: -webkit-linear-gradient(bottom, #111878 0%, #181AA8 100%);
    background-image: -ms-linear-gradient(bottom, #111878 0%, #181AA8 100%);
    background-image: linear-gradient(to bottom, #111878 0%, #181AA8 100%);
}

.triple_box_title1 img.icon{
    margin-right: 10px;
}

.triple_box img.truck{
    width: 100%;
}

.triple_box_content{
    float: left;
    text-align: justify;
}

.button-center{
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 5%;
}

.triple_box button{
    float: none;
    display: inline-block;
}

.half_box img{
    width: 100%;
}

ul{
    display: inline-block;
    padding: 0 0 0 20px;
    list-style-type: disc;
}

button{
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    height: 40px;
    width: 100px;
    font-family: benopl;
    font-size: 20px;
    color: #ffffff;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #2474B9),
        color-stop(1, #235D90)
        );
    background-image: -o-linear-gradient(bottom, #2474B9 0%, #235D90 100%);
    background-image: -moz-linear-gradient(bottom, #2474B9 0%, #235D90 100%);
    background-image: -webkit-linear-gradient(bottom, #2474B9 0%, #235D90 100%);
    background-image: -ms-linear-gradient(bottom, #2474B9 0%, #235D90 100%);
    background-image: linear-gradient(to bottom, #2474B9 0%, #235D90 100%);
}

button:hover{
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, #2474B9),
        color-stop(1, #235D90)
        );
    background-image: -o-linear-gradient(top, #2474B9 0%, #235D90 100%);
    background-image: -moz-linear-gradient(top, #2474B9 0%, #235D90 100%);
    background-image: -webkit-linear-gradient(top, #2474B9 0%, #235D90 100%);
    background-image: -ms-linear-gradient(top, #2474B9 0%, #235D90 100%);
    background-image: linear-gradient(to top, #2474B9 0%, #235D90 100%);
}
.buttonAsp{
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    height: 40px;
    width: 100px;
    font-family: benopl;
    font-size: 20px;
    color: #ffffff;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #2474B9),
        color-stop(1, #235D90)
        );
    background-image: -o-linear-gradient(bottom, #2474B9 0%, #235D90 100%);
    background-image: -moz-linear-gradient(bottom, #2474B9 0%, #235D90 100%);
    background-image: -webkit-linear-gradient(bottom, #2474B9 0%, #235D90 100%);
    background-image: -ms-linear-gradient(bottom, #2474B9 0%, #235D90 100%);
    background-image: linear-gradient(to bottom, #2474B9 0%, #235D90 100%);
}

.buttonAsp:hover{
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, #2474B9),
        color-stop(1, #235D90)
        );
    background-image: -o-linear-gradient(top, #2474B9 0%, #235D90 100%);
    background-image: -moz-linear-gradient(top, #2474B9 0%, #235D90 100%);
    background-image: -webkit-linear-gradient(top, #2474B9 0%, #235D90 100%);
    background-image: -ms-linear-gradient(top, #2474B9 0%, #235D90 100%);
    background-image: linear-gradient(to top, #2474B9 0%, #235D90 100%);
}
h1{
    font-weight: normal;
    font-family: benopl;
    font-size: 40px;
    line-height: 50px;
    vertical-align: middle;
    margin: 0 0 15px 0;
    color: #235e91;
}

h2{
    font-weight: normal;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    vertical-align: middle;
    margin: 0;
}

h3{
    font-weight: normal;
    font-family: benopl;
    font-size: 25px;
    line-height: 40px;
    vertical-align: middle;
    margin: 0;
}

h4{
    font-weight: normal;
    font-size: 17px;
    font-weight: bold;
    display: inline;
    line-height: 25px;
    vertical-align: middle;
    margin: 0;
}

h5{
    font-weight: normal;
    font-family: benopl;
    font-size: 20px;
    line-height: 30px;
    vertical-align: middle;
    margin: 0;
}

h6{
    font-size: 14px;
    font-weight: bold;
    display: inline;
    line-height: 20px;
    vertical-align: middle;
    margin: 0;
}

.to_right{
    float: right;
}

.add_margin_top{
    margin-top: 2%;
}

.add_margin_right{
    margin-right: 2%;
}

.add_margin_bottom{
    margin-bottom: 2%;
}

.add_margin_left{
    margin-left: 2%;
}

img.round{
    border-radius: 2px;
}

hr{
    background-color: rgba(0,0,0,0.5);
    height: 1px;
    width: 100%;
}

.contact_form input, .contact_form textarea{
    font-family: Arial, Helvetica,sans-serif;
    color: #535761;
    line-height: 20px;
    font-size: 14px;
    border: 1px solid rgba(0,0,0,0.2);
    background-color: #ffffff;
    padding: 2%;
    width: 96%;
    margin-bottom: 2%; 
}

.contact_form input:focus, .contact_form textarea:focus{
    box-shadow: 0 0 5px #2473b9;
}

.thumb{
    max-width: 200px;
    max-height: 150px;
    margin: 0 20px 15px 0;
    cursor: pointer;
}

.thumb:hover{
    box-shadow: 0 0 5px #2473b9;
}

.show_img{
    position: fixed;
    display: table;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.show_img img{
    display: inline-block;
    float: none;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,1);
}

.inner-center {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
