﻿@charset "utf-8";

/*===== Common CSS =====*/






/*===== Responsive CSS =====*/


/*===============================
  ===============================*/

/*===== Common CSS =====*/


html, body { width:100%; height:100%;  }
body { padding: 0; margin: 0; font-family: "Rubik", sans-serif; font-size: 16px; font-weight: 500; line-height: 30px; color: #666666; position: relative; text-rendering: optimizeLegibility !important; -webkit-font-smoothing: antialiased !important; -moz-osx-font-smoothing: grayscale; overflow: auto; }

body.pageload { overflow: auto; overflow-x: hidden; }

* { box-sizing:border-box; }
*:hover { -webkit-transition: all ease-out 0.3s; -moz-transition: all ease-out 0.3s; -o-transition: all ease-out 0.3s; transition: all ease-out 0.3s; }
*:focus, .btn-default-focus { box-shadow: none; outline:none !important; }

h1, h2, h3, h4, h5, h6 { font-weight: 600; }
h1, h2, h3, h4, h5, h6, p, ul { padding: 0; margin: 0; }

h2 { font-size:80px; line-height: 80px; color: #402e3a; }
h3 { font-size:30px; line-height: 1.3; color: #333333; letter-spacing: 1px; }
h4 { font-size:22px; line-height: 30px; color: #333333; letter-spacing: 2px; }


img, svg { border: none; vertical-align: middle; max-width: 100%; }
ul li { list-style: none; }


a { cursor: pointer; color:#333333; font-weight: 400; outline: none !important; text-decoration: none; -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; -ms-transition: all .2s ease-in-out; transition: all .2s ease-in-out; }
a:hover, a:focus { text-decoration: none; color:#333333; }
a, input, button, textarea, a:focus, select:focus { outline: none; }
a:hover, a:focus, select:focus, button:focus { outline: none; text-decoration: none; }


button, input, textarea { outline: none; -webkit-appearance: none; -moz-appearance: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; }




/*===== *************** =====*/


.bg-video { position: fixed; left: 0; right: 0; top:0; bottom: 0; overflow: hidden; }

.bg-video:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.75;
}

.bg-video video, .bg-video .video { width: 100%; height: 110vh; object-fit: cover; object-position: center top; }

@supports (-ms-ime-align:auto) {
    .bg-video video {
        min-height: 100%;
        min-width: 100%;

        position: fixed;
        
        width:auto;
        height:auto;
        
        left: 50%;
        top: 50%;

        transform: translate(-50%, -50%);
    }
}



.home-page { width:100%; height:100vh; overflow: auto; display: table; position: relative; z-index: 10; padding:50px 0 100px; text-align: center; }
.home-page .center-box { display: table-cell; vertical-align: middle; }


.logo, .logo a, .logo img { width:398px; height:100px; object-fit: contain; display: block; margin: auto; }


.intro-screen { color: #ffffff; }
.intro-screen h2 { color: #ffffff; margin:50px 0 20px; }
.intro-screen p { font-size: 20px; margin:20px 0; }
.intro-screen .btn { padding:0; max-width:200px; }


.intro-screen .copyright { 
    position: absolute; left:0; right:0; bottom:0; padding:10px; font-size:17px;
}
.intro-screen .copyright .d-flex {
    display: flex; align-items: center; justify-content: center; margin:10px 0;
}
.intro-screen .copyright a { color: #f59a0b; text-decoration: underline; margin:0 5px 0 0; }

.intro-screen .copyright a.LogistiWerx-Logo { width:200px; display: block; margin:0 10px; }






.privacy-policy { padding:50px 0; text-align: left; }
.privacy-policy h3 { margin: 50px 0 10px; }
.privacy-policy h4 { margin: 40px 0 10px; }
.privacy-policy p { margin-bottom:15px; }
.privacy-policy p a { color: #000; font-weight: 700; }
.privacy-policy p a:hover { color: orange; }

.privacy-policy ul li { margin:0 0 15px; padding-left:20px; position: relative; }
.privacy-policy ul li:before { content: ""; display: block; position: absolute; left:0; top:12px; width:5px; height:5px; background: #666666; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; }

.privacy-policy .mtb-0 { margin-top:0px; }
.privacy-policy .mt-20 { margin-top:20px; }



.privacy-policy .copyright { margin-top:30px; }


/*===== 404 CSS =====*/
.error-page {
    width:100%; height:100vh; padding:50px 0; overflow: auto; display: table; text-align: center;
    background: url("../images/logo-pattern.svg")no-repeat center bottom / contain;
}
.error-page .center-box { 
    display: table-cell; vertical-align: middle; 
}
.error-page .container { 
    display: flex; flex-direction: column; align-items: center; 
}

.FourZeroFour { 
    display: flex; align-items: center;
}
.FourZeroFour * { margin:0 10px; display: block; }
.FourZeroFour span { font-size:180px; }
.FourZeroFour span img { min-width:155px; max-width:155px; }


.BackToHome { 
    color: #ffffff; font-size:18px; font-weight: bold; padding:8px 20px; margin:80px 0 70px; background: #f3a133; border:3px solid #f3a133;
}
.BackToHome:hover { 
    color: #f3a133; background: #ffffff;
}


.error-page h4 { font-size: 30px; font-weight: 100; }


@media screen and (max-width: 767px) {
    
    .FourZeroFour span { font-size:125px; }
    .FourZeroFour span img { min-width:105px; max-width:105px; }

    .BackToHome { 
        font-size:16px;
    }
    
    .error-page h4 { font-size: 25px;  }
    
}

/*===== ----- =====*/







@media screen and (max-width: 1199px) {
    
    
    .logo, .logo a, .logo a img { width: 320px; height: 85px; }
    .intro-screen h2 { font-size: 50px; margin-top:50px; }
    .intro-screen p { font-size: 18px; }
    .intro-screen .btn { max-width: 180px; }
    
    .intro-screen .copyright { font-size: 16px; }
   
    
}



@media screen and (max-width: 991px) {
   
    
}


@media screen and (max-width: 767px) {
    body { font-size: 14px; line-height: 24px; }
    
  
    .logo, .logo a, .logo a img { width: 280px; height: 80px; }
    .intro-screen h2 { font-size: 40px; line-height: 45px; }
    .intro-screen h2 br { display: none; }
    .intro-screen p { font-size: 16px; line-height: 24px; }
    .intro-screen .btn { max-width: 150px; }
    
    
    .intro-screen .copyright { font-size: 12px; line-height: 20px; }
    
    
}






/*===== *************** =====*/

