﻿

/**************************************************************************************/
/*******VARIABLES GENERALES ***************************/
/**************************************************************************************/

:root {
    /*rojo/anaranjado*/
    --main-color: #d23321;
    /*rosa */
    --secondary-color: #ffe2dd;
    /*rosa claro */
    --tertiary-color: #fbf3f1;
    /*rosa claro transp*/
    --tertiary-color-transp: #fbf3f122;
    /*naranja*/
    --quaternary-color: #ff9f5cff;
    /*white*/
    --white: #f7f7f7;
    --black: #333333;
    --white-transp: #ffffff66;
    --whiteBgMockup: #f7f7f7;
}

.mainColorBg {
    background-color: var(--main-color);
}

.secondaryColorBg {
    background-color: var(--secondary-color);
}

.tertiaryColorBg {
    background-color: var(--tertiary-color);
}

.whiteColorBg {
    background-color: var(--white);
}

.whiteBgMockup {
    background-color: var(--whiteBgMockup);
}

.mainColor {
    color: var(--main-color);
}

.whiteColor {
    color: var(--white);
}

.blackColor {
    color: var(--black);
}




/*subrayado al seleccionar textos*/

::-moz-selection { /* Code for Firefox */
    color: var(--white);
    background: var(--main-color);
}

::selection {
    color: var(--white);
    background: var(--main-color);
}

/*tipografía parrafos*/



/*tipografía titulos*/

@font-face {
    font-family: 'BebasNeue';
    src: url('../fonts/Bebas_Neue/BebasNeue-Regular.eot');
    src: url('../fonts/Bebas_Neue/BebasNeue-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Bebas_Neue/BebasNeue-Regular.woff2') format('woff2'), url('../fonts/Bebas_Neue/BebasNeue-Regular.woff') format('woff'), url('../fonts/Bebas_Neue/BebasNeue-Regular.ttf') format('truetype'), url('../fonts/Bebas_Neue/BebasNeue-Regular.svg#BebasNeue-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*tipografía logo jookies*/

@font-face {
    font-family: 'FunkyVibes-aYYMx';
    src: url('../fonts/FunkyVibes-aYYMx.eot');
    src: url('../fonts/FunkyVibes-aYYMx.eot?#iefix') format('embedded-opentype'), url('../fonts/FunkyVibes-aYYMx.woff2') format('woff2'), url('../fonts/FunkyVibes-aYYMx.woff') format('woff'), url('../fonts/FunkyVibes-aYYMx.ttf') format('truetype'), url('../fonts/Bebas_Neue/BebasNeue-Regular.svg#BebasNeue-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}


/**************************************************************************************/
/*******PANEL LOADING***************************/
/**************************************************************************************/

#divLoading {
    height: 100%;
    width: 100%;
    color: #ADAFB6;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}


.loader {
    width: 80px;
    height: 75px;
    --c: no-repeat radial-gradient(farthest-side, var(--main-color) 85%,var(--main-color),#0000);
    --b: no-repeat radial-gradient(farthest-side, var(--secondary-color) 94%,#0000);
    --s: 8px 8px,8px 8px,8px 8px,40px 40px;
    --e: 0 0, 0 0,0 0, 0 0;
    background: var(--b) 55% 47%, var(--b) 60% 66%, var(--b) 37% 43%, var(--c) 50% 50%, var(--b) 15px 4px, var(--b) 4px 14px, var(--b) 27px 18px, var(--c) 0 0, var(--b) calc(100% - 15px) 4px, var(--b) calc(100% - 4px) 14px, var(--b) calc(100% - 27px) 18px, var(--c) 100% 0/40px 40px, var(--b) 24px 47px, var(--b) 50% 43px, var(--b) 60% 58px, var(--c) 50% 100%;
    animation: l5 5s infinite;
    transform: scale(1.6)
}

@keyframes l5 {
    0%,20% {
        background-size: var(--s),var(--s),var(--s),var(--s)
    }

    20.01%,40% {
        background-size: var(--e),var(--s),var(--s),var(--s)
    }

    40.01%,60% {
        background-size: var(--e),var(--e),var(--s),var(--s)
    }

    60.01%,80% {
        background-size: var(--e),var(--e),var(--e),var(--s)
    }

    80.01%,100% {
        background-size: var(--e),var(--e),var(--e),var(--e)
    }
}
/**************************************************************************************/
/*******ROWS, COLUMNAS , GAPS (SEPARACION ENTRE COLUMNAS)...***************************/
/**************************************************************************************/

.gap10 {
    grid-gap: 10px;
}

.gap20 {
    grid-gap: 20px;
}

.gap30 {
    grid-gap: 30px;
}

.gap40gap20Mobile {
    grid-gap: 40px;
}

@media(max-width:600px) {

    .gap40gap20Mobile {
        grid-gap: 20px;
    }
}

.gap40 {
    grid-gap: 40px;
}

.gap50 {
    grid-gap: 50px;
}

.gap80 {
    grid-gap: 80px;
}

.gap3vw {
    grid-gap: 3vw;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.rowReversePortrait {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}


@media(orientation:portrait) {
    .rowReversePortrait {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        flex-flow: row-reverse;
    }
}







.row-space-between {
    display: flex;
    justify-content: space-between;
}

.row-space-evenly {
    justify-content: space-evenly;
}

.rowcenterHorizontal {
    justify-content: center;
}

.rowFlexEnd {
    justify-content: flex-end;
}

.rowcenterVertical {
    align-items: center;
}

.nowrap {
    flex-wrap: nowrap;
}

.rownowrapPc {
    flex-wrap: wrap;
}

.columnflex1 {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100%;
    width: 100%;
}

.colCenterVertical {
    justify-content: center;
}

.colSpaceBetweenVertical {
    justify-content: space-between;
}

.colBottomVertical {
    justify-content: flex-end;
}

.colRightHorizontal {
    align-items: flex-end;
}

.colLeftHorizontal {
    align-items: flex-start;
}

.colCenterHorizontal {
    align-items: center;
}

.flex1 {
    display: flex;
    flex-direction: column;
    flex: 1 !important;
}

.colFlex1 {
    display: flex;
    flex-direction: column;
    flex: 1 !important;
}

.rowFlex1 {
    display: flex;
    flex-direction: row;
    flex: 1 !important;
}

.rowFlex1 {
    display: flex;
    flex-direction: row;
    flex: 1;
}

.col-md {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.col-md-7 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.col-md-8 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.col-md-10 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.col-md-11 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}


@media screen and (min-width: 767px) {
    .col-md {
        flex: 1
    }

    .col-md-7 {
        flex: 1.3
    }

    .col-md-8 {
        flex: 2
    }

    .col-md-10 {
        flex: 3;
    }

    .col-md-11 {
        flex: 6;
    }
}

.col-lg {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.col-lg-8 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.colMas1200RowRest {
    display: flex;
    flex-direction: column;
}

@media(max-width:1199px) {
    .colMas1200RowRest {
        display: flex;
        flex-direction: row;
    }
}

@media screen and (min-width: 1200px) {
    .col-lg {
        flex: 1
    }

    .col-lg-8 {
        flex: 2
    }
}

.col {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1
}

.col-7 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1.5
}

.col-8 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 2
}

.col-10 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 3;
}

.col-11 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 3;
}


/**************************************************************************************/
/*******IMÁGENES**********************************************/
/**************************************************************************************/

.rwd {
    max-width: 100%;
}

.w100pc {
    width: 100%;
}

.rwd60 {
    max-width: 60%;
}

.rwd100pc90Mobile {
    max-width: 100%;
}

.h80 {
    height: 80%;
}

@media(max-width:768px) {
    .rwd100pc90Mobile {
        max-width: 90%;
    }
}
/**************************************************************************************/
/*******MARGENES, PADDINGS**********************************************/
/**************************************************************************************/

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mt80 {
    margin-top: 80px;
}

.mt90 {
    margin-top: 90px;
}

.mt100 {
    margin-top: 100px;
}

.mt160 {
    margin-top: 160px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.pb100 {
    padding-bottom: 100px;
}

.pb150 {
    padding-bottom: 150px;
}

.pb200 {
    padding-bottom: 200px;
}

.pb8vw {
    padding-bottom: 8vw;
}

.mt20Portrait {
    margin-top: 20px;
}

.p20 {
    padding: 20px;
    box-sizing: border-box;
}

@media(min-width:768px) {
    .mt20Portrait {
        margin-top: 0;
    }
}


/**************************************************************************************/
/*******CUSTOM SCROLL BAR SOLO PARA DISPOSITIVOS NO TOUCH (PC)**********************************************/
/**************************************************************************************/

@media (hover: hover) {
    body::-webkit-scrollbar {
        width: 14px;
    }

    body::-webkit-scrollbar-track {
        background: var(--white);
    }

    body::-webkit-scrollbar-thumb {
        background: var(--quaternary-color);
        border-radius: 5px;
        cursor: pointer;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--main-color);
    }
}



/**************************************************************************************/
/************************************LAYOUT MASTER**********************************************/
/**************************************************************************************/
/*evitar se subrayen imagen en mobile al hacer click*/

* {
    -webkit-tap-highlight-color: transparent;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html, body {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

html {
    /*smoothscroll en las anclas por css  sin hacerlo por js*/
    scroll-behavior: smooth;
    /*padding negativo del scrol ancla.   */
    /*scroll-padding-top: 10px;*/
}

body {
    overflow-y: auto;
    overflow-x: auto;
    position: relative;
    scroll-behavior: smooth;
    background-color: var(--tertiary-color)
}



.containerWeb {
    width: 100%;
    /* max-width: 2048px; */
    margin: 0 auto;
    min-height: 100%;
    position: relative;
    /*max-width:3000px;*/
}


.pt80 {
    padding-top: 80px;
}

.pb80 {
    padding-bottom: 80px;
}

.pt40 {
    padding-top: 40px;
}

.pb40 {
    padding-bottom: 40px;
}
.pb90 {
    padding-bottom: 90px;
}

.mb80 {
    margin-bottom: 80px;
}

.sectionFullPageHeight {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.sectionMinHeightFullPage {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100%;
}

.sectionContentHeight {
    display: flex;
    flex-direction: column;
}

.contentPageMedium {
    width: 100%;
    max-width: 75%;
}

@media(max-width:800px) {
    .contentPageMedium {
        width: 100%;
        max-width: 100%;
    }
}

.contentPage {
    width: 100%;
    max-width: 85%;
}

.contentPageFullWidth {
    width: 100%;
}








/***************************************************************************************************************/
/************************************TEXTOS**********************************************/
/**************************************************************************************************************/

/*tamaños*/

/*pc hasta movil*/
* {
    font-size: max(1vw, 16px);
    font-weight: 400;
    font-family: Montserrat;
}

/*pc extra large*/
@media(min-width:3000px) {

    * {
        font-size: max(1vw, 16px);
        font-weight: 400;
        font-family: Montserrat;
    }
}


.titleSectionBig {
    font-family: 'BebasNeue';
    font-size: max(12vw, 100px);
    line-height: 0.86em;
    margin-bottom: 20px;
}

.breakword {
    word-break: break-word; /* Romper palabras largas */
    hyphens: auto;
}

@media(min-width:3000px) {

    .titleSectionBig {
        font-family: 'BebasNeue';
        font-size: 380px;
        line-height: 0.86em;
        margin-bottom: 50px;
    }
}


.titleSectionMedium {
    font-family: 'BebasNeue';
    font-size: max(10vw, 100px);
    line-height: 1em;
    margin-bottom: 20px;
}

@media(min-width:3000px) {

    .titleSectionMedium {
        font-family: 'BebasNeue';
        font-size: max(10vw, 100px);
        line-height: 1em;
        margin-bottom: 20px;
    }
}

.titleSection {
    font-family: 'BebasNeue';
    font-size: max(6vw, 80px);
    line-height: 1em;
    margin-bottom: 20px;
}

@media(min-width:3000px) {
    .titleSection {
        font-family: 'BebasNeue';
        font-size: max(6vw, 80px);
        line-height: 1em;
        margin-bottom: 20px;
    }
}


.subTitleSection {
    font-family: 'Montserrat', 'Open Sans';
    font-size: max(3vw, 40px);
    line-height: 1em;
    margin-bottom: 20px;
}

.rssFooter {
    font-size: 60px;
}

.textTabs {
    font-family: 'BebasNeue';
    font-size: max(3vw, 34px);
    color:var(black);
}
.textTabs:hover {
   
    color: var(--main-color);
}

@media(min-width:3000px) {

    .textTabs {
        font-family: 'BebasNeue';
        font-size: 150px;
    }
}

p {
    margin-bottom: 20px;
}



/*alineaciones, estilos*/

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

a {
    transition: all linear 0.5s;
    cursor: pointer;
    color: var(--white);
    text-decoration: none;
    display: block;
}

    a:hover {
        color: var(--white-transp)
    }

.pointer {
    cursor: pointer;
}

.btn-primary {
    border-radius: 0;
    width: 100%;
    padding: 0px 20px;
    min-height: 60px;
    display: flex;
    flex-direction: row;
    grid-gap: 8px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    color: #ffffff;
    text-transform: uppercase;
    font-family: BebasNeue;
    background-color: var(--main-color);
    color: var(--white);
    transition: all linear 0.5s;
}

/*solo para dispositivos que aceptan hover ( pcs) */

@media (hover: hover) {
    .btn-primary:hover {
        color: var(--secondary-color);
        background-color: var(--whiteTransp)
    }
}

/*********************************************************************************************************************/
/*******MENU NAVBAR***************************/
/*********************************************************************************************************************/

nav {
    width: auto;
    height: 90px;
    border-top-left-radius: 100%;
    -moz-border-radius-topleft: 100%;
    border-bottom-left-radius: 100%;
    -moz-border-radius-topleft: 100%;
    background-color: var(--quaternary-color);
    top: 40px;
    right: 0;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 4;
    cursor: pointer;
    padding-left: 40px;
    padding-right: 20px;
}

.icoMenu {
    width: 32px;
}

    .icoMenu:before,
    .icoMenu:after,
    .icoMenu div {
        background: var(--secondary-color);
        content: "";
        display: block;
        height: 5px;
        border-radius: 3px;
        margin: 5px 0;
        transition: 0.5s;
    }

    .icoMenu.icoActive:before {
        transform: translateY(10px) rotate(135deg);
    }

    .icoMenu.icoActive:after {
        transform: translateY(-10px) rotate(-135deg);
    }

    .icoMenu.icoActive div {
        transform: scale(0);
    }


.contentMenu {
    display: flex;
    z-index: 3;
    flex-direction: column;
    grid-gap: 30px;
    width: 60vw;
    background-color: var(--quaternary-color);
    padding: 130px 20px 20px 20px;
    position: fixed;
    top: 0;
    right: -60vw;
    transition: right linear 0.5s;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}


    .contentMenu.show {
        right: 0;
    }

    .contentMenu a {
        color: var(--secondary-color);
        text-transform: uppercase;
        font-size: max(3vw, 26px);
    }
    .contentMenu a:hover {
        color: var(--main-color);
       
    }

        .contentMenu a i {
            font-size: max(2vw, 20px);
        }

@media(max-width:560px) {
    .contentMenu a {
        font-size: max(3vw, 20px);
    }

    .contentMenu {
        width: 80vw;
        right: -80vw;
        transition: right linear 0.5s;
    }
}



.contentMenu a:hover {
    color: var(--main-color);
}


.contentMenu a.active {
    color: var(--main-color);
}

.displayPc {
    display: flex;
}

.displayMobile {
    display: none;
}


@media(max-width:767px) {

    nav {
        padding: 15px 10px;
        padding-left: 30px;
        padding-right: 15px;
        width: auto;
        height: 70px;
        top: 20px;
    }

    .displayPc {
        display: none;
    }

    .displayMobile {
        display: flex;
    }
}

.colLogoMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 0 0 30%;
}

.logoMenu {
    max-width: 130px;
}

.colMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex: 1;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    grid-gap: 30px;
}

    .menu a {
        text-transform: uppercase
    }

        .menu a.active {
            color: var(--main-color);
        }


/*********************************************************************************************************************/
/*******FORMULARIO ELEMENTS***************************/
/*********************************************************************************************************************/

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control {
    background-color: transparent;
    color: var(--white);
    transition: all .4s cubic-bezier(.43,.39,.23,1.01);
    min-height: 30px;
    width: 100%;
    border: none;
}

    .form-control:focus {
        outline: none;
    }

/*placeholders*/

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: var(--white);
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: var(--white);
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: var(--white);
    opacity: 1;
}


/*autofill inputs*/

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
    /*color texto*/
    -webkit-text-fill-color: var(--white);
    /*fondo*/
    -webkit-box-shadow: 0 0 0px 1000px var(--main-color) inset;
    transition: background-color 5000s ease-in-out 0s;
}

.containerFormControlLines {
    background-color: transparent;
    color: var(--white);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-gap: 10px;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 3px 0;
    border-bottom: 1px solid var(--white);
}

/*********************************************************************************************************************/
/*******MODAL***************************/
/*********************************************************************************************************************/

html.modal-active,
body.modal-active {
    overflow: hidden;
}

#modal-container {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 8;
}

    #modal-container.one {
        transform: scaleY(0.01) scaleX(0);
        animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }

        #modal-container.one .modal-background .modal {
            transform: scale(0);
            animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        }

        #modal-container.one.out {
            transform: scale(1);
            animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        }

            #modal-container.one.out .modal-background .modal {
                animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
            }

    #modal-container .modal-background {
        display: table-cell;
        background: var(--white);
        text-align: center;
        vertical-align: middle;
    }

        #modal-container .modal-background .modal {
            background: transparent;
            box-sizing: border-box;
            padding: 25px 50px;
            width: 100%;
            max-width: 100vw;
            height: 100%;
            display: inline-block;
            border-radius: 3px;
            font-weight: 300;
            position: relative;
            overflow-y: auto;
            max-height: 85vh;
            max-width: 100%;
        }

@media(max-width:1000px) {
    #modal-container .modal-background .modal {
        padding: 25px 20px;
    }
}

/*custom scroll custom del modal*/

.modal::-webkit-scrollbar {
    width: 10px;
}


.modal::-webkit-scrollbar-track {
    background: var(--greyColor);
}


.modal::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5px;
}

    .modal::-webkit-scrollbar-thumb:hover {
        background: var(--greyColor);
    }



#modal-container .modal-background .modal h2 {
    margin-bottom: 15px;
}



#modal-container .modal-background .modal p {
    margin-top: 20px;
    font-size: max(1vw, 16px);
    font-weight: 400;
    font-family: Montserrat;
}

#modal-container .modal-background .modal .modal-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 3px;
}

    #modal-container .modal-background .modal .modal-svg rect {
        stroke: #fff;
        stroke-width: 2px;
        stroke-dasharray: 778;
        stroke-dashoffset: 778;
    }


.modal video {
    width: 60vw;
}

@media(orientation:portrait) {
    .modal video {
        width: calc(100% - 100px);
    }
}

@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}


/*********************************************************************************************************************************/
/****************** 1. HOME ********************************************************************************************************/
/*********************************************************************************************************************************/

/*********************************************************************************************************************/
/*HOME: SECTION 0: INTRO WEB*/
/*********************************************************************************************************************/
.bgHeaderHome {
    background-color: var(--secondary-color);
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.logoHeader {
    height: 60vh;
    width: auto;
}

/*animacion circulo header*/

.circleAnimationPosition {
    position: absolute;
    width: 100px;
    z-index: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    -moz-transform: translateX(-50%) translateY(50%);
    -webkit-transform: translateX(-50%) translateY(50%);
    -o-transform: translateX(-50%) translateY(50%);
    -ms-transform: translateX(-50%) translateY(50%);
    transform: translateX(-50%) translateY(50%);
    opacity: 0;
    animation: scale 1s ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
}


@keyframes scale {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    100% {
        transform: scale(20);
        opacity: 1;
    }
}

@media(orientation:portrait) {
    @keyframes scale {
        0% {
            transform: scale(1);
            opacity: 0;
        }

        100% {
            transform: scale(15);
            opacity: 1;
        }
    }
}



.topToCircle {
    z-index: 2;
}


@media(orientation:portrait) {
    .logoHeader {
        width: 70vw;
        height: auto;
    }
}
@media(orientation:portrait) and (min-width:700px ){
    .logoHeader {
        width: 50vw;
        height: auto;
    }
}
/*********************************************************************************************************************/
/*HOME: SECTION 1: JOOKIES*/
/*********************************************************************************************************************/

.bgSection1 {
    width: 100%;
    background-color: var(--secondary-color);
    overflow: hidden;
}

/*********************************************************************************************************************/
/*HOME: SECTION 2: carta precios */
/*********************************************************************************************************************/

.boxCategoriaCarta {
    background-color: var(--white);
    padding: 80px 50px 40px 50px;
    box-sizing: border-box;
    border-radius: 5px;
}

@media(max-width:500px) {
    .boxCategoriaCarta {
        padding: 80px 20px 40px 20px;
    }
}

@media(max-width:380px) {
    .boxCategoriaCarta {
        padding: 80px 10px 40px 10px;
    }
}

.titleBoxCategoriaCarta {
    font-family: 'FunkyVibes-aYYMx';
    margin-top: min(-5vw, -120px);
    font-size: max(4vw, 60px);
}


@media(min-width:3000px) {

    .titleBoxCategoriaCarta {
        font-family: 'FunkyVibes-aYYMx';
        margin-top: -160px;
        font-size: 160px;
    }
}

/**/
.menuItem {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    grid-gap: 10px;
    width: 100%;
    flex-wrap: nowrap;
    align-items: flex-end;
    margin-bottom: 20px;
}

.itemCartaName {
    font-size: 1.4em;
}

.itemCartaPrice {
    font-size: 1.6em;
}

    .itemCartaPrice i {
        font-size: 1.2em;
        color: var(--main-color);
    }

.itemCartaSeparationLine {
    display: flex;
    flex: 1;
    border-bottom: 5px dotted #333;
}

@media(min-width:3000px) {

    .textTabs {
        font-family: 'BebasNeue';
        font-size: 150px;
    }
}
@media(max-width:500px){
    .itemCartaName {
        font-size: 1.1em;
    }

    .itemCartaPrice {
        font-size: 1.2em;
    }

        .itemCartaPrice i {
            font-size: 1em;
            color: var(--main-color);
        }
}
/*********************************************************************************************************************/
/*HOME: SECTION 3: PRODUCTOS galeria*/
/*********************************************************************************************************************/
.containerSliderProductos {
    position: relative;
    overflow: hidden;
    height: 100%;
}

#sliderProductos {
    height: 100% !important;
    padding-bottom: 0 !important;
    max-width: 100vw;
}

    #sliderProductos .swiper-wrapper {
        height: calc(100% - 80px);
    }


    #sliderProductos .swiper-slide {
        padding: 2vw;
        box-sizing: border-box;
        background-size: auto 100%;
        background-position: center center;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        transition: all 0.8s ease-in-out;
        filter: grayscale(100%);
    }

        #sliderProductos .swiper-slide:hover {
            background-size: auto 110%;
            filter: grayscale(0);
        }

        #sliderProductos .swiper-slide a {
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        #sliderProductos .swiper-slide:hover a {
            opacity: 1;
        }



    #sliderProductos .swiper-pagination-bullet {
        width: 1.4vw !important;
        min-width: 20px;
        height: 1.4vw !important;
        min-height: 20px;
        background: var(--swiper-pagination-bullet-inactive-color, var(--main-color));
        opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
    }

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--main-color) !important
}

.areaClickProduct {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    cursor: pointer;
}

  

    .btnPlus {
        width: max(4vw, 60px);
        height: max(4vw, 60px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        background-color: var(--quaternary-color);
        color: var(--white);
    }

    .btnPlus i {
        font-size: max(2vw, 30px);
    }


.btnPlus:hover {
    background-color: var(--main-color);
    color: var(--white);
}

/*********************************************************************************************************************/
/*HOME: SECTION 3b: FALDÓN LOGOS INFINITO*/
/*********************************************************************************************************************/


.containerSlider {
    position: relative;
    overflow: hidden;
}

#sliderLogos {
    padding-bottom: 0 !important;
    max-width: 100vw;
}

    #sliderLogos .swiper-slide {
        width: auto;
    }

    #sliderLogos .swiper-wrapper {
        transition-timing-function: linear !important;
        align-items: center;
    }



.bgSliderLogos {
    background-color: var(--main-color);
    padding: 20px 0px;
}


.h100pc {
    height: 100%;
}



/*********************************************************************************************************************/
/*HOME: SECTION 4: ME*/
/*********************************************************************************************************************/


.bgAboutMe {
    background-image: url("../images/mebigV2.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-color: var(--secondary-color);
    background-position: 40% center;
}

.cuartoCircle {
    background: var(--tertiary-color);
    border: 2px solid var(--tertiary-color);
    border-radius: 0 100% 0 0;
    min-height: max(30vw, 300px);
    width: max(30vw, 300px);
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
}

.contentCuartoCircle {
    width: max(20vw, 300px);
    padding: 0 50px 0 7vw;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    height: max(20vw, 300px);
}

@media(orientation:portrait) {

    .cuartoCircle {
        background: var(--tertiary-color);
        border: 2px solid var(--tertiary-color);
        border-radius: 0 100% 0 0;
        min-height: max(40vw,200px);
        width: max(40vw,200px);
        box-sizing: border-box;
    }

    .contentCuartoCircle {
        width: max(40vw,200px);
        padding: 0 40px 0 5vw;
        box-sizing: border-box;
        display: flex;
        align-items: flex-end;
        height: max(40vw,200px);
    }
}

@media(orientation:portrait) and (max-width:875px) {

    .cuartoCircle {
        min-height: max(50vw,300px);
        width: max(50vw,200px);
    }

    .contentCuartoCircle {
        width: max(50vw,300px);
        padding: 0 40px 0 5vw;
        height: max(50vw,300px);
    }
}




/*********************************************************************************************************************/
/*HOME: SECTION 5: BOLSA Y PATRÓN*/
/*********************************************************************************************************************/
.bgPatronJookies {
    background-color: var(--secondary-color);
    background-image: url("../images/patron.png");
    background-size: cover;
    background-size: 380px 290px;
}

/*********************************************************************************************************************/
/*HOME: SECTION 6: CONTACTO*/
/*********************************************************************************************************************/

.faldonurl {
    flex-wrap: nowrap;
    overflow-x: hidden;
}

    .faldonurl h3 {
        font-family: 'BebasNeue';
        /*font-size: 4vw;*/
        font-size: max(4vw, 50px);
        color: var(--white-transp);
    }



.cardContacto {
    padding: 5vw 5vw 5vw 5vw;
    box-sizing: border-box;
}

@media(max-width:899px) {
    .cardContacto {
        padding: 50px 50px 50px 50px;
        box-sizing: border-box;
    }
}
