/* elemenst gral */

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

@font-face {
    font-family: 'bold';
    src: url('../fonts/bold/roboto-bold-webfont.eot');
    src: url('../fonts/bold/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/bold/roboto-bold-webfont.woff2') format('woff2'),
        url('../fonts/bold/roboto-bold-webfont.woff') format('woff'),
        url('../fonts/bold/roboto-bold-webfont.ttf') format('truetype'),
        url('../fonts/bold/roboto-bold-webfont.svg#robotobold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'regular';
    src: url('../fonts/regular/roboto-regular-webfont.eot');
    src: url('../fonts/regular/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/regular/roboto-regular-webfont.woff2') format('woff2'),
        url('../fonts/regular/roboto-regular-webfont.woff') format('woff'),
        url('../fonts/regular/roboto-regular-webfont.ttf') format('truetype'),
        url('../fonts/regular/roboto-regular-webfont.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'light';
    src: url('../fonts/light/roboto-light-webfont.eot');
    src: url('../fonts/light/roboto-light-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/light/roboto-light-webfont.woff2') format('woff2'),
        url('../fonts/light/roboto-light-webfont.woff') format('woff'),
        url('../fonts/light/roboto-light-webfont.ttf') format('truetype'),
        url('../fonts/light/roboto-light-webfont.svg#robotolight') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'bebas';
    src: url('../fonts/bebas/bebasneue-webfont.eot');
    src: url('../fonts/bebas/bebasneue-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/bebas/bebasneue-webfont.woff2') format('woff2'),
        url('../fonts/bebas/bebasneue-webfont.woff') format('woff'),
        url('../fonts/bebas/bebasneue-webfont.ttf') format('truetype'),
        url('../fonts/bebas/bebasneue-webfont.svg#bebas_neueregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    font-family: 'regular';
    font-style: normal;
}

.fondoNegro {
    background-color: #000000;
    width: 100%;
}

section {
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding-bottom: 0px;
    }
}

.contenedor {
    position: relative;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

.contenedorGrande {
    position: relative;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {

    .contenedor,
    .contenedorGrande {
        width: 100%;
        padding: 0 20px;
        margin: 0;
    }
}

h1 {
    font-family: 'regular';
    font-size: 60px;
    color: #fff;
    text-align: center;
    margin: 0;
}

h2 {
    font-family: 'regular';
    font-weight: 900;
    font-size: 38px;
    color: #fff;
    margin: 0;
}

h3 {
    font-family: 'regular';
    font-weight: 100;
    font-size: 32px;
    color: #fff;
}

h4 {
    font-family: 'regular';
    font-weight: 900;
    font-size: 28px;
    color: #fff;
    line-height: 1.3;
}

h5 {
    font-family: 'regular';
    font-weight: 100;
    font-size: 25px;
}

a {
    font-family: 'regular';
}

b {
    font-family: 'bold';
    font-weight: 900;
}

span {
    color: #ED1C24;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 18px;
    }
}

p {
    font-family: 'regular';
    font-weight: 100;
    color: #fff;
    font-size: 19px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    p {
        font-size: 18px !important;
    }
}

a {
    color: #fff;
}

img {
    width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

span {
    font-family: 'regular';
    font-weight: bold;
}

p.capital-letter:first-letter {
    font-family: 'regular';
    font-weight: bold;
    float: left;
    font-size: 85px;
    line-height: 81px;
    margin-right: 5px;
    color: #f68e01;
}

mark {
    background-color: #f68e01;
    color: #fff;
}

.desk {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .mobile {
        display: block;
    }

    .desk {
        display: none !important;
    }
}

.flexBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


@media (max-width: 768px) {
    .flexBox {
        flex-flow: column;
        margin-left: 0px !important;
    }
}

.paddingLados {
    padding: 0 150px;
}

.paddingArribaAbajo {
    padding: 30px 0;
}

@media (max-width: 768px) {
    .paddingLados {
        padding: 0;
    }
}

.columnas {
    display: flex;
    justify-content: space-between;
}

.columna70 {
    width: calc(70% - 20px);
}

.columna66 {
    width: calc(66% - 20px);
}

.columna60 {
    width: calc(60% - 20px);
}

.columna50 {
    width: calc(50% - 20px);
}

.columna55 {
    width: calc(55% - 20px);
}

.columna40 {
    width: calc(40% - 20px);
}

.columna45 {
    width: calc(45% - 20px);
}

.columna35 {
    width: calc(35% - 20px);
}

.columna33 {
    width: calc(33% - 20px);
}

.columna30 {
    width: calc(30% - 20px);
}

.columna25 {
    width: calc(25% - 20px);
}

@media (max-width: 768px) {
    .columnas {
        flex-flow: column;
        z-index: 9999999;
    }

    .columna70,
    .columna60,
    .columna66,
    .columna50,
    .columna55,
    .columna40,
    .columna45,
    .columna35,
    .columna33,
    .columna30,
    .columna25 {
        width: 100%;
    }

    .marginBottomMobile {
        margin-bottom: 40px;
    }

    .marginMenos20Mobile {
        margin-top: -20px;
    }
}

.contenedorVideo {
    width: 100%;
    margin: 40px 0;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-top: 40px;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

video {
    width: 100%;
    height: auto;
}

.contieneCarrusel {
    position: relative;
}

.owl-theme .owl-nav {
    position: absolute;
    top: 32%;
    width: 100%;
}

.owl-prev {
    position: absolute;
    left: 100px;
}

.owl-next {
    position: absolute;
    right: 100px;
}

@media (max-width: 768px) {
    .owl-theme .owl-nav {
        top: 24%;
    }

    .owl-theme .owl-nav [class*='owl-'] {
        width: 35px;
    }

    .owl-prev {
        left: 20px;
    }
    
    .owl-next {
        right: 20px;
    }
}

.contMenuLogo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 160px;
    /* box-shadow: 0px 4px 15px #9C9C9D; */
}

.logo {
    width: 200px;
}

.contMenuRedes {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

.contenedorRedes {
    display: flex;
    align-items: end;
}

img.iconoMobil {
    width: 30px;
    margin-right: 10px;
}

h1.nroCel {
    font-family: 'bebas';
    color: #4C4C4C;
    font-size: 22px;
    margin: 0;
}

.contIconosRedes {
    display: flex;
}

img.iconoRedes {
    width: 30px;
    margin-left: 10px;
}

.menuTop>ul>li {
    float: left;
    list-style: none;
}

.menuTop>ul>li>a {
    list-style: none;
    float: left;
    color: #202020;
    font-family: light;
    text-decoration: none;
    font-size: 13.5px;
    padding-left: 7px;
    padding-right: 7px;
    padding-top: 8px;
    padding-bottom: 5px;
}

.menuTop>ul>li>a:hover {
    background: #ED1C24 !important;
    color: #fff !important;
}

.menuTop>ul>li:hover .container-sub {
    display: block;
}

.menuTop>ul>li:hover>a {
    background: #ED1C24 !important;
    color: #fff !important;
}

.active {
    background: #ED1C24 !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .contMenuLogo {
        flex-flow: column;
        margin: 30px 0;
    }

    .menuTop {
        display: none;
    }
}

.title {
    font-size: 35px;
    font-family: 'bebas';
    color: #fff;
    text-align: center;
    padding-top: 60px;
}

.title-carousel {
    font-size: 16px;
    font-family: 'regular';
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 20px;
    text-shadow: 0px 0px 10px #000;
    min-height: 60px;
}

#usos {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;

    background-image: url(../img/carousel.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 50px 0 100px;
}

#usos .columna25 {
    width: calc(25% - 30px);
}

#usos .columna25 img{
    border: 1px solid #fff;
}

.carruselUsos {
    margin-top: 50px;
}

@media (max-width: 768px) {
    #usos {
        padding: 0 0 50px;
    }

    #usos .columna25 {
        width: 100%;
    }

    .title-carousel {
        min-height: auto;
        margin-bottom: 20px;
    }

    #usos .columna25 img{
        margin-bottom: 30px;
    }
}

#nosotros {
    padding: 50px 0;
}

#nosotros h4 {
    margin: 0;
}

.title-somos {
    font-size: 35px;
    font-family: 'bebas';
    color: #ED1C24;
}

.txt {
    font-family: 'light';
    text-decoration: none;
    font-size: 12px;
    line-height: 14px;
    text-align: left;
    padding-top: 15px;
    color: #000;
}

.view {
    color: #EE1E26;
    font-family: bold;
    font-size: 14px;
    padding-top: 5px;
    float: left;
}

@media (max-width: 768px) {
    .txt {
        line-height: 22px;
    }
}

#contacto {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;

    background-image: url(../img/contacto.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 50px 0 100px;
}

.center-contact {
    margin-top: 40px;
    font-family: 'light';
    font-size: 15px;
    color: #fff;
    text-align: center;
}

.center-contact strong {
    font-family: 'bold';
    padding-right: 4px;
}

.center-contact ul {
    margin-bottom: 60px;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 0;
}

.center-contact li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.center-contact li img {
    margin-right: 5px;
    margin-top: 0px;
    width: 20px;
}

.view-mapa {
    font-family: bold !important;
    font-size: 13px !important;
    color: #000;
    text-decoration: none;
    padding-left: 50px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 4px;
    margin-top: 15px;
    background: url("images/mapa.png") #fff no-repeat 20px 8px;
}

@media (max-width: 768px) {}

#footer {
    width: 100%;
    padding: 40px 0;
}

ul.ul-footer {
    display: flex;
    justify-content: space-between;
}

.ul-footer>li {
    list-style: none;
}

.colFooter-1 {
    width: calc(25% - 30px);
}

.colFooter-2 {
    width: calc(27% - 30px);
}

.colFooter-3 {
    width: calc(23% - 30px);
}

.nav-footer {
    margin-top: 15px;
    padding: 0;
}

.nav-footer>li {
    list-style: none;
}

.nav-footer>li>a {
    color: #202020;
    font-family: 'light';
    text-decoration: none;
    font-size: 14px;
    display: block;
}

.nav-footer>li>a:hover {
    color: #ED1C24;
    font-weight: bold;
}

.title-footer {
    font-size: 35px;
    font-family: 'bebas';
    color: #000000;
    padding-top: 65px;
}

#redes-footer {
    margin-top: 65px;
    display: flex;
    justify-content: flex-end;
}

#redes-footer img {
    width: 45px;
    height: auto;
    padding-left: 10px;
}

.li-social {
    padding-right: 0px !important;
    float: right !important;
    text-align: right;
    width: 25% !important;
}

.tel-footer,
.tel-footer a {
    height: 40px;
    background: url("../img/fono.png") no-repeat center left;
    background-size: 22px;
    font-family: bebas;
    color: #4C4C4C;
    font-size: 22px;
    line-height: 55px;
    padding-left: 30px;
    margin-top: 5px;
}

.address {
    color: #202020;
    font-family: 'light';
    font-size: 14px;
    display: block;
    background: url("../img/addres.png");
    background-repeat: no-repeat;
    background-position: right top;
    padding-right: 22px;
    margin-top: 8px;
}

.email {
    color: #202020;
    font-family: 'light';
    font-size: 14px;
    display: block;
    background: url("../img/email.png");
    background-repeat: no-repeat;
    background-position: right top;
    padding-right: 22px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    ul.ul-footer {
        flex-flow: column;
    }

    .center-contact li {
        display: block;
        text-align: left;
    }

    .center-contact li img {
        float: left;
    }

    .colFooter-1,
    .colFooter-2,
    .colFooter-3 {
        width: 100%;
    }

    .logo-footer {
        width: 200px;
        margin: 0 0 30px 0;
    }

    #redes-footer {
        justify-content: flex-start;
    }

    .li-social {
        width: 100% !important;
        text-align: left;
    }

    .address,
    .email {
        background-position: left top;
        padding-left: 22px;
    }
}

#copyright-foot {
    width: 100%;
    text-align: center;
    font-family: 'light';
    font-size: 15px;
    color: #fff;
    padding-top: 35px;
    padding-bottom: 35px;
    background-color: #ED1C24;
}