html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

html body {
    height: 100%;
    width: 100%;
    background: #f5f5f5;
    /* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
    /* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
    /* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
    /* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
    /* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
    /* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
}

html body .slideanim {
    visibility: hidden;
}

html body .slide-up {
    /* The name of the animation */
    animation-name: slideUp;
    -webkit-animation-name: slideUp;
    /* The duration of the animation */
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}

html body .slide-left {
    /* The name of the animation */
    animation-name: slideLeft;
    -webkit-animation-name: slideLeft;
    /* The duration of the animation */
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible;
}

@keyframes slideLeft {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(-200%);
    }

    100% {
        -webkit-transform: translateX(0%);
    }
}

html body .slide-right {
    /* The name of the animation */
    animation-name: slideRight;
    -webkit-animation-name: slideRight;
    /* The duration of the animation */
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible;
}

@keyframes slideRight {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        -webkit-transform: translateX(200%);
    }

    100% {
        -webkit-transform: translateX(0%);
    }
}

html body .slide-truck {
    /* The name of the animation */
    animation-name: slideTruck;
    -webkit-animation-name: slideTruck;
    /* The duration of the animation */
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    /* Make the element visible */
    visibility: visible;
}

@keyframes slideTruck {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@-webkit-keyframes slideTruck {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-50%);
    }
}

html body .slide-feature {
    /* The name of the animation */
    animation-name: slideFeature;
    -webkit-animation-name: slideFeature;
    /* The duration of the animation */
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    /* Make the element visible */
    visibility: visible;
}

@keyframes slideFeature {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideFeature {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}

html body .slide-text {
    /* The name of the animation */
    animation-name: slideText;
    -webkit-animation-name: slideText;
    /* The duration of the animation */
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible;
}

@keyframes slideText {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@-webkit-keyframes slideText {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(-50%);
    }
}

html body #wrapper {
    height: 100%;
    width: 100%;
    position: relative;
    background: black;
}

html body #wrapper h2 {
    margin: 50px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

html body #wrapper h2 span {
    display: block;
    position: relative;
    height: 2px;
    margin-top: 5px;
    width: 60px;
    background: #ffa500;
    left: 50%;
    margin-left: -30px;
}

html body #wrapper h1,
html body #wrapper h2,
html body #wrapper h3,
html body #wrapper h4,
html body #wrapper h5,
html body #wrapper p,
html body #wrapper span {
    cursor: default;
}

html body #wrapper button {
    display: block;
    outline: none;
    margin-top: 20px;
    color: black;
    font-weight: bold;
    background: #ffa500;
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

html body #wrapper button:hover {
    background: #da8d00;
}

html body #wrapper .fixed {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    bottom: inherit;
    background: #ffa500;
    box-shadow: 0 0 10px 0 #000000;
    -moz-box-shadow: 0 0 10px 0 #000000;
    -webkit-box-shadow: 0 0 10px 0 #000000;
}

html body #wrapper .fixed .logo_white {
    visibility: hidden;
}

html body #wrapper .fixed .logo_black {
    visibility: visible;
}

html body #wrapper .fixed .home {
    display: inline-block;
}

html body #wrapper .fixed nav {
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
}

html body #wrapper .fixed nav a {
    color: black;
    font-weight: bold;
}

html body #wrapper header {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
}

html body #wrapper header #show-mobile-nav {
    position: absolute;
    display: none;
    right: 0;
    height: 30px;
    width: 30px;
    margin: 10px;
    transition: all 0.15s;
    transition-delay: 0.1s;
    -o-transition: all 0.15s;
    -o-transition-delay: 0.1s;
    -moz-transition: all 0.15s;
    -moz-transition-delay: 0.1s;
    -webkit-transition: all 0.15s;
    -webkit-transition-delay: 0.1s;
    cursor: pointer;
}

html body #wrapper header #show-mobile-nav span {
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    height: 2px;
    width: 30px;
    background: white;
    display: block;
    transition: all 0.15s, background 0s;
    -o-transition: all 0.15s, background 0s;
    -moz-transition: all 0.15s, background 0s;
    -webkit-transition: all 0.15s, background 0s;
}

html body #wrapper header #show-mobile-nav span:nth-child(1) {
    margin-top: -6px;
}

html body #wrapper header #show-mobile-nav span:nth-child(3) {
    margin-top: 6px;
}

html body #wrapper header #show-mobile-nav:hover {
    opacity: 0.5;
}

html body #wrapper header #show-mobile-nav:hover span:nth-child(1) {
    margin-top: -11px;
}

html body #wrapper header #show-mobile-nav:hover span:nth-child(3) {
    margin-top: 11px;
}

html body #wrapper header .home {
    display: none;
}

html body #wrapper header img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    height: 30px;
    margin-left: 5vw;
}

html body #wrapper header .logo_black {
    visibility: hidden;
}

html body #wrapper header nav {
    display: inline-block;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

html body #wrapper header nav a {
    display: inline-block;
    margin: 0 2vw;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
}

html body #wrapper header nav a:hover {
    opacity: 0.4;
}

html body #wrapper #inquiry {
    top: -100%;
    z-index: 100;
    overflow-y: auto;
    max-height: 100%;
    position: fixed;
    left: 25%;
    padding: 50px 20px 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #e6e6e6;
}

html body #wrapper #inquiry textarea {
    resize: none;
}

html body #wrapper #inquiry .glyphicon {
    margin-top: -25px;
    float: right;
    font-size: 20px;
    cursor: pointer;
}

html body #wrapper #home {
    height: 100%;
    width: 100%;
    background: url('../img/home.jpg') no-repeat left center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

html body #wrapper #home h1 {
    margin: 0;
    position: absolute;
    color: white;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

html body #wrapper #home h1 #change-word {
    display: inline-flex;
    display: webkit-inline-flex;
    color: #ffa500;
    width: 70vw;
    /* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
}

html body #wrapper #home h1 #change-word .item {
    /* The name of the animation */
    animation-name: slide;
    -webkit-animation-name: slide;
    /* The duration of the animation */
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible;
}

@keyframes slide {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

html body #wrapper #home h1 span {
    display: block;
    height: 10px;
}

html body #wrapper #home .skew {
    position: absolute;
    height: 0;
    width: 0;
    right: 0;
    border-left: 20vw solid transparent;
    border-right: 20vw solid #ffa500;
    border-top: 100vh solid #ffa500;
}

html body #wrapper #home #stats-container {
    position: absolute;
    width: 40%;
    right: 0%;
    background: rgba(0, 0, 0, 0.2);
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

html body #wrapper #home #stats-container #stats {
    height: 250px;
    width: 400px;
}

html body #wrapper #home #stats-container #stats #clients,
html body #wrapper #home #stats-container #stats #countryes,
html body #wrapper #home #stats-container #stats #kilometers,
html body #wrapper #home #stats-container #stats #projects,
html body #wrapper #home #stats-container #stats #years {
    padding-left: 1vw;
    height: 33.34%;
    width: 50%;
    float: left;
    position: relative;
    color: #ffa500;
}

html body #wrapper #home #stats-container #stats #clients img,
html body #wrapper #home #stats-container #stats #countryes img,
html body #wrapper #home #stats-container #stats #kilometers img,
html body #wrapper #home #stats-container #stats #projects img,
html body #wrapper #home #stats-container #stats #years img {
    position: absolute;
    height: 40px;
    width: 40px;
    margin-top: 20px;
}

html body #wrapper #home #stats-container #stats #clients p,
html body #wrapper #home #stats-container #stats #countryes p,
html body #wrapper #home #stats-container #stats #kilometers p,
html body #wrapper #home #stats-container #stats #projects p,
html body #wrapper #home #stats-container #stats #years p {
    text-transform: uppercase;
    font-size: 14px;
    margin: -0.5vw 0 0 50px;
}

html body #wrapper #home #stats-container #stats #clients span,
html body #wrapper #home #stats-container #stats #countryes span,
html body #wrapper #home #stats-container #stats #kilometers span,
html body #wrapper #home #stats-container #stats #projects span,
html body #wrapper #home #stats-container #stats #years span {
    font-size: 25px;
    display: block;
    margin: 15px 0 0 50px;
}

html body #wrapper #home #stats-container #stats #years {
    height: 66.68%;
    padding: 0;
    float: right;
    background: rgba(255, 255, 255, 0.05);
}

html body #wrapper #home #stats-container #stats #years span {
    font-size: 134px;
    line-height: 1;
    margin: 0;
    text-align: center;
}

html body #wrapper #home #stats-container #stats #clients {
    background: rgba(255, 255, 255, 0.1);
}

html body #wrapper #home #stats-container #stats #projects {
    background: rgba(255, 255, 255, 0.15);
}

html body #wrapper #home #stats-container #stats #kilometers {
    background: rgba(255, 255, 255, 0.2);
}

html body #wrapper #home #stats-container #stats #countryes {
    background: rgba(255, 255, 255, 0.25);
}

html body #wrapper #home #stats-container #stats #map {
    position: absolute;
    -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.75);
    height: 250px;
    width: 400px;
    left: 0px;
}

html body #wrapper #services {
    padding: 0 30px 100px 50px;
}

html body #wrapper #services .service {
    position: relative;
    padding: 20px 30px;
}

html body #wrapper #services .service .service-info {
    border: 1px solid #dddddd;
    padding: 0 20px 0 50px;
}

html body #wrapper #services .service .service-info h3 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    margin: 15px 0 5px;
}

html body #wrapper #services .service .service-info .line {
    height: 1px;
    width: 30px;
    display: block;
    background: #ffa500;
    margin-bottom: 10px;
}

html body #wrapper #services .service .service-info p {
    font-size: 14px;
}

html body #wrapper #services .service .service-icon {
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    height: 60px;
    width: 60px;
    background: #ffa500;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

html body #wrapper #services .service .service-icon img {
    height: 60%;
    width: 60%;
    margin: 20%;
}

html body #wrapper #why-us {
    height: 440px;
}

html body #wrapper #why-us #why-us-info {
    padding-left: 5vw;
    height: 440px;
    background: url('../img/highway.jpg') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: black;
}

html body #wrapper #why-us #why-us-info .feature {
    width: 300px;
}

html body #wrapper #why-us #why-us-info .feature .feature-icon {
    height: 52px;
    width: 52px;
    margin-top: 5px;
    border: 1px solid #da8d00;
    position: absolute;
}

html body #wrapper #why-us #why-us-info .feature .feature-icon img {
    height: 30px;
    margin: 10px;
}

html body #wrapper #why-us #why-us-info .feature .feature-icon .line {
    display: block;
    height: 1px;
    width: 60px;
    right: -60px;
    top: 15px;
    position: absolute;
    background: #da8d00;
}

html body #wrapper #why-us #why-us-info .feature h3,
html body #wrapper #why-us #why-us-info .feature p {
    color: white;
    margin-left: 70px;
}

html body #wrapper #why-us #why-us-info .feature p {
    color: #c8c8c8;
}

html body #wrapper #why-us #why-us-info .feature h3 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}

html body #wrapper #why-us #why-us-info .feature:nth-child(2) {
    margin-top: 100px;
}

html body #wrapper #why-us #why-us-info .skew {
    height: 0;
    width: 0;
    right: -100px;
    position: absolute;
    border-top: 440px solid black;
    border-right: 100px solid transparent;
}

html body #wrapper #why-us #why-us-img {
    height: 400px;
    margin-top: 20px;
    position: absolute;
    right: 0;
    background: #ffa500;
}

html body #wrapper #why-us #why-us-img .skew {
    height: 0;
    width: 0;
    left: -100px;
    position: absolute;
    border-bottom: 400px solid #ffa500;
    border-left: 100px solid transparent;
}

html body #wrapper #why-us #why-us-img img {
    height: 500px;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

html body #wrapper #about {
    position: relative;
    padding-left: 50px;
}

html body #wrapper #about h2 {
    margin-bottom: 0 !important;
    margin-top: 30px !important;
}

html body #wrapper #about span {
    font-size: 0;
}

html body #wrapper #about p {
    position: relative;
    margin-top: 50px;
    margin-bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

html body #wrapper #testimonials {
    padding-top: 30px;
    background: url('../img/testimonials.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: black;
    color: white;
}

html body #wrapper #testimonials h2 {
    margin-top: 20px;
}

html body #wrapper #testimonials ol {
    bottom: 70px;
    text-align: inherit;
    width: inherit;
    margin-left: 188px;
}

html body #wrapper #testimonials ol li {
    border-radius: 0;
    border-color: #ffa500;
    width: 20px;
    transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
}

html body #wrapper #testimonials ol .active {
    background: #ffa500;
}

html body #wrapper #testimonials .item {
    height: 300px;
    /* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
}

html body #wrapper #testimonials .item h4,
html body #wrapper #testimonials .item img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    margin-left: -180px;
    z-index: 1;
}

html body #wrapper #testimonials .item .tire {
    /* The name of the animation */
    animation-name: rotateTire;
    -webkit-animation-name: rotateTire;
    /* The duration of the animation */
    animation-duration: 20s;
    -webkit-animation-duration: 20s;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}

@keyframes rotateTire {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes rotateTire {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
    }
}

html body #wrapper #testimonials .item h4 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    margin-top: 0;
    color: #ffa500;
}

html body #wrapper #testimonials .item h4 span {
    display: block;
    margin-left: 20px;
}

html body #wrapper #testimonials .item p {
    width: 400px;
    margin-left: 60px;
    margin-top: -5px;
    color: #c8c8c8;
    border: 1px solid #ffa500;
    border-left: none;
    padding: 20px 20px 20px 60px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

html body #wrapper #partners {
    background: white;
}

html body #wrapper #partners .item {
    height: 70px;
}

html body #wrapper #partners img {
    margin: 50px 0;
    max-width: 90%;
    max-height: 70px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

html body #wrapper #contacts {
    background: url('../img/trucks.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-top: 1px;
}

html body #wrapper #contacts #response2 {
    float: none;
}

html body #wrapper #contacts .form-group:nth-child(1),
html body #wrapper #contacts .form-group:nth-child(2) {
    float: left;
}

html body #wrapper #contacts h2 {
    margin-bottom: 80px;
    color: white;
}

html body #wrapper #contacts ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    text-transform: uppercase;
    font-size: 13px;
}

html body #wrapper #contacts :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    text-transform: uppercase;
    font-size: 13px;
}

html body #wrapper #contacts ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    text-transform: uppercase;
    font-size: 13px;
}

html body #wrapper #contacts :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    text-transform: uppercase;
    font-size: 13px;
}

html body #wrapper #contacts ::-ms-input-placeholder {
    /* Microsoft Edge */
    text-transform: uppercase;
    font-size: 13px;
}

html body #wrapper #contacts .form-group:nth-child(3) {
    padding: 15px;
}

html body #wrapper #contacts button {
    margin-left: 15px;
}

html body #wrapper #contacts input,
html body #wrapper #contacts textarea {
    border: 1px solid #ffa500;
    resize: none;
    background: none;
    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    outline: none;
    color: #afafaf;
}

html body #wrapper #contacts input:focus,
html body #wrapper #contacts textarea:focus {
    color: white;
    box-shadow: 0 0 10px 0 #ffbf00;
    -moz-box-shadow: 0 0 10px 0 #ffbf00;
    -webkit-box-shadow: 0 0 10px 0 #ffbf00;
}

html body #wrapper #contacts section {
    text-align: center;
}

html body #wrapper #contacts section img {
    height: 20px;
}

html body #wrapper #contacts section span {
    margin-top: 20px;
    display: block;
    color: white;
}

html body #wrapper #contacts section p {
    font-weight: bold;
    margin: 0;
    color: #969696;
}

html body #wrapper #contacts section:nth-child(2) {
    margin-top: 60px;
}

html body #wrapper #contacts iframe {
    margin-top: 100px;
    height: 300px;
    width: 100%;
}

html body #wrapper footer {
    padding: 40px 150px 70px;
    position: relative;
    margin-top: -4px;
    background-color: #191a1a;
}

html body #wrapper footer h5 {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
}

html body #wrapper footer h5 span {
    position: absolute;
    height: 1px;
    width: 30px;
    top: 20px;
    display: block;
    background: #ffa500;
    margin-bottom: 10px;
}

html body #wrapper footer p {
    margin: 0 0 20px 0;
    color: #c8c8c8;
    max-height: 120px;
    overflow: hidden;
}

html body #wrapper footer p span {
    display: block;
}

html body #wrapper footer p .dots {
    background: red;
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: 20px;
    right: 0;
    background: rgba(25, 26, 26, 0);
    background: -moz-linear-gradient(left, rgba(25, 26, 26, 0) 0%, #191a1a 90%, #191a1a 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(25, 26, 26, 0)), color-stop(90%, #191a1a), color-stop(100%, #191a1a));
    background: -webkit-linear-gradient(left, rgba(25, 26, 26, 0) 0%, #191a1a 90%, #191a1a 100%);
    background: -o-linear-gradient(left, rgba(25, 26, 26, 0) 0%, #191a1a 90%, #191a1a 100%);
    background: -ms-linear-gradient(left, rgba(25, 26, 26, 0) 0%, #191a1a 90%, #191a1a 100%);
    background: linear-gradient(to right, rgba(25, 26, 26, 0) 0%, #191a1a 90%, #191a1a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#191a1a', endColorstr='#191a1a', GradientType=1);
}

html body #wrapper footer div:nth-child(2) p,
html body #wrapper footer div:nth-child(3) p {
    margin: 0px 0;
}

html body #wrapper footer .copyright {
    width: 100%;
    left: 0;
    position: absolute;
    bottom: 0;
    text-align: center;
    background: black;
}

html body #wrapper footer .copyright p {
    margin: 10px;
    color: #ffa500;
}

html body #wrapper footer .copyright a {
    text-decoration: none;
    color: #ffa500;
}

#contact-results {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 1000;


}

#contact-results .success,
#contact-results .failure {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-results .success img,
#contact-results .failure img{
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    #inquiry {
        left: 21% !important;
    }

    header img {
        margin-left: 3vw !important;
    }

    header nav a {
        margin: 0 1.5vw !important;
    }
    
    html body #wrapper #why-us {
    height: 440px;
        overflow: hidden;
        position: relative;
}

    #why-us-img img {
        height: 380px !important;
        bottom: -35px !important;
    }

    footer {
        padding: 40px 80px 70px !important;
    }
}

@media only screen and (max-width: 992px) {
    
    html body #wrapper #home,
    html body #wrapper #testimonials,
    html body #wrapper #contacts{
        background-attachment:inherit!important;
    }
    
    #inquiry {
        left: 16.7% !important;
    }

    header img {
        margin-left: 2vw !important;
    }

    header nav {
        margin-right: -50px !important;
    }

    header nav a {
        margin: 0 1vw !important;
    }

    .fixed nav {
        margin-right: 0 !important;
    }

    #home .skew {
        border-left: 15vw solid transparent !important;
        border-right: 15vw solid #ffa500 !important;
    }

    #home h1 {
        font-size: 4vw !important;
    }

    #home #stats-container {
        width: auto !important;
        right: 0 !important;
    }

    #home #stats-container #stats {
        height: 220px !important;
        width: 350px !important;
    }

    #home #stats-container #stats img {
        height: 220px !important;
        width: 350px !important;
    }

    #home #stats-container #clients img,
    #home #stats-container #countryes img,
    #home #stats-container #kilometers img,
    #home #stats-container #projects img {
        height: 35px !important;
        width: 35px !important;
        margin-top: 20px !important;
    }

    #home #stats-container #clients span,
    #home #stats-container #countryes span,
    #home #stats-container #kilometers span,
    #home #stats-container #projects span {
        font-size: 22px !important;
        margin: 15px 0 0 45px !important;
    }

    #home #stats-container #clients p,
    #home #stats-container #countryes p,
    #home #stats-container #kilometers p,
    #home #stats-container #projects p {
        font-size: 12px !important;
        margin: -0.5vw 0 0 45px !important;
    }

    #home #stats-container #years span {
        font-size: 119px !important;
    }

    #home #stats-container #years p {
        font-size: 12px !important;
        margin: -0.5vw 0 0 45px !important;
    }

    #why-us-img {
        height: 250px !important;
        margin-top: 170px !important;
    }

    #why-us-img .skew {
        border-bottom: 250px solid #ffa500 !important;
    }

    #why-us-img img {
        height: 300px !important;
        bottom: -30px !important;
        transform: none !important;
        -o-transform: none !important;
        -ms-transform: none !important;
        -moz-transform: none !important;
        -webkit-transform: none !important;
        left: auto !important;
        right: 0 !important;
    }

    #why-us-info .skew {
        right: -150px !important;
        border-right: 150px solid transparent !important;
    }

    #about {
        padding-left: 0 !important;
    }

    footer {
        padding: 40px 40px 70px 80px !important;
    }
}

@media only screen and (max-width: 768px) {
    #inquiry {
        left: 12.5% !important;
    }

    h2 {
        font-size: 25px !important;
    }

    header {
        height: 50px !important;
    }

    header img {
        height: 24px !important;
    }

    header .closed {
        top: -100% !important;
    }

    header nav {
        background: black !important;
        position: fixed !important;
        text-align: center !important;
        margin-right: 0 !important;
        height: 100% !important;
        width: 100% !important;
        z-index: 100 !important;
    }

    header nav a {
        color: #ffa500 !important;
        font-weight: bold !important;
        display: block !important;
        font-size: 17px !important;
        margin: 20px !important;
        border-bottom: none !important;
    }

    header #show-mobile-nav {
        display: block !important;
    }

    .fixed a {
        border-bottom: none !important;
        color: #ffa500 !important;
    }

    .fixed #show-mobile-nav span {
        background: black !important;
    }

    #home h1 {
        font-size: 35px !important;
    }

    #home .skew {
        display: none !important;
    }

    #home #stats-container {
        display: none !important;
    }

    #services {
        padding: 0 0 100px 30px !important;
    }

    #why-us {
        height: auto !important;
    }

    #why-us #why-us-img {
        display: none !important;
    }

    #why-us #why-us-info {
        padding: 50px 4vw;
        height: auto !important;
        margin-bottom: 50px !important;
    }

    #why-us #why-us-info .skew {
        display: none !important;
    }

    #why-us #why-us-info .feature {
        margin: 30px 0 !important;
        width: inherit !important;
    }

    #why-us #why-us-info .feature:nth-child(2) {
        margin-top: 0 !important;
    }

    .slide-text {
        animation-name: noName !important;
        -webkit-animation-name: noName !important;
    }

    #about div {
        display: none !important;
    }

    #contacts div div {
        float: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #contacts div section {
        float: left !important;
        margin-bottom: 20px !important;
        width: 50% !important;
        margin-top: 60px !important;
    }

    #contacts textarea {
        margin-top: -15px;
    }

    footer {
        padding: 0 !important;
        background: black !important;
    }

    footer div:nth-child(1),
    footer div:nth-child(2),
    footer div:nth-child(3) {
        display: none !important;
    }

    footer .copyright {
        position: relative !important;
    }
}

@media only screen and (max-width: 600px) {
    #inquiry {
        width: 100% !important;
        left: 0% !important;
    }

    #home h1 {
        font-size: 25px !important;
    }

    #services {
        padding-left: 10px !important;
    }

    #services .service {
        padding-right: 10px !important;
    }

    #testimonials ol {
        bottom: 20px !important;
        text-align: center !important;
        width: 60% !important;
        margin-left: -30% !important;
    }

    #testimonials .item img {
        display: none !important;
    }

    #testimonials .item h4 {
        position: relative !important;
        left: 10% !important;
        top: inherit !important;
        transform: none !important;
        margin-left: 0 !important;
        margin-top: 50px !important;
    }

    #testimonials .item h4 span {
        display: inline !important;
        margin-left: 5px !important;
    }

    #testimonials .item p {
        position: relative !important;
        margin: 0 !important;
        border-left: 1px solid #ffa500 !important;
        width: 80% !important;
        padding: 10px !important;
        left: 10% !important;
        top: inherit !important;
        transform: none !important;
    }
}
