﻿
/*#region LAYOUT */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    height: 85px;
    z-index: 2;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

#header-bg {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    background: #111;
    opacity: 0.9;
    z-index: -1;
}

/*Barra negra arriba del encabezado*/
#top-header {
    background: #111;
    width: 100%;
    height: 40px;
    padding: 0 25px;

}

    #top-header .dropdown {
        display: inline-block;
        opacity: 0.8;
        margin-right: 22px;
    }

        #top-header .dropdown:hover {
            opacity: 1;
        }

        #top-header .dropdown button {
            background-color: transparent;
            border: none;
            padding: 8px 0 8px 22px;
            background-image: url(img/header-icons.png);
            background-repeat: no-repeat;
            background-position-x: 0;
            background-size: 16px;
        }

        #top-header .dropdown:hover button,
        #top-header .dropdown:hover button .caret,
        #top-header .pull-left > a:hover {
            color: #ffd901;
        }

        #top-header .dropdown:nth-child(1) button {
            background-position-y: 12px;
        }
        #top-header .dropdown:nth-child(1):hover button {
            background-position-y: -20px;
        }
        #top-header .dropdown:nth-child(2) button {
            background-position-y: -116px;
        }
        #top-header .dropdown:nth-child(2):hover button {
            background-position-y: -148px;
        }
               
    #top-header a {
        color: #fff;
        opacity: 0.8;
    }

    #top-header a:hover {
        text-decoration: none;
        opacity: 1;
    }

    #top-header .pull-left > a {
        display: inline-block;
        padding-left: 25px;
        background: url(img/header-icons.png) 0 -60px no-repeat;
        background-size: 16px;
        /*-moz-transition: .3s opacity;
        -o-transition: .3s opacity;
        -webkit-transition: .3s opacity;
        transition: .3s opacity;*/
    }

    #top-header .pull-left > a:hover {
        background-position-y: -92px;
    }

    #top-header .dropdown li {
        color: #111;
        font-size: 15px;
        padding: 6px 12px;
        display: block;
        white-space: nowrap;
    }

    

    #top-header .dropdown li:hover {
        background: #c9c9c9;

    }

        #top-header .dropdown li b {
            display: inline-block;
            width: 120px;
        }

    #top-header .pull-right ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        #top-header .pull-right ul li {
            display: inline-block;
            margin: 0 0 0 15px;
        }

            #top-header .pull-right ul li a {
                display: inline-block;
                height: 40px;
                line-height: 30px;
                padding: 5px;
                font-size: 14px;
                text-transform: uppercase;
            }

            #top-header .pull-right a:hover {
                color: #ffd901;
                text-decoration: none;
            }


#header-logo {
    margin: 1px 0 0 25px;
    float: left;
}

    #header-logo a {
        display: inline-block;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        background: url(img/logo-camosa.png?v=2) left 2px no-repeat;
        width: 170px;
        height: 60px;
        background-size: 125px;
    }

#header-menu {
    position: absolute;
    right: 20px;
    top: 72px;
    text-align: right;
    -moz-transition: .25s;
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
}

#header-menu nav > ul {
    display: table;
}

    #header-menu nav > ul > li {
        width: auto;
        display: table-cell;
    }

    #header-menu nav li:first-child span {
        width: 30px;
        height: 30px;
        display: inline-block;
        vertical-align: top;
        background-image: url(img/header-icons.png);
        background-position: center -334px;
        background-size: 28px;
        background-repeat: no-repeat;
    }

    #header-menu nav li:first-child:hover span,
    #header-menu nav li:first-child a:focus span {
        background-position: center -389px;
    }

        #header-menu nav > ul > li > a {
            text-transform: uppercase;
            padding: 14px 12px;
            font-family: "franklin-gothic-urw-cond", "myriad-pro", "Segoe UI", sans-serif;
            color: #fff;
            font-size: 22px;
            text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
        }

            #header-menu nav > ul > li > a > .caret {
                color: #ffd901;
            }

            #header-menu nav > ul > li:hover > a,
            #header-menu nav > ul > li > a:focus {
                background-color: #fff;
                outline: none;
                color: #000;
                border: none;
                text-shadow: none;
                -moz-transition: .2s;
                -o-transition: .2s;
                -webkit-transition: .2s;
                transition: .2s;
            }


        #header-menu nav > ul > li:hover a .caret,
        #header-menu nav > ul > li > a:hover .caret {
            color: #000;
        }



/*Full width submenu*/
#header-menu nav > ul,
#header-menu nav > ul .dropdown {
    position: static;
}

    #header-menu .dropdown-menu.fw,
    #header-menu .nav-justified > .dropdown .dropdown-menu.fw {
        left: 0;
        width: 100%;
    }

    #header-menu .dropdown:last-child .dropdown-menu {
        right: 0;
    }

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate(0, -15px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

#header-menu .dropdown .dropdown-menu {
    margin-top: 0;
    background: #fff;
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    border: none;
    padding: 0;
    color: #fff;
    -moz-box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.menu-open {
    display: block;
    -moz-animation: fadeIn .3s;
    -webkit-animation: fadeIn .3s;
    animation: fadeIn .3s;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}


#header-search {
    float: right;
    height: 36px;
}

    #header-search button {
        width: 50px;
        height: 56px;
        border: none;
        background-color: none;
        background: url(img/icons/search.png) 11px 14px no-repeat;
        background-size: 25px;
        outline: none;
        -moz-transition: .3s;
        -o-transition: .3s;
        -webkit-transition: .3s;
        transition: .3s;
    }


    #header-search button:hover{
        background-color: #fff;
        background-image: url(img/icons/search-b.png);
    }

        #header-search button:active {
            -moz-transform: scale(.8);
            -ms-transform: scale(.8);
            -o-transform: scale(.8);
            -webkit-transform: scale(.8);
            transform: scale(.8);
        }

#header-menu .dropdown > ul.dropdown-menu {
    padding: 15px 0;
}

#header-menu nav ul > li > .dropdown-menu > li > a {
    font-size: 17px;
    padding: 9px 15px 10px 15px;
    display:block;
}

    #header-menu nav ul > li > .dropdown-menu > li > a:hover {
        background-color: #ccc;
    }


#header-menu .submenu {
    position: relative;
    width: 100%;
}

    #header-menu .submenu > ul {
        background: #ddd;
        width: 28%;
        padding: 15px 0;
        list-style: none;
        min-height: 400px;
    }

        #header-menu .submenu > ul > li > a {
            display: block;
            font-size: 17px;
            color: #111;
            padding: 11px 14px 12px 10px;
            background: url(img/menu-arrow.png) 110% 49% no-repeat;
            background-size: 40px;
            line-height: 18px;
            -moz-transition: .3s;
            -o-transition: .3s;
            -webkit-transition: .3s;
            transition: .3s;
        }

        #header-menu .submenu > ul > li:hover > a {
            background-color: #ccc !important;
            text-decoration: none;
            background-position-x: 96%;
        }

        #header-menu .submenu > ul > li .menu-pop,
        #header-menu .submenu .menu-default,
        #header-menu .submenu > ul > li .menu-bg {
            display: none;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 73%;
            height: 100%;
            padding: 20px 15px;
            z-index: 3;
            background-color: #fff;
            background-repeat: no-repeat;
            background-position: left center;
            background-size: cover;
        }

        #header-menu .submenu > ul > li .menu-pop {
            background: #fff;
            background: -moz-linear-gradient(-45deg, rgba(255,255,255,1) 25%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0.6) 100%);
            background: -webkit-gradient(left top, right bottom, color-stop(25%, rgba(255,255,255,1)), color-stop(70%, rgba(255,255,255,0.8)), color-stop(100%, rgba(255,255,255,0.6)));
            background: -webkit-linear-gradient(-45deg, rgba(255,255,255,1) 25%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0.6) 100%);
            background: -o-linear-gradient(-45deg, rgba(255,255,255,1) 25%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0.6) 100%);
            background: linear-gradient(135deg, rgba(255,255,255,1) 25%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0.6) 100%);
        }

        #header-menu .submenu h3 {
            color: #333;
            margin: 4px 0 11px 0;
            font-family: "franklin-gothic-urw-cond", "myriad-pro", "Segoe UI", sans-serif;
            text-transform: uppercase;
            font-size: 22px;
        }

            #header-menu .submenu .menu-default {
                display: block;
                z-index: 1;
            }

        #header-menu .submenu > ul > li:hover .menu-pop {
            display: block;
        }

    #header-menu .submenu > ul li:hover .menu-bg {
        display: block;
        z-index: 2;
    }

        #header-menu .submenu div p {
            color: #333;
            font-size: 16px;
            text-shadow: 0 0 6px #fff;
        }

#header-menu .submenu li a i {
    float: left;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-top: -3px;

    background-size: 25px;
    background-position-x: center;
    background-position-y: top;
}

#header-menu .machine-types {
    margin: 20px 0 15px 0;
    padding: 0 10px;
}

    #header-menu .machine-types .col-xs-3:hover {
        -moz-transform: scale(1.04);
        -ms-transform: scale(1.04);
        -o-transform: scale(1.04);
        -webkit-transform: scale(1.04);
        transform: scale(1.04);
    }

    #header-menu .machine-types h4 {
        color: #111;
        font-size: 16px;
        font-weight: 600;
        margin: 5px 0;
        text-align: center;
        text-shadow: 0 0 8px #fff;
    }

    #header-menu .machine-types img {
        border: 4px solid #fff;
        -moz-box-shadow: 0 0 3px rgba(0,0,0,0.2);
        -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.2);
        box-shadow: 0 0 3px rgba(0,0,0,0.2);
    }

    #header-menu .machine-types a:hover{
        text-decoration: none;
    }

    #top-header {
        height: 26px;
        font-size: 12px;
    }

        #top-header .dropdown button {
            padding: 4px 0 4px 20px;
            background-size: 12px;
        }

        #top-header .dropdown:nth-child(1) button {
            background-position-y: 7px 
        }
        #top-header .dropdown:nth-child(1):hover button {
            background-position-y: -17px
        }
        #top-header .dropdown:nth-child(2) button {
            background-position-y: -89px
        }
        #top-header .dropdown:nth-child(2):hover button {
            background-position-y: -113px
        }

        #top-header .pull-left > a {
            padding-left: 20px;
            background-size: 12px;
            background-position-y: -44px;
        }
            #top-header .pull-left > a:hover {
                background-position-y: -68px;
            }


        #top-header .pull-right ul li {
            margin-top: -1px;
        }

            #top-header .pull-right ul li a {
                font-size: 12px;
                height: 27px;
                line-height: 19px;
            }

    #header-menu {
        top: 26px;
        height: 59px;
    }

    #header-menu nav li:first-child span {
        background-position: center -298px;
        background-size: 25px;
    }

    #header-menu nav li:first-child:hover span,
    #header-menu nav li:first-child:focus span {
        background-position: center -348px;
    }

    header .nav.nav-justified {
        margin-top: 0;
    }

#header-promo {
    position: relative;
}

    #header-promo i {
        position: absolute;
        z-index: 1;
        top: 5px;
        right: 4px;
        width: 18px;
        height: 18px;
        background: #eeae14;
        animation: spin 3s linear infinite;
    }

        #header-promo i:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 18px;
            height: 18px;
            background: #eeae14;
            transform: rotate(135deg);
        }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    #header-promo span {
        position: absolute;
        display: block;
        z-index: 2;
        top: 4px;
        right: 3px;
        color: #fff;
        text-align: center;
        width: 21px;
        font-size: 14px;
        text-shadow: 0 0 3px #aa7403, 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

footer .container-fluid {
    background: #444 url(/css/img/dark-pattern.jpg) center center no-repeat;
    background-size: cover;
    padding: 80px 20px;
}

footer a ,
footer .lnk {
    color: #bbb;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
    border: none;
}

footer a:hover,
footer .lnk:hover {
    color: #fff;
    text-decoration: none;
    border: none;
}

footer h3 {
    color: #ffd901;
    font-family: "franklin-gothic-urw-cond", "myriad-pro", "Segoe UI", sans-serif;
    font-size: 30px;
    margin-top: 25px;
}

footer .col-md-3 h3:first-child {
    margin-top: -5px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer .col-md-3:nth-child(1) img {
    opacity: 0.8;
}

footer .col-md-3:nth-child(1) div {
    margin-top: 30px;
    color: #bbb;
}

footer .col-md-3:nth-child(1) div h4 {
    color: #eee;
    font-weight: 600;
    margin-bottom: 5px;
}

    footer .col-md-3:nth-child(1) div p {
        margin-bottom: 3px;
    }


#copy {
    background: #111;
    padding: 40px 0;
    color: #666;
}

#copy ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    #copy ul li {
        display: inline-block;
    }

#copy .text-right ul {
    float: right;
}

#copy .text-right li {
    margin-left: 20px;
}

#copy a {
    text-decoration: none;
    color: #666;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

#copy a:hover {
    color: #888;
}

#copy .text-center {
    height: 0;
}

#copy .text-center ul {
    margin-top: -3px;
}

#copy .text-center a {
    display: inline-block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 30px;
    height: 30px;
    margin: 0 8px;
    background: url(img/icons/social-icons.png);
    background-size: 30px;
    background-repeat: no-repeat;
    opacity: 0.6;
}

#copy .text-center a:hover{
    opacity: 1;
}

#copy .text-center li:nth-child(2) a {
    background-position-y: -60px;
}
#copy .text-center li:nth-child(4) a {
    background-position-y: -120px;
}
#copy .text-center li:nth-child(3) a {
    background-position-y: -180px;
}

    #copy .text-center li:nth-child(1) a:hover {
        background-position-y: -240px;
    }
    #copy .text-center li:nth-child(2) a:hover {
        background-position-y: -300px;
    }
    #copy .text-center li:nth-child(4) a:hover {
        background-position-y: -360px;
    }
    #copy .text-center li:nth-child(3) a:hover {
        background-position-y: -420px;
    }

/*#endregion */

/*#region HOME */

#home-slider {
    background: #000;
}

    #home-slider .swiper-slide {
        height: 700px;
        position: relative;
        background: #000;

        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -moz-box-pack: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: left;

    }

    #home-slider .swiper-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0;

        -moz-transition: opacity .5s;
        -o-transition: opacity .5s;
        -webkit-transition: opacity .5s;
        transition: opacity .5s;
    }

    #home-slider .swiper-button-prev,
    #home-slider .swiper-button-next {
        padding: 40px 30px;
    }



.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 15px;
    width: 12px;
    height: 12px;
    -moz-box-shadow: 0 1px 6px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.3);
    box-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 25px;
}

#home-slider .swiper-slide .container {
    z-index: 1;
    margin-top: 80px;
}

#home-slider .swiper-slide h2 {
    font-family: "franklin-gothic-urw-cond", Helvetica, sans-serif;
    max-width: 500px;
    margin: 0 0 10px 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 60px;
    line-height: 55px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

#home-slider .swiper-slide p {
    max-width: 500px;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    opacity: 0.9;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

#home-slider .swiper-slide hr {
    width: 80px;
    margin: 16px 0 0 0;
    height: 4px;
    background: #ffd901;
    border: none;
    -moz-box-shadow: 0 0 3px rgba(0,0,0,.4);
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.4);
    box-shadow: 0 0 3px rgba(0,0,0,.4);
    opacity: 0.8;
}

#home-slider .swiper-slide .read-more {
    display: inline-block;
    margin-top: 20px;
    border: 2px solid #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 15px;
    background: rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

    #home-slider .swiper-slide .read-more:hover {
        text-decoration: none;
        background: #fff;
        color: #111;
    }


#brands-slider{
    margin: 30px 0;
}

#brands-slider .swiper-container {
    width: 100%;
    height: 300px;
    margin: 20px auto;
}

    #brands-slider .swiper-slide {
        background: #fff;
        margin-right: 30px;
        width: 120px;
        height: 80px;
        text-align: center;
        /* Center slide text vertically */
        
        -moz-transition: .3s;
        -o-transition: .3s;
        -webkit-transition: .3s;
        transition: .3s;
    }


#brands-slider .wide {
    width: 180px;
}

.grad-right,
.grad-left {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 100;
    width: 30px;
}

.grad-left {
    left: 0;
    background: none;
}

.grad-right {
    right: 0;
    background: none;
}

.grad-left-white {
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.grad-right-white {
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.grad-left-grey {
    background: rgba(239,240,240,1);
    background: -moz-linear-gradient(left, rgba(239,240,240,1) 0%, rgba(239,240,240,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(239,240,240,1)), color-stop(100%, rgba(239,240,240,0)));
    background: -webkit-linear-gradient(left, rgba(239,240,240,1) 0%, rgba(239,240,240,0) 100%);
    background: -o-linear-gradient(left, rgba(239,240,240,1) 0%, rgba(239,240,240,0) 100%);
    background: linear-gradient(to right, rgba(239,240,240,1) 0%, rgba(239,240,240,0) 100%);
}

.grad-right-grey {
    background: rgba(239,240,240,0);
    background: -moz-linear-gradient(left, rgba(239,240,240,0) 0%, rgba(239,240,240,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(239,240,240,0)), color-stop(100%, rgba(239,240,240,1)));
    background: -webkit-linear-gradient(left, rgba(239,240,240,0) 0%, rgba(239,240,240,1) 100%);
    background: -o-linear-gradient(left, rgba(239,240,240,0) 0%, rgba(239,240,240,1) 100%);
    background: linear-gradient(to right, rgba(239,240,240,0) 0%, rgba(239,240,240,1) 100%);
}

#home-machines img {
    margin: 0 auto 10px auto;
}

#home-company .col-md-4 {
    text-align: center;
}

#home-company .col-md-4 img {
    margin: 0 auto;
    max-width: 260px;
}

#home-company .col-md-4 h3 {
    font-weight: 600;
}

#home-company .col-md-4 p {
    color: #666;
    font-size: 18px;
}


#home-machinery .col-md-12{
    padding: 0;
}

#home-machinery .nav-tabs {
    background: #d5d5d5;
    margin-top: 10px;
    border: none;
}

    #home-machinery .nav-tabs li {
        margin-bottom: 0;
    } 
    
    #home-machinery .nav-tabs li > a {
        font-family: "franklin-gothic-urw-cond", Helvetica, sans-serif;
        padding-left: 20px;
        padding-right: 20px;
        color: #333;
        font-weight: 500;
        border-radius: 0;
        text-transform: uppercase;
        font-size: 20px;
        letter-spacing: 0.5px;
        border: none;
        text-shadow: none;
        -moz-transition: .3s;
        -o-transition: .3s;
        -webkit-transition: .3s;
        transition: .3s;
        border-color: #ffd901;
    }

        #home-machinery .nav-tabs li > a:hover,
        #home-machinery .nav-tabs li > a:focus {
            background: #dfdfdf;
            color: #111;
            text-shadow: none;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            outline: none;
        }

        #home-machinery .nav-tabs li.active > a {
            background: #fff;
            color: #111;
            border: none;
            border-top: 3px solid #ffd901;
            padding-top: 7px;
            /*padding-bottom: 9px;*/
        }

    #home-machinery .nav-tabs .dropdown-menu {
        background: #dfdfdf;
        padding: 10px 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.3);
        -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.3);
        box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }

    /*#home-machinery .nav-tabs .dropdown-menu {
        background: #111;
        padding: 10px 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
    }*/

    #home-machinery .nav-tabs .dropdown-menu li a {
        padding: 8px 20px;
    }

#home-machinery .tab-content {
    background: #eff0f0;
    padding: 30px;
}

#home-machinery .container {
    padding: 0 30px;
}

#home-machinery .swiper-container {
    margin: -10px 60px;
}

#home-machinery .swiper-wrapper {
    padding: 10px;
}

#home-machinery .swiper-slide {
    background: #fff;
    width: 200px;
    height: 248px;
    padding: 15px;
    text-align: center;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    #home-machinery .swiper-slide:hover {
        -moz-transform: scale(1.04);
        -ms-transform: scale(1.04);
        -o-transform: scale(1.04);
        -webkit-transform: scale(1.04);
        transform: scale(1.04);
    }

    #home-machinery .swiper-slide a {
        color: #111;
    }

        #home-machinery .swiper-slide a:hover {
            text-decoration: none;
        }

#home-machinery .swiper-slide h4 {
    margin: 10px 0 0 0;
    line-height: 1.1;
    font-weight: 600;
}

#home-machinery .swiper-button-prev {
    left: 30px;
}
#home-machinery .swiper-button-next {
    right: 30px;
}
#home-machinery .swiper-button-black {
    opacity: 0.8;
}

#home-machinery .swiper-button-prev.swiper-button-disabled, 
#home-machinery .swiper-button-next.swiper-button-disabled{
    opacity: 0.2;
}



#home-services{
    margin-top: 30px;
}

    #home-services .home-service {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 400px;
        width: 100%;
        color: #fff;
        text-align: center;
        text-shadow: 0 0 10px rgba(0,0,0,.7);

        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -moz-transition: .6s;
        -o-transition: .6s;
        -webkit-transition: .6s;
        transition: .6s;
    }


    .home-service div {
        max-width: 85%;
    }

    .home-service p{
        line-height: 1.3;
    }

    .home-service .line-btn {
        margin-top: 11px;
    }

    .home-service .line-btn:hover {
        text-shadow: none;
        color: #111;
        font-size: 16px;
    }

#home-services .col-md-4 h3 {
    font-size: 42px;
    font-family: "franklin-gothic-urw-cond", "myriad-pro", "Segoe UI", sans-serif;
    line-height: 1;
    margin: 0 0 10px 0;
    font-weight: 600;
    text-transform: uppercase;
}

#home-services .col-md-4 h3 a {
    color: #fff;
}

    #home-services .col-md-4 h3 a:hover {
        text-decoration: none;
    }

    #home-services .col-md-4 p {
        font-size: 20px;
        opacity: 0.95;
    }


#home-news .col-md-4 h3 {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 22px;
}

#home-news .col-md-4 p {
    font-size: 15px;
}

.home-banner {
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
}

    .home-banner div {
        position: absolute;
        width: 60%;
        height: 100%;
    }

    .home-banner h3 {
        font-family: "franklin-gothic-urw-cond", "myriad-pro", "Segoe UI", sans-serif;
        font-size: 50px;
        line-height: 1;
        margin-top: 65px;
    }

    .home-banner p {
        font-size: 22px;
        line-height: 1.2;
        margin: 30px 0;
        opacity: 0.8;
    }

    .home-banner a {
        font-size: 20px;
        text-shadow: none;
    }

.map-marker-window {
    padding-top: 5px;
}

.map-marker-window .img {
    float: left;
    width: 70px;
    height: 70px;
    background: #ccc;
    border: 1px solid #ccc;
    margin-bottom: 3px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.map-marker-window .content {
  margin-left: 80px;
}

.map-marker-window h5 {
    margin: 0 0 7px 0;
}

    .map-marker-window p {
        max-width: 200px;
        margin-bottom: 0;
    }

/*#endregion */

/*#region MACHINERY */

#machine-type-list > h3 {
    margin-bottom: 20px;
}

.machine-type-entry {
    margin-bottom: 20px;
}

    .machine-type-entry img {
        margin: 0 auto;
        border: 2px solid #ddd;
        padding: 5px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 4px;
        -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
        background: #fff;
    }

    .machine-type-entry a {
        color: #333;
    }

    .machine-type-entry h3 {
        font-weight: 600;
    }

#machine-info h1 {
    margin: 0;
}

#machine-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #999;
    margin: 0;
    margin-bottom: 2px;
}

#machine-info div > ul {
    margin-top: 25px;
}

.rent-equipment {
    margin-bottom: 40px;
}

    .rent-equipment h3 {
        margin: 5px 0 0 0;
    }

    .rent-equipment img {
        -moz-transition: .3s;
        -o-transition: .3s;
        -webkit-transition: .3s;
        transition: .3s;
    }

    .rent-equipment img:hover {
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    .rent-equipment span {
        font-size: 15px;
        color: #666;
    }

    .rent-equipment strong i {
        margin-right: 2px;
    }

    .rent-details ul {
        margin-top: 5px;
        padding-left: 18px;
        font-size: 15px;
    }

    .rent-details ul li {
        line-height: 1.1;
        margin-bottom: 5px;
    }

    #rent-prices {
        margin-top: 30px;
        padding-left: 20px;
    }

    #rent-prices li {
        list-style: none;
        padding-left: 0;
        margin-bottom: 3px;
        color: #777;
    }

    #rent-prices li:first-child strong {
        font-size: 30px;
        line-height: 1;
    }

        #rent-prices strong {
            font-family: "franklin-gothic-urw-cond", "myriad-pro", "Segoe UI", sans-serif;
            margin-right: 5px;
            letter-spacing: -1px;
            font-size: 22px;
            color: #333;
        }

   

    .machine-type-entry p {
        font-size: 16px;
        color: #555;
    }

#machine-list {
    margin-top: 25px;
}

    #machine-list .grid-item {
        text-align: center;
        -moz-transition: .3s;
        -o-transition: .3s;
        -webkit-transition: .3s;
        transition: .3s;
    }

        #machine-list .grid-item:hover {
            -moz-transform: scale(1.04);
            -ms-transform: scale(1.04);
            -o-transform: scale(1.04);
            -webkit-transform: scale(1.04);
            transform: scale(1.04);
        }

        #machine-list .grid-item a:hover {
            text-decoration: none;
        }

    #machine-list .grid-item h4 {
        font-weight: 600;
        margin-top: 5px;
    }

#machine-category .col-sm-4 img {
    width: 100%;
}

#machine-category h4 {
   font-size: 20px;
   margin-top: 30px;
   margin-bottom: 18px;
   border-bottom: 2px solid #f5f5f5;
   padding-bottom: 5px;
}

#machine-category .grid-item {
    text-align: center;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

    #machine-category .grid-item:hover {
        -moz-transform: scale(1.04);
        -ms-transform: scale(1.04);
        -o-transform: scale(1.04);
        -webkit-transform: scale(1.04);
        transform: scale(1.04);
    }

        #machine-category .grid-item a:hover {
            text-decoration: none;
        }

    #machine-category .grid-item a h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 5px;
    }

    #machine-page {
        padding-top: 150px;
    }

    #machine-page .col-md-4 ul{
        padding-left: 20px;
    }

/*#endregion */

/*#region SUCURSALES */

.office-tabs {
    position: relative;
    /*height: auto;*/
    border-top: 2px solid #eff0f0;
    margin-top: 30px;
    height: auto;
    height: 100%;
}

    .office-tabs:after,
    .office-tabs:before,
    .office-tabs div:after,
    .office-tabs div:before {
        content: "";
        display: table;
    }

    .office-tabs:after,
    .office-tabs div:after {
        clear: both;
    }

    .office-tabs h4 {
        background: #eff0f0;
        cursor: pointer;
        border-top: none;
        padding: 20px;
        font-size: 20px;
        margin: 0;
        -moz-transition: background .3s;
        -o-transition: background .3s;
        -webkit-transition: background .3s;
        transition: background .3s;
    }

    .office-tabs h4:hover {
        background: #f6f6f6;
    }

        .office-tabs .active:hover {
            background: #fff;
        }

    .office-tabs > div {
        position: relative;
        border-left: none;
        display: none;
        height: auto;
        height: 100%;
    }

    .office-tabs .active {
        cursor: default;
        background: #fff;
        border-left: 3px solid #ffd901;
    }

        .office-tabs .active + div {
            display: block;
            z-index: 2;
            height: 0;
        }

.office-info {
    padding: 20px;
    background: #fff;
}

.office-info img {
    border: 2px solid #dfdfdf;
    padding: 5px;
    max-height: 150px;
    background: #fff;
}

    .office-info .col-sm-8 {
        padding-left: 0;
    }


.office-info .col-sm-8 h3 {
    margin-top: 0;
    font-weight: 600;
}

    .office-info .col-sm-8 a {
        color: #555;
    }

#office-map {
    position: absolute;
    background: #f6f6f6;
    height: 100%;
    z-index: 0;
    display: block;
    width: 66.64%;
    right: 0;
    top: 0;
}


@media screen and (min-width: 600px) {

    .office-tabs h4 {
        position: relative;
        width: 33.333333333333336%;
        height: 20%;
        display: block;
    }

    .office-tabs > div {
        position: absolute;
        width: 66.66666666666667%;
        right: 0;
        top: 0;
    }

   
}


/*#endregion */

/*#region CONTACT */

#phone-list {
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

    #phone-list li {
        margin-bottom: 20px;
    }

    #phone-list h4 {
        font-weight: 600;
        margin-bottom: 5px;
    }

    .number-list li {
        margin-bottom: 10px;
        padding-left: 12px;
    }

/*#endregion */

/*#region RENT*/

#rent .col-md-8 .col-xs-4 {
    margin: 30px 0;
}

/*#endregion */

/*#region NEWS */

#post-list .row {
    margin-bottom: 40px;
}

#post-list .col-sm-4 img {
    border: 1px solid #ddd;
    padding: 4px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

#post-list h3 {
    margin: 0 0 10px 0;
}

#post-list .col-sm-8 {
    font-size: 16px;
}
    #post-list .col-sm-8 div {
        opacity: 0.8;
    }

    #post-list .col-sm-8 div .sep {
        background: #ccc;
        display: inline-block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        margin: 0px 5px 1px 5px;
    }

    #post-list .col-sm-8 div time {
        cursor: help;
    }


#post-navigation > .pull-left,
#post-navigation > .pull-right {
    width: 48%;
    margin-bottom: 20px;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
}

#post-navigation > .pull-right {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

    #post-navigation img {
        width: 100px;
        background: #fff;
        border: 2px solid #ccc;
        padding: 3px;
        border-radius: 3px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }

#post-navigation .title {
    font-size: 16px;
    line-height: 1.2;
}

#post-navigation .pull-left .title {
    margin-left: 10px;
}

#post-navigation .pull-right .title {
    text-align: right;
    margin-right: 10px;
}

.rent-navigation {
    margin-top: 40px;
}

/*#endregion */

/*#region PRODUCTOS */

#products-header {
    height: 85px;
    background: #111;
}

#products-slider {
    max-width: 1600px;
    box-shadow: 0 -20px 50px #000;
}

#products-slider .swiper-slide {
    height: 350px;
    background: #000;
}

#products-slider .swiper-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    -moz-transition: opacity .5s;
    -o-transition: opacity .5s;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}

.padding-btn {
    padding: 30px 0;
}

#products-home h3 {
    margin-top: 30px;
}

#products-home h3 a {
    font-size: 14px;
    margin-left: 5px;
}


#products-home form .input-group {
    margin: 0 auto;
}

#products-search-form {
    margin-top: 30px;
}

    #products-search-form .input-group {
        width: 100%;
        max-width: 600px;
    }

    #products-search-form button {
        font-size: 17px;
        font-weight: 600;
        border: 2px solid #cfd3d6;
        border-left: none;
    }

    #products-search-form button i {
        position: relative;
        top: 2px;
        margin-right: 6px;
    }

.product-features .swiper-slide {
    position: relative;
    transform: scale(0.89);
    text-align: center;
    transition: .3s;
    margin-bottom: 10px;
}

    .product-features .swiper-slide:hover {
        transform: scale(0.92) translateY(-1.5%);
    }

    .product-features .swiper-slide div {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        font-weight: 600;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .product-features .swiper-slide div span {
            background: rgba(255,255,255,0.8);
            padding: 3px 10px 5px 10px;
            border-radius: 4px;
            color: #444;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

#products-sidebar {
    margin: 30px 0;
    padding: 5px 0 5px 15px;
}

    #products-sidebar h4 {
        margin-top: 15px;
        margin-bottom: 5px;
        font-family: "franklin-gothic-urw-cond", "myriad-pro", "Segoe UI", sans-serif;
        font-size: 20px;
        text-transform: uppercase;
        color: #777;
    }

    #products-sidebar h4 a {
        color: #777;
    }

    #products-sidebar h4:first-child {
        margin-top: 0;
    }

    #products-sidebar ul {
        padding-left: 0;
        overflow-x: auto;
        overflow-y: auto;
        max-height: 200px;
    }

#products-sidebar li {
    list-style: none;
    margin: 5px 0;
}

#products-search-filters {
    padding: 5px 0;
    margin-left: 1px;
}

    #products-search-filters .col-sm-6:first-child {
        font-size: 14px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

.products {
    display: flex;
    flex-wrap: wrap;
}

#products-search .products {
    margin-bottom: 35px;
}

.product-card {
    display: flex;
    position: relative;
    flex-direction: column;
    padding: 2%;
    flex: 0 19.9%;
    background-color: #FFF;
    box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.4);
    transition: .3s;
}

    .product-card:hover {
        transform: scale(1.02) translateY(-1.2%);
        box-shadow: 0 5px 18px -5px rgba(0,0,0,0.4);
        z-index: 2;
    }

    .product-image img {
        width: 100%;
    }

    .product-card a {
        line-height: 1.1;
        display: block;
    }

    .product-card .product-brand {
        color: #777;
        text-transform: uppercase;
        font-size: 11px;
        margin-top: 3px;
    }

.product-card .tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #fcfcdb;
    color: #e73d4a;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 6px;
    border: 1px solid #e73d4a;
    border-bottom-left-radius: 3px;
}

.product-card .discount {
    position: absolute;
    top: 2px;
    right: 2px;
    background: url(img/ribbon-icon.png) center center no-repeat;
    background-size: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    padding: 4px;
    user-select: none;
}

    .product-card .product-price {
        font-size: 18px;
        font-weight: 600;
        color: #217543;
    }

        .product-card .product-price sup {
            color: #e73d4a;
            text-decoration: line-through;
        }

    #products-no-results {
        margin-left: 10px;
    }

#product-details {
    margin-top: 30px;
    border-bottom: 1px solid #cfd3d6;
    padding-bottom: 20px;
}

    #product-details .brand {
        text-transform: uppercase;
        font-size: 14px;
        margin: 0;
    }

    #product-details h2 {
        margin: 5px 0;
    }

    #product-details .model {
        margin: 0;
        font-size: 18px;
        text-transform: uppercase;
        color: #555;
        font-weight: 600;
    }

    #product-details .price {
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #cfd3d6;
        border-bottom: 1px solid #cfd3d6;
        margin-top: 11px;
        display: flex;
        align-items: center;
    }

        #product-details .price sup {
            margin-left: 5px;
            font-size: 1em;
            text-decoration: line-through;
            color: #e73d4a;
            cursor: help;
        }

        #product-details .price strong {
            color: #217543;
            margin-right: 0;
        }

        #product-details .price .small {
            margin-left: 10px;
        }

#product-details .price strong {
    font-size: 24px;
    margin-left: 10px;
}

#product-details .content {
    margin: 15px 0;
    min-height: 1px;
}

#product-details h4 {
    font-weight: 600;
}

#product-images ul {
    list-style: none;
    padding: 0;
}

    #product-images ul li {
        margin-bottom: 8px;
    }

        #product-images ul li img {
            width: 60px;
            border: 1px solid #cfd3d6;
            cursor: pointer;
            transition: .25s;
        }

        #product-images ul li img:hover {
            transform: scale(1.03) translateY(-2px);
            box-shadow: 0 3px 8px -2px rgba(0,0,0,0.5);
        }

        #product-images ul li img.active {
            border: 2px solid #dfc901;
            box-shadow: 0 0 3px #ffd901;
        }

        #product-images ul li img.active:hover {
            transform: none;
            cursor: default;
        }


#product-image-main {
    margin-left: 70px;
}

#product-image-main img {
    cursor: zoom-in;
}


#product-related h4 {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 16px;
}

#product-related .product-item {
    width: 200px;
    height: auto;
    min-height: 230px;
    padding-bottom: 15px;
}

    #product-related .product-item img {
        height: 150px;
    }

#product-related #products-search-result {
    margin-top: 6px;
}

#product-pagination span {
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
}

#product-pagination .current {
    cursor: not-allowed;
    background: #222;
    color: #fff;
}








/*#endregion */