/*----------- CSS 2024 -----------*/
/*-----------start KEYFRAMES-----------*/

/*start RESET*/
@-webkit-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@-moz-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@-o-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
/*end RESET*/

/*start STICK*/
@-webkit-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@-moz-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@-o-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
/*end STICK*/

/*start FADE IN*/
@-webkit-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@-moz-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@-o-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
/*end FADE IN*/
/*-----------end KEYFRAMES-----------*/

/*-----------start GLOBALS-----------*/
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    font-smooth: antialiased !important;
    -webkit-text-size-adjust: none;
    font-smooth: always !important;
    -webkit-font-smooth: always !important;
    -moz-font-smooth: always !important;
    text-rendering: optimizeLegibility !important;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

body{
    font-size: 14px;
    -webkit-animation: reset, fade-in 2s 1 ease;
    -moz-animation: reset, fade-in 2s 1 ease;
    background:#ffffff;
    color:#444;
    outline: none;
    height: 100%;
    -webkit-animation: reset, fade-in 2s 1 ease;
    -moz-animation: reset, fade-in 2s 1 ease;
    animation: reset, fade-in 2s 1 ease;
    -o-animation: reset, fade-in 2s 1 ease;
    font-family: 'Rubik', sans-serif;
    font-weight: 300!important;
    line-height: 25px;
    /*padding-top: 15px;*/
    font-style: normal!important;
    /*letter-spacing: 2px;    */
}


*{
    outline: none
}

a{
    color:#706f6f;
    text-decoration: none;
    transition:All 0.5s ease;
    -webkit-transition:All 0.5s ease;
    -moz-transition:All 0.5s ease;
    -o-transition:All 0.5s ease;
}

a:hover,a:active, a.active, a:focus{
    color: #13142c;
    text-decoration: none;
}

strong{
    font-weight: 700;
}

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

input,
textarea{
    border: 1px solid transparent!important;    
}
input:focus,
textarea:focus{
    border: 1px solid #13142c!important;
}
/*start BXSLIDER*/
.bx-wrapper{
    margin: 0 auto;
}
    .bx-wrapper .bx-viewport{
        border: none;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        padding: 0;
        left:0;
        background-color: transparent;
    }

    .bx-wrapper .bx-pager.bx-default-pager a{
        width: 10px;
        height: 10px;
        background: #c7e0ea;
        border-radius: 100%;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
    }
    .bx-wrapper .bx-pager.bx-default-pager a:hover,
    .bx-wrapper .bx-pager.bx-default-pager a.active{
        background: #2ac9fe;
    }

    .bx-wrapper .bx-pager{
        bottom: -30px;
    }
/*end BXSLIDER*/
/*start FLEX*/
.flex{
   display: -webkit-box;
   display: -moz-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
   flex-direction: row;
   -webkit-flex-direction: row;
   -moz-flex-direction: row;
   flex-wrap: wrap;
   -webkit-flex-wrap: wrap;
   -moz-flex-wrap: wrap;
   justify-content: space-between;
   -webkit-justify-content: space-between;
   -moz-justify-content: space-between;
   align-items: center;
   -moz-align-items: center;
   -webkit-align-items: center;
}
/*end FLEX*/
/*-----------end GLOBALS-----------*/

/*-----------start LAYOUT-----------*/
/*start HEADER*/
.navbar-toggle .icon-bar{
    background-color: #fff;
}
header{
    background: transparent;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding: 50px 0;
    z-index: 9999!important;
}

    .brand-img img{
        width: 120px;
    }
        #navbar{
            margin-bottom: 0px;
            padding-right: 0px;
            border: none;
        }
            #navbar ul li a{
                background: transparent;
                color: #fff;
                text-transform:uppercase;
                font-weight: 500;
                padding: 5px 10px;
                margin-left: 15px;
                border-radius: 5px;
                transition:All 0.5s ease;
                -webkit-transition:All 0.5s ease;
                -moz-transition:All 0.5s ease;
                -o-transition:All 0.5s ease;
                text-shadow: none;
                font-size:15px;
            }
                #navbar ul li a:hover,
                #navbar ul li a:active,
                #navbar ul li a.active{
                    color: #045398;
                }
    header.stickEmUp{
        background: rgba(255,255,255,0.85);
        padding:20px 0;
        border-bottom:1px solid #13142c;
    }
        header.stickEmUp .brand-img img{
            width: 120px;
        }

/*end HEADER*/
/*start FOOTER*/
footer{
    color: #fff;
    background-color: #15152B;
}
    footer .contacto .row .flex{
        justify-content: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
    }
    .data-contact{
        color: #fff;
        padding: 15px 0px;
    }
        .data-contact p{
            display: inline-block;
            float: left;
            text-align: left;
            margin: 0px;
            margin-right: 40px;
        }
            .data-contact i{
                color: #15152B;
                margin-right: 10px;
            }
/*end FOOTER*/
/*-----------end LAYOUT-----------*/
/*start HOME*/
    .slide-home .bxslider li{
        background-position: bottom center;
        background-size: 100%;
        background-repeat: no-repeat;
        padding: 50px 0 0;
        height: 600px;
        text-align: center;
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
    }
        .slide-home .bxslider li .flex{
            justify-content: center;
            -webkit-justify-content:center;
            -moz-justify-content:center;
            flex-direction: column;
            -webkit-flex-direction: column;
            -moz-flex-direction: column;
            height: 100%;
        }
        .slide-home .bxslider li h2{
          font-weight: 500;
          font-size: 4em;
          color: #fff;
          margin: 0;
        }
        .slide-home .bxslider li h3{
          font-weight: 500;
          color: #fff;
          margin: 0 0 30px;
        }
/*end slide*/
section{
    padding: 120px 0px;
}
    section#home{
        padding:0;
    }
hr{
    width: 15%;
    margin: auto;
    margin-left: 0;
    margin-bottom: 50px;
    border-top: 3px solid #13142c;
}
.banner{
    background: #13142c;
    height: 140px;
    background-repeat: no-repeat;
}
    .banner .container{
        height: 100%;
    }
        .banner .flex{
            height: 100%;
            justify-content: center;
            -moz-justify-content:center;
            -webkit-justify-content:center;
        }
    .banner h1{
        color: #fff;
        font-weight: 700;
        font-size: 3em;
    }

h3{
    font-size: 2.3em;
    color:#13142c;
    font-weight: 600;
    margin:0;
    margin-bottom: 30px;
}
h4{
    color:#13142c;
    font-size: 1.6em;
    margin-bottom: 30px;
}
.img img{
    width: 100%;
}
#nosotros{
    background:rgba(0,0,0,0.02);
}
.title .flex{
    justify-content: center;
    -webkit-justify-content:center;
    -moz-justify-content:center;
    flex-direction: column;
    -webkit-flex-direction:column;
    -moz-flex-direction:column;
}
.icon-box{
    height: 120px;
    width: 120px;
    margin:auto;
    background:#13142c;
    color:#fff;
    text-align: center;
    line-height: 110px;
    border-radius: 100%;
    margin-bottom: 20px;
}
    span.icon{
        margin:0;
        font-size: 5em;
    }
.products{
    margin-top: 30px;
}
    .product-box{
        margin-bottom: 50px;
    }
        .product-box h3{
            font-size: 1.6em;
            color:#13142c;
            margin:15px 0;
        }
        .product-box hr{
            width: 15%;
            border-color: #ccc;
            margin-bottom: 10px;
            border-width: 1px;
        }
.bottom .flex{
    justify-content: center;
    -webkit-justify-content:center;
    -moz-justify-content:center;
}
.bottom a{
    color:#13142c;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
    .bottom a:hover,
    .bottom a:focus{
        color:#f17731;
    }
#contacto h3{
    font-weight: bold;
    font-size: 2.5em;
}
#logistica{
    background:#13142c;
}
    #logistica .icon-box{
        background: #13142c;
    }
    .places{
        margin-top: 40px;  
    }
        #logistica h4{
            color:#13142c;
            margin-bottom: 10px;
        }
        #logistica hr{
            width: 100%;
            margin-top: 10px;
        }
        #logistica ul li .icon{
            font-size: 1.2em;
            color:#13142c;
        }
        #logistica ul{
            column-count: 2;
        }
        #logistica li{
            color:#fff;
        }
        #logistica .btn:hover{
            background:#f17731;
        }
#gmap{
    width: 100%;
    height: 500px;
}
.background{
    background: url(../../img/upload/banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding:80px 0;
    text-align: center;
}
    .background .flex{
        justify-content: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
    }
        .background h1{
            color:#13142c;
            font-weight: 700;
            font-size: 2.8em;
        }
#contacto{
    padding-top: 0;
}
    #contacto .flex{
        justify-content: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
    }
#formulario{
    padding-top: 60px;
}
.data ul li{
    margin-bottom: 10px;
}
.data i{
    color:#13142c;
    margin-right: 10px;
    font-size: 1.2em;
}

#contacto #form-contact input, #contacto #form-contact textarea{    
    display: block;
    width: 100%;
    padding: 15px 15px;
    margin-bottom: 15px;
    font-size: 0.9em;
    font-style: italic;
    border: 1px solid #13142c!important;
    background-color: #fff;
}
#contacto #form-contact textarea{
    height: 150px;
}
#contacto #form-contact .flex{
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}
    #contacto #form-contact button{
        color: #fff;
        font-weight: bold;
        background-color: #13142c;
        text-align: center;
        padding: 10px 30px;
        font-size: 0.8em;
        border:none;
        box-shadow: none;
        letter-spacing: 1px;
        transition:All 0.5s ease;
        -webkit-transition:All 0.5s ease;
        -moz-transition:All 0.5s ease;
        -o-transition:All 0.5s ease;
    }
        #contacto #form-contact button:hover{
            opacity: 0.8;
        }
/*end HOME*/
/* PRUEBAAA */
footer{
    color: #fff;
    position: relative;
    z-index: 0;
    /*margin-top: 40px;*/
    background-color: #15152B;
    padding: 10px 0 15px;
    padding-top: 70px;
}
    footer .editor a{
        float: left;
    }
    footer .editor p{
        font-size: 0.9em;
        float: left;
        margin-top: 10px;
        margin-left: 20px;
        margin-bottom: 0;
    }
footer a{
    color: #fff;
}
    footer a:hover{
        color: #13142c;
    }
footer p{
    margin:0;
}
.developer{
    font-size: 0.9em;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}