/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* Verde Verouomo: #217E3D */

/*--------------- FUENTES -----------------------------------------------------------*/

@font-face {
    font-family: "Bebas Neue Bold";
    src: url("../fonts/BebasNeueBold.woff2") format("woff2"),
        url("../fonts/BebasNeueBold.woff") format("woff"),
        url("../fonts/BebasNeueBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bebas Neue Book";
    src: url("../fonts/BebasNeueBook.woff2") format("woff2"),
        url("../fonts/BebasNeueBook.woff") format("woff"),
        url("../fonts/BebasNeueBook.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bebas Neue Regular";
    src: url("../fonts/BebasNeueRegular.woff2") format("woff2"),
        url("../fonts/BebasNeueRegular.woff") format("woff"),
        url("../fonts/BebasNeueRegular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat Bold';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat Regular';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*---------------FIN FUENTES -----------------------------------------------------------*/

/*--------------- GENERALES -----------------------------------------------------------*/

body {
    background-color: black;
    color: white;
    font-family: "Bebas Neue Book";
    font-size: 26px;
}

h1,
strong {
    font-family: "Bebas Neue Bold";
}

h1 {
    font-size: 3em;
}

article p {
    font-size: 1em;
    line-height: 1.2em;
}

hr {
    border-top: 2px solid #fff;
    width: 100%;
}

.img-home {
    width: 100%;
    height: 100%;
}

footer {
    background-color: #242422;
    color: white;
    margin-top: 3em;
    padding: 2em 0;
}

.ios{
    font-family: "Montserrat Regular";
}

footer .cta {
    font-size: 1em;
}

footer hr,
.hr-gris {
    border-top: 2px solid #4a4a4a;
    width: 100%;
}

/*---------------FIN GENERALES -----------------------------------------------------------*/

/*--------------- ESPECÍFICAS -----------------------------------------------------------*/

.object-fit_cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.rojo {
    border: 1px solid red;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.texto_verde {
    color: #217e3d;
}

.icono,
.icono-fijo {
    display: inline-block;
    width: 42px;
    height: 42px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 50%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.icono:hover {
    border: 1px solid white;
}

.facebook {
    background-image: url(../img/iconos/facebook.svg);
}

.ubicacion {
    background-image: url(../img/iconos/ubicacion.svg);
}

.instagram {
    background-image: url(../img/iconos/instagram.svg);
}

.whatsapp {
    background-image: url(../img/iconos/whatsapp.svg);
}

.telefono {
    background-image: url(../img/iconos/phone.svg);
}

.mail {
    background-image: url(../img/iconos/mail.svg);
}

.iconos-sociales {
    margin: .3em 0 1em 0;
    padding: 0;
    height: 42px;
}

.creditos {
    color: #8a8a8a;
    font-size: .8em;
}

.container_nav {
    position: absolute;
    top: 0;
    z-index: 16;
    height: 109px;
    background: rgb(0, 0, 0);
    background: -o-linear-gradient(top,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0) 100%);
    background: -webkit-gradient(linear,
            left top, left bottom,
            color-stop(50%, rgba(0, 0, 0, 1)),
            to(rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

#nav_desktop {
    padding: 30px 0px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.nav_mobile {
    height: calc(100vh - 0px);
    position: absolute;
    z-index: 0;
    top: 0px;
    width: 100%;
    background-color: black;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

#nav_mobile .container {
    padding: 0;
}



.link_nav_mobile,
.link_nav {
    font-family: "Bebas Neue Book";
    color: white;
    font-size: 1.3em;
    text-decoration: none;
    margin: 0 15px;
    padding: 0px 0px;
    cursor: pointer;
    background-image: linear-gradient(#ffffff 0 0);
    background-position: center 1.3em;
    /*Adjust the background-position to move the line*/
    background-size: 2px 2px;
    /*Adjust the background size to control length and height*/
    background-repeat: no-repeat;
    transition: all 0.3s;
}


.link_nav_mobile:hover,
.link_nav:hover {
    color: white;
    text-decoration: none;
    background-size: 100% 2px;
    /*Adjust the background size to control length and height*/
}

.hr-nav-mobile {
    width: 280px;
    border-top: 2px solid #4a4a4a;
    margin-top: 110px;
}

.wp-fixed {
    position: fixed;
    z-index: 2;
    width: 84px;
    height: 84px;
    bottom: 1em;
    right: 1em;
    background-image: url(../img/iconos/whatsapp-icono-fixed.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 48px 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.wp-fixed:hover {
    background-size: 62px 62px;
    bottom: 1.5em;
    right: 1.5em;
}

.wp-fixed:hover img {
    width: 104px;
    height: 104px;
}

.wp-fixed img {
    margin: 0;
    padding: 0;
    display: block;
    width: 80px;
    height: 80px;
    -webkit-animation: gira 12s linear infinite;
    animation: gira 12s linear infinite;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@-webkit-keyframes gira {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes gira {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.link-footer {
    display: inline-block;
    color: #2eb356;
    font-family: "Bebas Neue Book";
    text-decoration: none;
    cursor: pointer;
    background-image: linear-gradient(#2eb356 0 0);
    background-position: left 1.3em;
    /*Adjust the background-position to move the line*/
    background-size: 15px 2px;
    /*Adjust the background size to control length and height*/
    background-repeat: no-repeat;
    padding-bottom: 4px;
    /* this can also control the position */
    transition: all 0.3s;
}

.link-footer:hover,
.link-footer:active {
    color: #2eb356;
    text-decoration: none;
    background-size: 100% 2px;
    /*Adjust the background size to control length and height*/
}

.logo_home {
    width: 170px;
    padding: 0;
    margin: 0;
}

.full_viewport {
    height: 100vh;
    min-height: 50vw;
    position: relative;
}

.reset {
    padding: 0;
    margin: 0;
}

.ghost-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.col-hero:nth-child(1) {
    position: relative;
    overflow: hidden;
}

#myVideo {
    position: absolute;
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
    min-width: 100%;
    min-height: 100%;
}

#titulo_hero {
    font-family: "Bebas Neue Book", sans-serif;
    text-transform: uppercase;
    -webkit-animation: titulo 2s ease;
    animation: titulo 2s ease;
}

#titulo_hero stong {
    font-family: "Bebas Neue Bold", sans-serif;
}

@-webkit-keyframes titulo {

    0% {
        -webkit-transform: translateX(70px);
        transform: translateX(70px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes titulo {

    0% {
        -webkit-transform: translateX(70px);
        transform: translateX(70px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
        opacity: 1;
    }
}

#cta_hero,
.cta {
    display: inline-block;
    font-family: "Bebas Neue Bold";
    font-size: 1.5em;
    line-height: 1.5em;
    color: white;
    background-color: #217e3d;
    padding: 0.1em 1.1em;
    letter-spacing: 0.1em;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


#cta_hero:hover,
.cta:hover {
    color: black;
    text-decoration: none;
    background-color: #fff;
    border: 2px solid white;
}

.cta-inverso:hover {
    border: 2px solid black;
}

.close {
    font-size: 1.6em;
}

.modal-title {
    font-family: "Bebas Neue Bold"
}

.modal-footer p {
    font-family: "Bebas Neue Regular";
}

.boton-modal-verde {
    display: inline-block;
    font-family: "Bebas Neue Bold";
    font-size: 0.9em;
    color: white;
    background-color: #217e3d;
    padding: 0.1em 1.1em;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.boton-modal-verde:hover {
    color: black;
    background-color: white;
    border: 2px solid black;
    text-decoration: none;
}

.boton-modal-gris {
    display: inline-block;
    font-family: "Bebas Neue Bold";
    font-size: 0.9em;
    color: white;
    background-color: #ababab;
    padding: 0.1em 1.1em;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.boton-modal-gris:hover {
    color: white;
    background-color: #878787;
    border: 2px solid #969696;
    text-decoration: none;
}

.loop-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.loop-holder__text {
    -webkit-animation: textLoop 10s linear infinite;
    animation: textLoop 10s linear infinite;
    font-size: 1em;
    padding-right: .35em;
}

.loop-holder:hover .loop-holder__text {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}



@-webkit-keyframes textLoop {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}



@keyframes textLoop {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.col-hero {
    z-index: 0;
}

.hero {
    width: 100%;
    height: 30%;
}

.hero h1 {
    font-size: 3.8em;
}

.p-home {
    font-family: "Montserrat Bold";
}

.copete {
    font-family: "Montserrat Regular";
    max-width: 680px;
}

.copete h2 {
    font-size: .8em;
    //margin: 80px 0 0 0;
}

.copete strong {
    font-family: "Montserrat Bold";
}

.linea-copete {
    //margin: 80px 0 80px 0;
    padding: 0;
    width: 260px;
    height: 30px;
}

.color-inverso {
    color: black;
    background-color: white;
}

.margin-app {
    margin: -15px -15px 0 -15px;
    padding: 2em 0;
}

.search-term {
    width: 230px !important;
}

#bewe-treatments .title {
    padding: 15px 0 !important;
}

.articulo-seccion {
    margin-bottom: 3em;
}

.articulo-seccion h3,
h3 {
    font-family: "Bebas Neue Bold";
    font-size: 2em;
}

.articulo-seccion p {
    font-family: "Montserrat Regular";
    font-size: 0.8em;
}

.articulo-seccion p strong {
    font-family: "Montserrat Bold";
}

.articulo-seccion img {
    width: 100%;
    height: 100%;
}

.linea-right,
.linea-left {
    width: 170px;
    height: 2px;
    background-color: white;
    top: 50%;
    z-index: 1;
}

.linea-inversa {
    background-color: black;
}

.linea-right {
    left: 47%;
}

.linea-left {
    right: 47%;
}

#carousel_barberos .carousel-item,
#carousel_servicios .carousel-item {
    width: 100%;
}

#carousel_barberos .carousel-item img {
    height: 500px;
    -o-object-fit: contain;
    object-fit: contain;
}

#carousel_barberos .carousel-item h5 {
    font-family: "Bebas Neue Bold";
    font-size: 1em;
    letter-spacing: 0.05em;
}

#carousel_servicios .carousel-item img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.list-group-item {
    background-color: black;
    border: 1px solid #4a4a4a;
    font-family: "Bebas Neue Regular";
}

footer .list-group-item {
    background-color: #242422;
    border: 1px solid #4a4a4a;
    font-family: "Bebas Neue Regular";
    font-size: .7em;
    padding: 6px 10px;
}

footer .list-group-item strong {
    font-family: "Bebas Neue Bold";
}


.descripcion-servicio {
    font-family: "Bebas Neue Regular";
    color: #888888;
}

.tarjeta {
    display: inline-block;
    width: 60px;
    margin-right: .8em;
}

.hamburger {
    padding-left: 0;
    padding-right: 0;
}

/*------------- TAMAÑO GRANDE ------------*/
@media only screen and (min-width: 992px) {

    .hamburger {
        display: none;
    }

    .col-hero {
        width: 49.1vw;
        height: 100vh;
    }

    .logo_home {
        margin: 0 20px;
        padding: 8px 0 0;
    }

    #titulo_hero {
        font-size: 4.3em;
        line-height: 0.9em;
        text-align: right;
    }

    .pocitos {
        margin-left: 42px;
    }
}

.col-hero:nth-child(2) {}


/*------------- TAMAÑO MEDIANO ------------*/
@media only screen and (max-width: 991.98px) {

    article p {
        font-size: 1.1em;
    }

    .hamburger {
        display: none;
    }

    .logo_home {
        width: 130px;
        margin: -6px 20px 0;
    }

    .link_nav {
        font-size: 0.8em;
    }

    .col-hero {
        width: 100vw;
        height: 50vh;
    }

    .ghost-center {
        height: 100%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    #titulo_hero {
        font-size: 3em;
        line-height: 0.9em;
        text-align: center;
        width: 80%;
    }

    #titulo_hero br {
        display: none;
    }


    #cta_hero,
    .cta {
        font-size: 1.1em;
    }

    .modal-title,
    .modal-footer p,
    .modal-footer a {
        font-size: .8em;
    }

    .pocitos {
        margin-left: 42px;
    }

    #nav_desktop {
        padding: 30px 0px;
    }

    .hero h1 {
        font-size: 2.8em;
    }
}



/*------------- TAMAÑO CHICO ------------*/
@media only screen and (max-width: 767.98px) {

    article h1 {
        font-size: 2em;
    }

    article p {
        font-size: 1em;
    }

    .hamburger {
        display: block;
    }

    .link_nav {
        display: none;
    }

    .logo_home {
        width: 130px;
        margin: 0;
    }

    .cta,
    #cta_hero {
        font-size: 1.2em;
    }

    #nav_desktop {
        padding: 20px 15px;
    }

    .hero h1 {
        font-size: 2.4em;
    }
    
    .container_nav{
        height: 81px;
    }
}



/*---------------FIN ESPECÍFICAS -----------------------------------------------------------*/
