/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    height: 100%;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

textarea {
    resize: vertical;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ===============
    IE Fixes
   =============== */

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    min-height: 100%;
}

body {
    font: 16px/1.5 'Lato', sans-serif;
    background-color: #fff;
    color: #222;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
}

/* TEXTS */

h2 {
    font: 2em/1 'Lato', sans-serif;
    font-style: normal;
    font-weight: 900;
    margin: 50px 0 25px;
    text-transform: uppercase;

    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media only screen and (min-width: 414px) {

    h2 {
        font: 4em/1 'Lato', sans-serif;
        font-style: normal;
        font-weight: 900;
    }

}

@media only screen and (min-width: 769px) {

    h2 {
        font: 5em/1 'Lato', sans-serif;
        font-style: normal;
        font-weight: 900;
    }

}

h3 {
    font-size: 2em;
    line-height: 1;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 900;
    margin: 50px 0 25px;
    text-transform: uppercase;
}

@media only screen and (min-width: 769px) {

   h3 {
        font-size: 3em;
    } 
}

h4 {
    font-size: 1.15em;
    line-height: 1.5;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 700;
    margin: 15px 0;
}

a {
    text-decoration: none;
    color: #222;
    display: inline-block;
}

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

    ul.dotted-list li {
        position: relative;
        padding-left: 10px;
    }

        ul.dotted-list li:before {
            content: '';
            width: 6px;
            display: inline-block;
            position: absolute;
            top: 10px;
            left: 0;
            height: 6px;
            border-radius: 100%;
            background-color: #bf0a13;
        }

        ul.dotted-list.dotted-list-white li:before {
            content: '';
            width: 6px;
            display: inline-block;
            position: absolute;
            top: 10px;
            left: 0;
            height: 6px;
            border-radius: 100%;
            background-color: #fff;
        }

/* COLORS */

.color-red {
    color: #bf0a13;
}

/* FORMS */

input {
    outline: none;
}

.input_field {
    position: relative;
    width: 100%;
    display: block;
    float: right;
    padding: 0.8em;
    border: 2px solid transparent;
    border-radius: 0;
    background: #d0d1d0;
    color: #aaa;
    font-weight: 400;

    -webkit-appearance: none; 
    
    -webkit-transition: background-color 0.25s, border-color 0.25s;
    transition: background-color 0.25s, border-color 0.25s;
}

.input_field:focus {
    outline: none;
}

.input_label {
    position: absolute;
    width: 100%;
    display: inline-block;
    float: right;
    bottom: 100%;
    overflow: hidden;
    padding: 0 1.25em;
    color: #696969;
    font-weight: 900;
    font-size: 14px;
    text-align: left;

    pointer-events: none;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    -webkit-touch-callout: none;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-transform: translate3d(0, 3em, 0);
    transform: translate3d(0, 3em, 0);
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s ;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.input_label-content {
    position: relative;
    width: 100%;
    display: block;
    padding: 0.25em 0;
    color: #8B8C8B;
    line-height: 2;
    
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.input_label-content::after {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 100%;
    left: 0;
    content: attr(data-content);
    font-weight: 900;
    color: #bf0a13;
    padding: 0.25em 0;
    text-transform: uppercase;
}

.input_field:focus + .input_label,
.input-filled .input_label {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.input_field:focus + .input_label .input_label-content,
.input-filled .input_label-content {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.input_field:focus + .input_field,
.input-filled .input_field {
    background-color: transparent;
    border-color: #bf0a13;
}

.required .input_field  {
    background-color: transparent;
    border-color: #bf0a13;
}

.required .input_label-content {
    color: #bf0a13;
}

/* ALERTS */

.alerts {
    position: relative;
    width: 100%;
    padding: 10px;
}

    .alerts i {
        margin: 0 10px;
    }
    
    .alerts span {
        width: 100%;
        display: block;
    }

        .alerts .red {
            background: #F3BFC2;
            border: 1px solid #bf0a13;
            color: #bf0a13;
        }

/* BUTTONS */

.serco-button {
    height: 80px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
    position: relative;
    bottom: auto;
    right: auto;
    float: right;
}

    .serco-button a {
        position: relative;
        color: #fff;
        display: block;
        height: 100%;
    }

    .serco-button .tip {
        width: 0;
        height: 0;
        border-left: 50px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 80px solid #bf0a13;
        position: absolute;
        bottom: 0;
        left: -50px;
    }

    .serco-button .body {
        background: #bf0a13;
        display: inline-block;
        padding: 28px;
    }
    
    .serco-button .body::after {
        font-family: "Ionicons";
        content: "\f125";
        margin-left: 10px;
    }

.hamburguer-btn {
    width: 60px;
    height: 60px;
    display: block;
    position: fixed;
    left: -70px;
    top: 10px;

    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .hamburguer-btn span {
        width: 26px;
        height: 3px;
        background: #fff;
        display: block;
        position: absolute;
        left: 50%;
        margin-left: -13px;

        -o-transition: 0.3s;
        -ms-transition: 0.3s;
        -moz-transition: 0.3s;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
        
        .hamburguer-btn span.top {
            top: 17px;
        }

        .hamburguer-btn span.middle {
            top: 28px;
            -webkit-transform: scale(1,1) translateY(0);
            -moz-transform: scale(1,1) translateY(0);
            -ms-transform: scale(1,1) translateY(0);
            -o-transform: scale(1,1) translateY(0);
            transform: scale(1,1) translateY(0);
            
            -webkit-transform-origin: center center;
            -moz-transform-origin: center center;
            -ms-transform-origin: center center;
            -o-transform-origin: center center;
            transform-origin: center center;
        }

        .hamburguer-btn span.bottom {
            bottom: 17px;
        }
        
        .hamburguer-btn.active span.top {
            -webkit-transform: rotate(45deg) translate(8px,6px);
            -moz-transform: rotate(45deg) translate(8px,6px);
            -ms-transform: rotate(45deg) translate(8px,6px);
            -o-transform: rotate(45deg) translate(8px,6px);
            transform: rotate(45deg) translate(8px,6px);
        }

        .hamburguer-btn.active span.middle {
            -webkit-transform: scale(0,1) translateY(0);
            -moz-transform: scale(0,1) translateY(0);
            -ms-transform: scale(0,1) translateY(0);
            -o-transform: scale(0,1) translateY(0);
            transform: scale(0,1) translateY(0);

            -webkit-transform-origin: center center;
            -moz-transform-origin: center center;
            -ms-transform-origin: center center;
            -o-transform-origin: center center;
            transform-origin: center center;
        }
        
        .hamburguer-btn.active span.bottom {
            -webkit-transform: rotate(-45deg) translate(10px,-9px);
            -moz-transform: rotate(-45deg) translate(10px,-9px);
            -ms-transform: rotate(-45deg) translate(10px,-9px);
            -o-transform: rotate(-45deg) translate(10px,-9px);
            transform: rotate(-45deg) translate(10px,-9px);
        }


@media only screen and (min-width: 769px) {

    .hamburguer-btn {
        display: none;
    }
}

.outline-btn {
    border: 2px solid #d0d1d0;
    padding: 11px;
    color: #aaa;
    font-weight: 700;

    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .outline-btn:hover,
    .outline-btn:active,
    .outline-btn.active {
        border: 2px solid #bf0a13;
        background-color: #bf0a13;
        color: #fff;
    }

.search-btn {
    position: absolute;
    padding: 1em 1.5em;
    height: 100%;
    top: 0;
    right: 0;
    background: #bf0a13 url(../img/search-icon.png) no-repeat center;
    background-size: 20px;
    line-height: 1;
    border: 0;
}


/* OVERLAY */

.overlay {
    pointer-events: none;
    position: fixed;
    background: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.overlay.active {
    pointer-events: all;
    opacity: 1;
}

/* GENERAL */

/* LOGOS */

.logo-home {
    width: 124px;
    height: 40px;
    background: transparent url(../img/logo_home.png) no-repeat center;
    background-size: 100%;
    position: absolute;
    top: 20px;
    left: 20px;
    display: block;

    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}



@media only screen and (min-width: 769px) {

    .logo-home {
        left: 20px;
    }
    
    .logo-home.invisible {
        display: none;
    }
}

@media only screen and (min-width: 1140px) {

    .logo-home {
        left: 60px;
    }
}

.logo-home-dark {
    display: none;

    width: 104px;
    height: 40px;
    background: transparent url(../img/logo_home-dark.png) no-repeat center;
    background-size: 100%;
    position: absolute;
    left: 60px;
    top: 20px;

    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.envio .logo-home-dark {
     display: block;
}

@media only screen and (min-width: 769px) {

    .logo-home-dark {
        left: 20px;
    }

    .fixed .logo-home-dark {
        display: block;
        left: 20px;
    }

}

@media only screen and (min-width: 1140px) {

    .logo-home-dark,
    .fixed .logo-home-dark {
        width: 124px;
        left: 60px;
    }
}

.logo-footer {
    width: 124px;
    height: 40px;
    background: transparent url(../img/logo_home.png) no-repeat center;
    background-size: 100%;
}

/* @2x Images */   
@media only screen and (-o-min-device-pixel-ratio: 5/4),
       only screen and (-webkit-min-device-pixel-ratio: 1.25),
       only screen and (min-device-pixel-ratio: 1.25),
       only screen and (min-resolution: 1.25dppx) {
    .logo-home,
    .logo-footer {
        background: transparent url(../img/logo_home@2x.png) no-repeat center;
        background-size: 100%;
    }

    .logo-home-dark {
        background: transparent url(../img/logo_home-dark@2x.png) no-repeat center;
        background-size: 100%;
    }
}

/* @3x Images */
@media only screen and (-o-min-device-pixel-ratio: 9/4),
       only screen and (-webkit-min-device-pixel-ratio: 2.25),
       only screen and (min-device-pixel-ratio: 2.25),
       only screen and (min-resolution: 2.25dppx) {
    .logo-home,
    .logo-footer {
        background: transparent url(../img/logo_home@3x.png) no-repeat center;
        background-size: 100%;
    }

    .logo-home-dark {
        background: transparent url(../img/logo_home-dark@3x.png) no-repeat center;
        background-size: 100%;
    }
}

/* LINES */

.smll-line-white {
    width: 116px;
    border-top: 1px solid #fff;
    height: 1px;
}

.smll-line-dark {
    width: 116px;
    border-top: 1px solid #222222;
    height: 1px;
}

.long-line-light {
    width: 100%;
    border-top: 1px solid #e2e2e2;
    height: 1px;
}

/* ICONS */

.icon-moto {
    width: 35px;
    height: 21px;
    background: transparent url(../img/icon-moto.png) no-repeat center;
    background-size: 100%;
    display: inline-block;
}

/* LAYOUT BASICS */

.logo-container {
    pointer-events: all;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
    background: rgba(26, 43, 64, .6);
}

.envio .logo-container {
    background: rgba(255, 255, 255, 1);
}

@media only screen and (min-width: 769px) {

    .logo-container {
        pointer-events: none;
        background: transparent;
    }

}

.wrapper {
    width: 100%;
    padding: 0 20px;
    position: relative;
}

@media only screen and (min-width: 769px) {

    .wrapper {
        max-width: 1366px;
        padding: 0 20px;
        margin: 0 auto;
    }

}

@media only screen and (min-width: 1140px) {

    .wrapper {
        max-width: 1366px;
        padding: 0 60px;
        margin: 0 auto;
    }
}

/* TOP */

#top {
    position: absolute;
    height: calc(100vh - 80px);
    width: 100%;
}

#top header {
        position: fixed;
        max-width: 80%;
        height: 100%;
        background: #fff;
        z-index: 99999;
        top: 0;
        right: 0;

        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);

        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }
    
    #top header.active {
        
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }

@media only screen and (min-width: 769px) {

    #top header {
        position: absolute;
        width: 100%;
        max-width: 100%;
        height: 80px;
        background: #fff;
        top: auto;

        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

    #top header.fixed {
        position: fixed;
        top: 0px;
    }

        #top .wrapper {
            height: 100%;
            display: table;
            overflow: hidden;
        }
            
            #top .wrapper nav {
                display: table-cell;
                vertical-align: middle;
            }

                #top nav ul {
                    list-style: none;
                }
                    
                    #top nav ul li {
                        display: block;
                    }
                        
                        #top nav ul li a:not(.logo-home-dark) {
                            display: block;
                            font-weight: 700;
                            text-transform: uppercase;
                            padding: 10px 0;
                            font-size: 0.8em;
                        }
                        
                        #top nav ul.call li a {
                            position: relative;
                        }

                            #top nav ul.call li a .icon {
                                position: absolute;
                                left: 0;
                                top: 0;
                                bottom: 0;
                                padding: 29px 15px;
                                line-height: 1;
                                font-size: 1.65em;
                                color: #fff;
                                background-color: #bf0a13;
                            }
                            
                            #top nav ul.call li a .telephone {
                                display: block;
                                line-height: 1;
                                text-align: right;
                            }

            @media only screen and (min-width: 769px) {
                
                #top .wrapper nav {
                    width: 100%;
                    height: 100%;
                }   

                        #top nav ul {
                            float: left;
                            padding-left: 0;
                            margin-left: -10px;
                            
                            -webkit-transition: .1s;
                            -moz-transition: .1s;
                            -ms-transition: .1s;
                            -o-transition: .1s;
                            transition: .1s;
                        }

                        #top nav.displaced ul:not(.call) {
                            padding-left: 130px;
                        }
                            
                            #top nav ul li {
                                float: left;
                            }
                                
                                #top nav ul li.follow {
                                    background-color: #bf0a13;

                                    -webkit-transform: translateY(-80px);
                                    -moz-transform: translateY(-80px);
                                    -ms-transform: translateY(-80px);
                                    -o-transform: translateY(-80px);
                                    transform: translateY(-80px);

                                    -webkit-transition: .3s;
                                    -moz-transition: .3s;
                                    -ms-transition: .3s;
                                    -o-transition: .3s;
                                    transition: .3s;

                                    -webkit-transition-delay: .4s;
                                    -moz-transition-delay: .4s;
                                    -ms-transition-delay: .4s;
                                    -o-transition-delay: .4s;
                                    transition-delay: .4s;
                                }

                                #top nav.displaced ul li.follow {
                                    -webkit-transform: translateY(0);
                                    -moz-transform: translateY(0);
                                    -ms-transform: translateY(0);
                                    -o-transform: translateY(0);
                                    transform: translateY(0);

                                }

                                    #top nav ul li.follow a {
                                        color: #fff;
                                    }
                                    
                                    #top nav ul li a {
                                        font-size: 0.7em;
                                    }

                                    #top nav ul li a:not(.logo-home-dark) {
                                        line-height: 80px;
                                        padding: 0 5px;
                                        font-size: .8em;
                                    }

                        #top nav ul.call {
                            float: right;
                        } 
                            
                                    #top nav ul.call li a {
                                        background-color: #f2f2f2;
                                        padding: 0;
                                    }

                                        #top nav ul.call li a .icon {
                                            position: absolute;
                                            left: auto;
                                            right: 0;
                                            display: table;
                                        }

                                        #top nav ul.call li a .telephone {
                                            display: none;
                                            line-height: inherit;
                                        }  

                        #top nav ul.droplist {
                            display: none;
                            padding: 0 !important;
                            margin: 0 !important;
                            position: fixed;
                        }

                            #top nav ul.droplist li {
                                display: block;
                                float: none;
                                background: #fff;
                            }

            }
            
            @media only screen and (min-width: 910px) {

                #top nav.displaced ul:not(.call) {
                    padding-left: 144px;
                }

                #top nav ul li a:not(.logo-home-dark) {
                    font-size: .875em;
                    padding: 0 10px;
                }
            }

            @media only screen and (min-width: 1195px) {
                
                #top nav ul {
                    margin-left: -30px;
                }

                #top nav.displaced ul:not(.call) {
                    padding-left: 174px;
                }
                
                    #top nav ul li a {
                        font-size: 0.875em;
                    }
                    
                    #top nav ul.call li a {
                        padding: 0 20px 0 70px !important;
                    }

                    #top nav ul li a:not(.logo-home-dark) {
                        padding: 0 20px;
                    }

            }

            @media only screen and (min-width: 1336px) {
                            
                    #top nav ul.call li a {
                        padding: 0 20px 0 70px !important;
                    }
                    
                        #top nav ul.call li a .icon {
                            left: 0;
                            right: auto;
                        }

                        #top nav ul.call li a .telephone {
                            display: block;
                        }
                
            }

/* HOME */

.home-container {
    width: 100%;
    height: 350px;
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
    background: url('../video/video-serco.jpg') no-repeat;
    background-size: cover;
}

@media only screen and (min-width: 769px) {

    .home-container {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;

        max-height: 100%;
        height: auto;
    }
}

    .home-container .wrapper {
        display: table;
        height: 100%;
        z-index: 99;
    }

        .featured {
            color: #fff;
            display: block;
            padding: 50px 0;
        }

            .featured h2 {
                width: 100%;
                max-width: 540px;
            }

            .featured .caption {
                font-size: 1.125em;
            }
        
        @media only screen and (min-width: 769px) {

            .featured {
                padding: 0;
                display: table-cell;
                vertical-align: middle;
            }

                .featured h2 {
                    width: 540px;
                }

        }
        
        .button-area {
            z-index: 999 !important
        }

            .button-area .serco-button {
                position: absolute;
                bottom: 0;
                right: 0;
            }
            
            @media only screen and (min-width: 769px) {

                .button-area .serco-button {
                    position: absolute;
                    bottom: 200px;
                    right: 20px;
                }
            }

            @media only screen and (min-width: 1140px) {

                .button-area .serco-button {
                    right: 60px;
                }
            }

.home-container .triangles {
    width: 100%;
    max-width: 512px;
    height: 512px;
    background: transparent url(../img/home-triangles.png) no-repeat center;
    background-size: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
}

@media only screen and (min-width: 769px) {

   .home-container .triangles {
        top: auto;
        bottom: 0;
    } 
}

/* OWL CARRUSEL */

#home-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 90;
}

    .owl-wrapper-outer,
    .owl-wrapper,
    .owl-item,
    .item {
        height: 100%;
    }
    
    .owl-item {
        position: relative;
        float: left;
    }

.owl-controls.clickable {
    position: absolute;
    bottom: 90px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
}

.owl-page {
    display: inline-block;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    cursor: pointer;
    background: rgba(255, 255, 255, .6);

    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.owl-page:hover,
.owl-page:active,
.owl-page.active {
    background: rgba(255, 255, 255, 1);
}

/* VIDEO */

.video-container {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

video {
    top: 50%;
    left: 50%;
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;

    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.touch video {
    display: none;

    background: url('../video/video-serco.jpg') no-repeat;
    background-size: cover;
    transition: 1s opacity;
}

/* MAIN */ 

.main-container {
    width: 100%;
    margin-top: auto;
    z-index: 99;
} 

 @media only screen and (min-width: 769px) {

    .main-container {
        margin-top: calc(100vh - 80px);
    }
}

/* SECTIONS */

section {
    position: relative;
    width: 100%;
}

/* SECTION WHO WE ARE*/

.whoweare {
    padding: 60px 0;
    background: #f5f5f5 url("../img/bg-who_we_are.png") no-repeat -180px -50px;
}

    .whoweare h3 {
        color: #222222;
    }

@media only screen and (min-width: 769px) {

    .whoweare {
        padding: 180px 0;
        background: #f5f5f5 url("../img/bg-who_we_are.png") no-repeat -40px -80px;
    }
}

@media only screen and (min-width: 1140px) {

    .whoweare {
        background: #f5f5f5 url("../img/bg-who_we_are.png") no-repeat -40px -80px;
    }
}

@media only screen and (min-width: 1367px) {

    .whoweare {
        background: #f5f5f5 url("../img/bg-who_we_are.png") no-repeat left top;
    }
}

/* SECTION OUR SERVICES */

.ourservices {
    padding: 60px 0;
    background: #f5f5f5 url("../img/bg-our_services.jpg") no-repeat center;
    background-size: cover;
}

    .ourservices h3,
    .ourservices h4 {
        text-align: center;
        color: #fff;
    }
    
    .delivery-box {
        position: relative;
        margin: 0 auto;
        width: 100%;
        display: block;
        text-align: center;
        padding: 20px;

        margin-top: 0;
        
        opacity: 0;

        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);

        -webkit-transition: 1s;
        -moz-transition: 1s;
        -ms-transition: 1s;
        -o-transition: 1s;
        transition: 1s;
    }
    
    .delivery-box.in {
        opacity: 1;

        -o-transform: translateY(30px);
        -ms-transform: translateY(30px);
        -moz-transform: translateY(30px);
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

        .delivery-box > div {
            width: 100%;
        }

    .delivery-box > div.yellow {
        background: rgba(191, 134, 10, 0.8);
    }

    .delivery-box > div.red {
        background: rgba(191, 10, 19, 0.8);
    }

    .delivery-box > div.green {
        background: rgba(116, 142, 14, 0.8);
    }
    
    .delivery-box > div.blue {
        background: rgba(28, 103, 196, 0.8);
    }
    
    .delivery-box > div.orange {
        background: rgba(196, 95, 28, 0.8);
    }

    .delivery-box > div.grey {
        background: rgba(134, 126, 130, 0.8);
    }

    .delivery-box > div.brown {
        background: rgba(86, 48, 11, 0.8);
    }

    .delivery-box > div.black {
        background: rgba(0, 0, 0, 0.8);
    }

    .delivery-box > div.aquamarine {
        background: rgba(75, 150, 125, 0.8);
    }

    .delivery-box > div.pink  {
        background: rgba(196, 28, 107, 0.8);
    }

        .delivery-box .header {
            text-align: center;
            width: 100%;
            padding: 30px 0;
        }
            
            .delivery-box .header h4 {
                margin: 0;
            }
            
            .delivery-box .header i {
                font-size: 30px;
                text-align: center;
                color: #fff;
            }
    
        .delivery-box > div.yellow .header {
            background: rgba(191, 134, 10, 0.8);
        }

        .delivery-box > div.red .header {
            background: rgba(191, 10, 19, 0.8);
        }

        .delivery-box > div.green .header {
            background: rgba(116, 142, 14, 0.8);
        }
        
        .delivery-box > div.blue .header {
            background: rgba(28, 103, 196, 0.8);
        }

        .delivery-box > div.orange .header {
            background: rgba(196, 95, 28, 0.8);
        }

        .delivery-box > div.pink .header {
            background: rgba(196, 28, 107, 0.8);
        }

        .delivery-box > div.grey .header {
            background: rgba(134, 126, 130, 0.8);
        }

        .delivery-box > div.brown .header {
            background: rgba(86, 48, 11, 0.8);
        }

        .delivery-box > div.black .header {
            background: rgba(0, 0, 0, 0.8);
        }

        .delivery-box > div.aquamarine .header {
            background: rgba(75, 150, 125, 0.8);
        }

        .delivery-box .smll-line-white {
            margin: 0 auto;
        }
        
        .delivery-box .body {
            color: #fff;
            text-align: left;
            padding: 30px;
        }

@media only screen and (min-width: 769px) {
    
    .ourservices {
        padding: 180px 0;
    }

        .delivery-box {
            width: 33.333%;
            display: inline-block;
            float: left;
            margin-top: 80px;
        }
}

/* FORM SECTION */

.form-section {
    padding: 60px 0;
    background: #fff;
}
    
    .form-section h3,
    .form-section h4 {
        text-align: center;
    }

@media only screen and (min-width: 769px) {
    
    .form-section {
        padding: 180px 0;
    }
}

.form-section form {
    margin-top: 80px;
}

.column {
    width: 100%;
    padding: 10px;
    margin: 20px 0 10px 0;
}

.custom-input {
    position: relative;
    max-width: 100%;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    z-index: 1;
}

@media only screen and (min-width: 769px) { 
    
    .column {
        width: 33.333%;
        float: left;
    }

}

form .serco-button {
    margin: 20px 0;
}

/* CONTACT */

.contact {
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
}


.gmaps {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
    display: none;
}

@media only screen and (min-width: 769px) {
    
    .gmaps {
        display: block;
    }
}

    .gmaps #map {
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    
    .half-triangle {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 60px 0;
        z-index: 99;
    }

    @media only screen and (min-width: 769px) {
        
        .half-triangle {
            width: 50%;
            padding: 180px 0;
        }
    }

    @media only screen and (min-width: 1140px) {

        .half-triangle {
            padding: 180px 0;
        }
    }

    .half-triangle:after {
        display: none;
        content:"";
        position: absolute;
        top: 0;
        left: 100%;
        z-index: 8;
        width: 0;
        height: 0;
        border-left: 0px solid transparent;
        border-right: 650px solid transparent;
        border-top: 731px solid #f5f5f5;
    }
    
    @media only screen and (min-width: 769px) {

        .half-triangle:after {
            display: block;
        }
    }

/* TRACK AREA */

.track-container {
    height: 100%;
    padding: 80px 0;
}

        section.tracking .top {
            position: relative;
            height: 150px;
            width: 100%;
            background: url('../img/bg-tracking-form.jpg') no-repeat center;
            background-size: cover;
        }
        
        section.tracking .wrapper {
            max-width: 1366px;
            margin: 0 auto;
        }

            section.tracking .wrapper #track-form {
                margin: 60px 0 auto;
            }
            
            section.tracking .wrapper .results {
                margin: 50px 0;
            }

                section.tracking .wrapper .results table {
                    width: 100%;
                    font-size: .95em;
                }
                
                    section.tracking .wrapper .results table .info-table {
                        width: 90%;
                    }

                        section.tracking .wrapper .results table .info-table .table-header {
                            text-transform: uppercase;
                            font-weight: 900;
                        }
                        
                        section.tracking .wrapper .results table .info-table .table-body tr:nth-child(2n+1) {
                            background-color: #eee;
                        }

                            section.tracking .wrapper .results table .info-table .table-header tr td,
                            section.tracking .wrapper .results table .info-table .table-body tr td {
                                padding: 5px 10px;
                            }

                            section.tracking .wrapper .results table .info-table .status {
                                width: 40%;
                            }
                            
                            section.tracking .wrapper .results table .info-table .date {
                                width: 20%;
                            }
                            
                            section.tracking .wrapper .results table .info-table .comments {
                                width: 60%;
                            }

                    section.tracking .wrapper .results table .info-color {
                        width: 10%;
                        position: relative;
                    }
                        
                        section.tracking .wrapper .results table .info-color .icon-container {
                            width: 100%;
                            text-align: center;
                        }
                            
                            section.tracking .wrapper .results table .info-color .icon-container i::before {
                                color: #fff;
                                font-size: 3em;
                                display: inline-block;
                                font-style: normal;
                                font-family: "Ionicons";
                            }

                    section.tracking .wrapper .results table .info-color.green {
                        background-color: #14B259;
                    }
                        
                        section.tracking .wrapper .results table .info-color.green .icon-container i::before {
                            content: '\f375';
                        }

                    section.tracking .wrapper .results table .info-color.yellow {
                        background-color: #FFC351;
                    }
                        
                        section.tracking .wrapper .results table .info-color.yellow .icon-container i::before {
                            content: '\f35b';
                        }

                    section.tracking .wrapper .results table .info-color.red {
                        background-color: #E8142A;
                    }

                        section.tracking .wrapper .results table .info-color.red .icon-container i::before {
                            content: '\f405';
                        }

/* NEWS AREA */

.news-container {
    height: 100%;
    padding: 80px 0;
    background: #f5f5f5;
}

        section.news .top {
            position: relative;
            height: 150px;
            width: 100%;
            background: url('../img/bg-tracking-form.jpg') no-repeat center;
            background-size: cover;
        }
        
        section.news .wrapper {
            max-width: 1366px;
            margin: 0 auto;
        }   

            section.news .wrapper .news-box {
                padding: 30px 0;
                clear: both;
                display: block;
            }
            
                section.news .wrapper .news-box figure {
                    display: block;
                    max-width: 1040px;
                    text-align: center;
                }
                    
                    section.news .wrapper .news-box figure img {
                        max-width: 100%;
                        height: auto;
                    }

                section.news .wrapper .news-box .information-container {
                    display: block;
                    width: 100%;
                }

                    section.news .wrapper .news-box h4 {
                        text-transform: uppercase;
                    }


/* PAGINATOR */

.paginator {
    display: block;
    width: 100%;
}

    .paginator ul li {
        display: inline-block;
    }
        
        .paginator ul li a {
            display: table;
            color: #bf0a13;
            border: 1px solid #bf0a13;
            width: 30px;
            height: 30px;

            -webkit-transition: .3s;
            -moz-transition: .3s;
            -ms-transition: .3s;
            -o-transition: .3s;
            transition: .3s;
        }
        
        .paginator ul li a.active,
        .paginator ul li a:hover {
            color: #fff;
            background-color: #bf0a13;
        }

            .paginator ul li a > * {
                line-height: 1em;
                display: table-cell;
                vertical-align: middle;
                text-align: center;
            }

/* FOOTER */

.footer-container {
    position: relative;
    width: 100%;
    padding: 30px 0;
    background: #222222;
}

.footer-container.fixed {
    position: absolute;
    bottom: 0;
}    

    .footer-container footer ul {
        width: 100%;
    }

        .footer-container footer ul li {
            color: #fff;
            width: 100%;
            margin-left: 0;
            display: block;
            text-align: center;
        }
        
        .footer-container footer ul li:first-of-type {
            text-align: center;
            margin-bottom: 10px;
        }

        .footer-container footer ul li:last-of-type {
            text-align: center;
            margin-top: 10px;
        }

            .footer-container footer ul li a {
                color: #fff;
                outline: none;
            }

                .footer-container footer ul li a i {
                   font-size: 30px;
                }

    @media only screen and (min-width: 769px) {
        
        .footer-container footer ul li {
            width: 33.333%;
            margin-left: -4px;
            display: inline-block;
        }

        .footer-container footer ul li:first-of-type {
            text-align: left;
            margin-bottom: 0;
        }

        .footer-container footer ul li:last-of-type {
            text-align: right;
            margin-top: 0;
        }
    }

/* ENVIO */

.envio {
    height: calc(100vh - 110px);
}

    .envio .top {
        height: 80px;
    }
        
        .envio .wrapper {
            text-align: center;
        }
            
            .envio .wrapper .success,
            .envio .wrapper .error {
                text-align: center;
                padding: 100px 0;
                display: none;
            }
            
            .envio .wrapper .success.active,
            .envio .wrapper .error.active {
                display: block;
            }

            .envio .wrapper .icon {
                font-size: 48px;
            }
            
            .envio .success .icon {
                color: #2ecc71;
            }
            
            .envio .error .icon {
                color: #CC3F2E;
            }

    @media only screen and (min-width: 769px) {
        .envio .footer-container {
            position: fixed;
            bottom: 0;
        }
    }

/* POPUP */

.popup {
    background: #FFF;
    padding: 40px; 

    opacity: 0;

    -o-transform: scale(0);
    -ms-transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);

    -o-transition: all .5s cubic-bezier(.41,.01,.23,1.19);
    -ms-transition: all .5s cubic-bezier(.41,.01,.23,1.19);
    -moz-transition: all .5s cubic-bezier(.41,.01,.23,1.19);
    -webkit-transition: all .5s cubic-bezier(.41,.01,.23,1.19);
    transition: all .5s cubic-bezier(.41,.01,.23,1.19);
}

.mfp-ready .popup {
    opacity: 1;

    -o-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.mfp-removing .popup {

    opacity: 0;

    -o-transform: scale(0);
    -ms-transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
}

.mfp-content .popup .scroll {
    overflow-y: auto;
    max-height: 500px;
}

.popup .mfp-close {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -60px;
    right: 0px;
    opacity: 1;
    background: #fff;
    color: #000;
    font-size: 1em;
    padding: 0;

    -o-transform: translate(0, 60px);
    -ms-transform: translate(0, 60px);
    -moz-transform: translate(0, 60px);
    -webkit-transform: translate(0, 60px);
    transform: translate(0, 60px);

    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;

    z-index: -1;
}

.mfp-ready .popup .mfp-close {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;

    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}


.mfp-fade.mfp-bg {
    z-index: 999999 !important;
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap {
    z-index: 999999 !important;
}



/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.text-align-center {
    text-align: center;
}

.text-align-right {
    text-align: right;
}

.margin-auto {
    margin: auto;
}

.uppercase {
    text-transform: uppercase;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}