

/*01-GENERALES*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}


a.openModal{cursor: pointer;}

.modal-legal {
    position: fixed;
    display:none;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background-color: rgba(0,0,0,.75);
    }


.modalContent {
    background-color: #FFF;
    width: 70%;
    height: 70%;
    padding:40px 10px 10px 10px;
    box-sizing: border-box;
    }


.modalContent iframe {
    width: 100%;
    height: 100%;
}


.modal__boton span {
    display: none;
    }


/* ALERTA COOKIES */
.alert-cookies {
    font-family:"Helvetica Neue",Helvetica,Arial;
    position: fixed; 
    bottom:0; 
    clear: both; 
    margin:0; 
    width:100%; 
    z-index:99; 
    background-color: rgba(0,0,0,0.8); 
    border:none; 
    border-radius:0;
    font-size: 14px; 
    text-align:center;
    box-sizing: border-box;
    padding:20px 40px;
    letter-spacing:0.5px;
    color: #FFF;
    z-index: 2000;
}

.alert-cookies a:link, .alert-cookies a:visited {
    font-family:"Helvetica Neue",Helvetica,Arial;
    font-size: 16px;
    width:auto;
    height:auto;
    color: #FFF !important;
}

.alert-cookies button{
    font-size: 12pt;
}



/*02-ESTILO DE TEXTO*/

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 10px;
    color: #555555;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #555555;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 120%;
    color: #555555;
}

h4{
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5px;
    line-height: 140%;
    font-weight: bold;
    padding:30px 0 5px 0;
    color: #555555;
}

p, a{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 150%;
    color: #555555;
}


ul{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding-left: 12px;	
    line-height: 150%;	
    list-style-position: inside;
    margin-left: 14px;
    margin-bottom: 3px;
    color: #555555;
}

ul.circle{
    list-style-type: disc;
    padding-left: 32px;
    color: #555555;
}

ol{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding-left: 16px;	
    line-height: 150%;
    color: #555555;
}

ul.arrow-orange{list-style:none; list-style-image:url(../img/bullet-orange.png);}
ul.arrow-blue{list-style:none; list-style-image: url(../img/bullet-blue.png);}
ul.arrow-green{list-style:none; list-style-image: url(../img/bullet-green.png);}
ul.arrow-white{list-style:none; list-style-image: url(../img/bullet-white.png);}


p.legal-text, p.legal-text a{
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
}

p strong{
    font-weight: bold;}

sup {
    vertical-align: super;
    font-size: 11px;
}


.centered{text-align: center;}

/* FIN ESTILO DEL TEXTO */


/*03-COLORES*/

/*------------------------Colorear texto--------*/
.orangeLight {
    color: #F1B434;
}
.orangeMedium {
    color: #F68621;
}
.orangeDark {
    color: #E35205;
}
.blueLight {
    color: #00A9E0;
}
.blueMedium {
    color: #188CCC;
}
.blueDark {
    color: #004986;
}
.greenLight {
    color: #C4D600;
}
.greenMedium {
    color: #39B54A;
}
.greenDark {
    color: #007A3E;
}
.greyLight {
    color: #D9D9D6;
}
.greyMedium {
    color: #C8C9C7;
}
.greyDark {
    color: #58595B;
}

.white{
    color:#ffffff;
}

/*------------------------Colorear fondo---------*/

.orangeLight_bkg, .orangeLight_bkg:before {
    background-color: #F1B434;
}
.orangeMedium_bkg, .orangeMedium_bkg:before {
    background-color: #F68621;
}
.orangeDark_bkg, .orangeDark_bkg:before {
    background-color: #E35205;
}
.blueLight_bkg, .blueLight_bkg:before {
    background-color: #00A9E0;
}
.blueMedium_bkg, .blueMedium_bkg:before {
    background-color: #188CCC;
}
.blueDark_bkg, .blueDark_bkg:before {
    background-color: #004986;
}
.greenLight_bkg, .greenLight_bkg:before {
    background-color: #C4D600;
}
.greenMedium_bkg, .greenMedium_bkg:before {
    background-color: #39B54A;
}
.greenDark_bkg, .greenDark_bkg:before {
    background-color: #007A3E;
}
.greyLight_bkg, .greyLight_bkg:before {
    background-color: #f3f3f3;
}
.greyMedium_bkg, .greyMedium_bkg:before {
    background-color: #C8C9C7;
}
.greyDark_bkg, .greyDark_bkg:before {
    background-color: #58595B;
}
.white_bkg, .white_bkg:before {
    background-color: #FFFFFF;
}


/*------------------------Colores botones hover---------*/
button.blueDark_bkg:hover{background-color: #188ccc;}
button.blueMedium_bkg:hover{background-color: #00a9e0;}
button.blueLight_bkg:hover{background-color: #004986;}
button.orangeDark_bkg:hover{background-color: #f68621;}
button.orangeMedium_bkg:hover{background-color: #f1b434;}
button.orangeLight_bkg:hover{background-color: #e35205;}
button.greenDark_bkg:hover{background-color: #39b54a;}
button.greenMedium_bkg:hover{background-color: #c4d600;}
button.greenLight_bkg:hover{background-color: #007a3e;}

/* FIN COLORES */

/* genérico*/

header,section, footer, .part-one-container, .part-two-container{
    width:100%;
    position: relative;
}

button{
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 16pt;
    text-transform: uppercase;
    box-sizing: border-box;
    padding: 10px 25px; 
    border-radius: 5px;
    transition: .2s ease-in-out;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 700;
    border: 0;
}

/* fin genérico*/

/* HEADER*/


header {
    position: fixed;
    background-color: #fff;
    top: 0;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    z-index: 1000;
    box-shadow: 0px 1px 20px #C8C9C7;
}

header>div:first-of-type{
    position:relative;
    width: 1080px;
    left: 50%;
    margin-left: -540px;
    display: inline-block;
}

.logocigna {
    position: relative;
    width: 200px;
    height:50px;
    margin: 15px 0;
    display: inline-block;
}

a.llamar{
    text-decoration: none;
}

.numbers-container {
    position: absolute;
    display: inline-flex;
        -webkit-inline-flex: 1; /* Safari 6.1+ */
        -ms-inline-flex: 1; /* IE 10 */ 
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    margin-top: 8px;
}

.numbers-container button {
    margin-top: 0;
}

.numbers-container img, .numbers-container-mobile img{
    margin-top: 5px;
    margin-right: 7px;
    margin-right: 5px;
}

a.llamar{
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 16pt;
    text-transform: uppercase;
    box-sizing: border-box;
    padding: 10px 25px;
    border-radius: 5px;
    transition: .2s ease-in-out;
    cursor: pointer;
    margin-top: 0px;
    font-weight: 700;
    display: inline-flex;
    line-height: 140%;
}

button.boton-llamar{
    background-color: white;
    border:1px solid #004986;
    margin-left: 20px;
    outline: none;
}
    button.boton-llamar:hover{
    background-color: #f68621;
    border:1px solid #f68621;
    margin-left: 20px;
    outline: none;
    color: white;
}


.numbers-container button:first-child , .numbers-container-mobile button:first-child  {
    display: inline-flex;
        -webkit-inline-flex: 1; /* Safari 6.1+ */
        -ms-inline-flex: 1; /* IE 10 */ 
        justify-content: center;
}

.numbers-container button:nth-child(2){
    border:1px solid #004986;
    margin-left: 30px;
}

    .numbers-container button:nth-child(2):hover{
    background-color: #f68621;
    color:#fff;
    border:1px solid #f68621;
}

.numbers-container-mobile{
    display: none;
}



/* PORTADA */

#portada{
    position: relative;
    width: 100%;
    height: 450px;
    top: 100px;
    background-color: #f1f1f1;
}

.portada-content{
    position: relative;
    background-image:url(../img/cabecera.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 1080px;
    margin: 0 auto;
    height: 450px;
}

.portada-content>div:first-of-type{
	width: 45%;
	height: auto;
    box-sizing: border-box;
    padding-top: 30px;
}

#portada>div:first-of-type h1{
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size:35px;
    margin-bottom: 0px;
    padding-bottom: 10px;
}

#portada>div:first-of-type h2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18pt;
    margin-bottom: 20px;
}

.oferta{
    width: 45%;
    position: relative;
    margin-top: 25px;
}

.oferta p.porcentaje{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size:85px;
    margin: 0;
    line-height: 100%;
}

.oferta p.descuento{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size:30px;
    margin: 0;
    line-height: 110%;
}

.oferta p.parasiempre{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size:30px;
    margin: 0;
    line-height: 110%;
}

.oferta div{
    width: 250px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14pt;
    text-transform: uppercase;
    box-sizing: border-box;
    padding: 10px 25px; 
    border-radius: 5px;
    transition: .2s ease-in-out;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 700;
}

.oferta div:hover{
    background-color:#188ccc;
    color:#fff;
}

form{
    position: absolute;
    width: 300px;
    background-color:#188ccc;
    top: 0px;
    right: 0;
    box-sizing: border-box;
    padding:30px;
    top: 50%;
    transform: translateY(-50%);
}

form h4{
    font-weight: 500;
}

form p{
    line-height: 120%;
}

form p.destacado{
    font-weight: bold;
    font-size: 25pt;
}

form input{
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    border:none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 10px 5px;
    margin-top: 15px;
}

form input:focus{
    outline: none;
}

form input:active{
    border:none;
}

.datos-link{text-decoration: underline;}


.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 8pt;
    color:#fff;
    line-height: 140%;
}

.container a{
    font-family: 'Montserrat', sans-serif;
    font-size: 8pt;
    font-weight: 500;
    line-height: 120%;
    color:#fff;
}
    
    .container a:hover{
    color:#004986;
    }

/* Hide the browser's default checkbox */
/*.container input {
    display: none;
    position: absolute;
    opacity: 0;
    cursor: pointer;
}*/

.container input {
    display: inline;
    background: red;
    position: absolute;
    opacity: 1;
    cursor: pointer;
    position: absolute;
    top: -15px;
    vertical-align: top;
    left: 0;
    height: 20px;
    width: 20px;
    /* background-color: #fff; */
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #fff;
}


/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 8px;
    border: solid #004986;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.submit-button{
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 16pt;
    text-transform: uppercase;
    box-sizing: border-box;
    padding: 10px 25px; 
    border-radius: 5px;
    transition: .2s ease-in-out;
    cursor: pointer;
    margin-top: 15px;
    left: 100%;
    transform: translatex(-100%);
}

button a{
    font-family: 'Montserrat', sans-serif;
    font-size: 16pt;
    text-decoration: none;
    color: inherit;
}

button.submit-button:hover{
    background-color:#fff;
    color:#004986;
}

/* PRODUCTOS */

#productos{
    position: relative;
    width: 100%;
    margin-top: 100px;
}

.productos-content{
    position: relative;
    width: 1080px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 70px 0;
}

.tipo-producto{
    position: relative;
    width: 326.66px;
    height: auto;
    display: inline-block;
    margin-right: 45px;
    vertical-align: top;
}

.tipo-producto:last-child{
    margin-right: 0;
}

.product-box{
    box-sizing: border-box;
    min-height: 190px;
    padding: 15px;
    border-radius: 5px;
    background-color: #188ccc;
}

.product-box h3{
    font-size: 18pt;
}

.product-box div{
    position: relative;
    box-sizing: border-box;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
}

.product-box div p{
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 12pt;
    font-weight: 500;
    line-height: 120%;
}

.product-box div p:nth-child(2){
    font-weight: 700;
    font-size: 22pt;
}

.triangle {
    width:0; 
    border-top:20px solid #188ccc; 
    border-left:20px solid transparent; 
    border-right:20px solid transparent;
    margin: 0 auto 15px auto;
}

/* INNOVACIÓN */

#innovacion{
    position: relative;
    width: 100%;
}

.innovacion-content{
    position: relative;
    width: 1080px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 70px 0;
}

.innovacion-content h1{
    margin-bottom: 30px;
}

.innovacion-content h2{
    margin-bottom: 15px;
}

.categories-box{
    width: 100%;
    position: relative;
    margin-top: 30px;
    display: inline-block;
}

.categories{
    width: 290px;
    min-height: 150px;
    display: inline-block;
    vertical-align: top;
    margin-right: 100px;
    position: relative;
}

    .categories:first-child,.categories:nth-child(2),.categories:nth-child(3){
        margin-bottom: 30px;
    }

    .categories:nth-child(3), .categories:nth-child(6){
        margin-right: 0;
    }


.categories img{
    position: relative;
    left: 50%;
    margin-left: -37.5px; 
}

img.see-more{
    margin-left: -10.5px;
    margin-top: 10px;
    cursor: pointer;
}

.categories h3{
    margin-top: 10px;
    box-sizing: border-box;
    transition: .2s ease-in-out;
}

.categories-more{
    position: relative;
    width: 25px;
    height: 25px;
    left: 50%;
    margin-left: -12.5px;
    cursor: pointer;
    fill: #004986;
}

.escondido{
    position: relative;
    width: 100%;
    display: none;
}

/* BARRA */

.barra-content{
    position: relative;
    width: 1080px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 30px 0;
}

.barra-content button{
    left: 50%;
    transform: translateX(-50%);
}

/* WELLBEING*/

.wellbeing-content{
    position: relative;
    width: 1080px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 70px 0;
}

.wellbeing-intro{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 45px;
}

.wellbeing-intro div:first-child{
    position: relative;
    display: inline-block;
    width: 20%;
    margin-left: 18%;
    text-align: right;
    box-sizing: border-box;
    padding-right: 55px;
}

.wellbeing-intro div:nth-child(2){
    position: relative;
    display: inline-block;
    width: 45%;
}

.wellbeing-intro div:nth-child(2) h2{
    margin-bottom: 15px;
}

.wellbeing-intro div:nth-child(2) h1{
    margin-bottom: 30px;
}

.wellbeing-intro div:nth-child(2) h3{
    margin-bottom: 10px;
}

.wellbeing-icons{
    width: 100%;
    position: relative;
    display: inline-block;
}

.wellbeing-icons div{
    width: 266.5px;
    display: inline-block;
    box-sizing: border-box;
    padding: 0px 35px;
    vertical-align: top;
}

.wellbeing-icons img{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 15px;
}

/* FAQ*/

#faq{
    background-color: rgba(24,140,204,.3);
}

.faq-content{
    position: relative;
    width: 1080px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 70px 0 90px 0;
}

.faq-content h2{
    margin-bottom: 50px;
}

.interview-fila{
    width: 100%;
    position: relative;
    display: inline-flex;
        -webkit-inline-flex: 1; /* Safari 6.1+ */
        -ms-inline-flex: 1; /* IE 10 */ 
    margin-bottom: 30px;
    opacity: 0;
}

.filaFadeIn {
    -moz-animation: slideIn 1s ease 0.3s forwards;
    -ms-animation: slideIn 1s ease 0.3s forwards;
    -webkit-animation: slideIn 1s ease 0.3s forwards;
    animation: slideIn 1.25s ease 0.3s forwards;
}

@-webkit-keyframes slideIn {
    0%{
        -moz-transform: translateY(50px);
        -ms-transform: translateY(50px);
        -webkit-transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideIn {
    0% {
        -moz-transform: translateY(50px);
        -ms-transform: translateY(50px);
        -webkit-transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

.interview-container-question{
    width: 30%;
    margin-right: 5%;
}

.interview-question{
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
    margin-right: 5%;
    border-radius: 8px 8px 8px 0;
    -webkit-border-radius: 8px 8px 8px 0;
    -moz-border-radius: 8px 8px 8px 0;
    -ms-border-radius: 8px 8px 8px 0;
    -khtml-border-radius: 8px 8px 8px 0;
}

.interview-triangle-question{
    width: 0;
    height: 0;
    border-right: 11px solid transparent;
    border-top: 7px solid #188ccc;
    border-left: 11px solid #188ccc;
    border-bottom: 7px solid transparent;
}

p.question{
    font-family: arial;
    font-size: 14px;
    font-weight: bold;
}

.interview-container-answer{
    width: 65%;
    font-weight: 500;
}

.interview-answer, .interview-answer-photo{
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 15px 20px;
    margin-right: 5%;
    border-radius: 8px 8px 0 8px;
    -webkit-border-radius: 8px 8px 0 8px;
    -moz-border-radius: 8px 8px 0 8px;
    -ms-border-radius: 8px 8px 0 8px;
    -khtml-border-radius: 8px 8px 0 8px;
}


/*Respuestas con foto*/
.interview-answer-photo{
    display: inline-flex;
        -webkit-inline-flex: 1; /* Safari 6.1+ */
        -ms-inline-flex: 1; /* IE 10 */ 
}

.interview-answer-photo-text{
    width: 75%;
    position: relative;
    margin-right: 5%;
}

.interview-answer-photo-image{
    width: 20%;
    position: relative;
}

.interview-answer-photo-image img{
    width: 100%;
    cursor: pointer;
}

/* Fin Respuestas con foto*/

.interview-triangle-answer{
    width: 0;
    height: 0;
    position: relative;
    float: right;
    border-right: 11px solid #fff;
    border-top: 7px solid #fff;
    border-left: 7px solid transparent;
    border-bottom: 11px solid transparent;
}


.hidden-faqs{
    display: none;
}


.read-more{
    position: absolute;
    right: 0;
}



/* FOOTER*/

footer .part-one, footer .part-two{
    position: relative;
    width: 1080px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px 0;
}

.part-one div ,.part-one ul{
    width: 520px;
    position: relative;
    display: inline-block;
    height: 40px;
    vertical-align: middle;
}


.part-one ul li{
    position: relative;
    display: inline-block;
    float: right;
    margin-left: 40px;
    vertical-align: bottom;
}

.part-one ul li a img{
    width: 30px;
    height: 30px;
    margin-top: 5px;
    background-color: #fff;
}

.part-one ul li a p{
    display: inline-block;
    padding-left: 5px;
    vertical-align: top;
    padding-top: 10px;
}

.part-two-container{
    background-color: #121212;
}

.part-two div:first-child{
    width: 100%;
}
.part-two div:first-child p, .part-two div:first-child div{
    width: 49.8%;
    display: inline-block;
}

.part-two div:first-child div{
    text-align: right;
    margin-top: 0;
}

.part-two div:nth-child(2){
    text-align: right;
    margin-top: 15px;
}

footer .part-two a:hover{
    color: #f1b434;
}

/*15. BOTÓN IR ARRIBA */

.boton-top{
    position: fixed;
    width: 40px;
    height: 40px;
    z-index: 1500;
    bottom: 0;
    right:0;
    padding: 10px;
    margin:  15px;
    cursor: pointer;
    display: none;         
}

.boton-top img{
    position: relative;
    transition: all 0.3s ease-in-out;
    bottom: 0;
}
.boton-top img:hover{
    bottom: 10px;
}


/*lightbox*/

.modal {
    position: fixed;
    z-index: 9000;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    top: 0px;
    left: 0;
    display: flex;
        -webkit-flex: 1; /* Safari 6.1+ */
        -ms-flex: 1; /* IE 10 */ 
    justify-content: center;
    align-items: center;
}

.modal__img {
    max-height: 90%;
    width: auto;
    /*  width: 70%;
      max-width: 600px;*/
}


.modal__boton {
    width: 50px;
    height: 50px;
    background-image:url(../img/cerrar-cruz.png);
    background-repeat: no-repeat;
    background-size: 50px;
    cursor: pointer;
    position: absolute;
    right: 70px;
    top: 70px;

}

/************************************************************************************
ONLY MOBILE
*************************************************************************************/

@media (min-width: 0px) and (max-width: 480px){

h1{font-size: 10vw;}
h2{font-size: 6vw;}
h3{font-size: 16px;}
button{font-size: 14pt;}

.boton-top {
    bottom: 70px;
}

/* HEADER*/

header{
    position: relative;
    height: 100px;
}

header>div:first-of-type {
    position: relative;
    width: 100%;
    height: 100px;
    left: 0;
    margin-left: 0;
    display: inline-block;
}

.logocigna{
    width: 45%;
    height: auto;
    margin: 0 auto;
    left: 50%;
    margin-left: -22.5%;
    top: 50%;
    transform: translateY(-50%);
}

.logocigna img {
    width: 100%;
    height: auto;
}

.numbers-container{
    display: none;
}

.numbers-container-mobile {
    width: 100%;
    height: 60px;
    display: inline-flex;
        -webkit-inline-flex: 1; /* Safari 6.1+ */
        -ms-inline-flex: 1; /* IE 10 */ 
    position: fixed;
    bottom: 0;
    left: 0;
}

.numbers-container-mobile a.llamar{
    width: 50%;
    border-radius: 0;
    height: 60px;
    margin:0;
    background-color: #004986;
    text-align: center;
    padding: 0;
}

    .numbers-container-mobile a.llamar button{
    width: 100%;
    height: 60px;
    }

    .numbers-container-mobile a.llamar button:hover{
    background-color: #004986;
    }
    

.numbers-container-mobile a.scroll{
    width: 50%;
    border-radius: 0;
    height: 60px;
    margin:0;
    background-color: #f68621;
    text-align: center;
    text-decoration: none;
}
    
    .numbers-container-mobile a.scroll button{
        width: 100%;
    }
    
    .numbers-container-mobile a.scroll button:hover{
        background-color: #f68621;
    }


.numbers-container-mobile button{
    width: 50%;
    border-radius: 0;
    height: 70px;
    margin:0;
}


.numbers-container-mobile button{
    width: 50%;
    border-radius: 0;
    height: 60px;
    margin:0;
    font-size: 10pt;
    letter-spacing: 0.2px;
}

.numbers-container-mobile img{
    margin-top: 0;
    margin-right: 7px;
}

button a{
    font-family: 'Montserrat', sans-serif;
    font-size: 10pt;
}

.numbers-container-mobile button:first-of-type:hover{
    background-color: #00A9E0;
}


/* PORTADA*/

#portada{
    top: 0;
    height: auto;
}

.portada-content {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 30px;
}

.portada-content>div:first-of-type {
    width: 100%;
    position: relative;
    margin-top: 0;
}

.portada-content>div:first-of-type h1, .portada-content>div:first-of-type h2, .portada-content>div:first-of-type p{
    text-align: center;
}

.oferta{
    width: 100%;
}

.oferta p{
    text-align: center;
}

.oferta button{
    left: 50%;
    transform: translateX(-50%);
}

form {
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 30px;
    margin-top: 25px;
    top: 0; 
    transform: translateY(0); 
}


/* PRODUCTOS*/

#productos{
    margin-top: 0px; 
}

.productos-content {
    width: 100%;
    padding: 40px;
}

.tipo-producto {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
}


/* INNOVACION*/

.innovacion-content {
    width: 100%;
    padding: 40px;
}

.innovacion-content h2 {
    margin-bottom: 10px;
}

.categories {
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
}

/* BARRA*/

.barra-content {
    width: 100%;
    padding: 40px;
}

/* WELLBEING*/

.wellbeing-content {
    width: 100%;
    padding: 40px;
}

.wellbeing-intro{
    display: flex;
        -webkit-flex: 1; /* Safari 6.1+ */
        -ms-flex: 1; /* IE 10 */ 
    flex-direction: column-reverse;
        -webkit-direction: 1; /* Safari 6.1+ */
        -ms-direction: 1; /* IE 10 */ 
}

.wellbeing-intro div:first-child {
    width: 100%;
    margin-left: 0;
    text-align: center;
    padding-right: 0;
    margin-top: 25px;
}

.wellbeing-intro div:nth-child(2) {
    width: 100%;
}

.wellbeing-intro div:nth-child(2) h2 {
    margin-bottom: 10px;
}

.wellbeing-icons div {
    width: 100%;
    margin-bottom: 25px;
}

/* FAQ*/

.faq-content {
    width: 100%;
    padding: 40px;
}

.interview-fila {
    display: block;
    margin-bottom: 45px;
}

.interview-container-question {
    width: 100%;
    margin-right: 5%;
    margin-bottom: 20px;
}

.interview-container-answer {
    width: 100%;
    font-weight: 500;
    margin-bottom: 20px;
}

.button-read-more {
    display: inline-block;
}

/* FOOTER*/

footer{
    padding-bottom: 60px;
}

footer .part-one, footer .part-two {
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
}

.part-one {
    height: auto;
    width: 100%;
    display: inline-block;
}

.part-one div{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
}

.part-one ul{
    width: 100%;
    display: inline-block;
    height: auto;
    margin: 0;
    padding-left: 0;
    display: flex;
        -webkit-flex: 1; /* Safari 6.1+ */
        -ms-flex: 1; /* IE 10 */ 
    justify-content: center;
    border-top: 1.25px solid #c6c6c6;
    box-sizing: border-box;
    padding-top: 20px;
}

.part-one ul li {
    margin-left: 30px; 
    vertical-align: bottom;
}

    .part-one ul li:first-child {
    margin-left: 0px; 
    }

.part-one ul li a img {
    width: 20px;
    height: 20px;
    margin-top: 0px;
}

.part-one ul li a p {
    display: none;
}

.part-two div:first-child p, .part-two div:first-child div {
    width: 100%;
    text-align: center;
}


.part-two div:first-child div {
    text-align: center;
    margin-top: 7px;
}

.part-two div:nth-child(2) {
    text-align: center;
    margin-top: 7px;
}

/* MODAL*/

.modalContent {
    width: 95%;
    height: 85%;
    margin-top: 60px;

    }

.modal__boton {
    top: 20px;
    right: 20px;
}


}


/************************************************************************************
TABLET
*************************************************************************************/
@media (min-width: 480px) and (max-width: 768px){

h1{font-size: 60px;}
h3{font-size: 16px;}

.boton-top {
    bottom: 70px;
}

/* HEADER*/

header{
    position: relative;
}

header>div:first-of-type {
    position: relative;
    width: 100%;
    height: 100px;
    left: 0;
    margin-left: 0;
    display: inline-block;
}

.logocigna {
    width: 35%;
    height: auto;
    margin: 0 auto;
    left: 50%;
    margin-left: -17.5%;
    top: 50%;
    transform: translateY(-50%);
}

.logocigna img {
    width: 100%;
    height: auto;
}

.numbers-container{
    display: none;
}

.numbers-container-mobile {
    width: 100%;
    height: auto;
    display: inline-flex;
        -webkit-inline-flex: 1; /* Safari 6.1+ */
        -ms-inline-flex: 1; /* IE 10 */ 
    position: fixed;
    bottom: 0;
    left: 0;
}


.numbers-container-mobile a.llamar{
    width: 50%;
    border-radius: 0;
    height: 70px;
    margin:0;
    background-color: #004986;
    text-align: center;
}

    .numbers-container-mobile a.llamar button:hover{
    background-color: #004986;
    }
    

.numbers-container-mobile a.scroll{
    width: 50%;
    border-radius: 0;
    height: 70px;
    margin:0;
    background-color: #f68621;
    text-align: center;
    text-decoration: none;
}
    
    .numbers-container-mobile a.scroll button{
        width: 100%;
    }
    
    .numbers-container-mobile a.scroll button:hover{
        background-color: #f68621;
    }


.numbers-container-mobile button{
    width: 50%;
    border-radius: 0;
    height: 70px;
    margin:0;
}



/* PORTADA*/

#portada{
    height: auto;
    top: 0;
}

.portada-content {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 30px;
}

.portada-content>div:first-of-type {
    width: 100%;
    position: relative;
    margin-top: 0;
}

.portada-content>div:first-of-type h1, .portada-content>div:first-of-type h2, .portada-content>div:first-of-type p{
    text-align: center;
}

.oferta{
    width: 100%;
}

.oferta p{
    text-align: center;
}

.oferta button{
    left: 50%;
    transform: translateX(-50%);
}

form {
    position: relative;
    width: 75%;
    height: auto;
    box-sizing: border-box;
    padding: 30px;
    margin: 25px auto 0 auto;
    top: 0; 
    transform: translateY(0); 
}


/* PRODUCTOS*/

#productos{
    margin-top: 0;
}

.productos-content {
    width: 100%;
    padding: 40px;
}

.tipo-producto {
    width: 80%;
    margin: 0 10% 25px 10%;
}

.tipo-producto:last-child {
    margin-bottom: 0;
}

/* INNOVACION*/

.innovacion-content {
    width: 100%;
    padding: 40px;
}

.innovacion-content h2 {
    margin-bottom: 10px;
}

.categories{
    margin-bottom: 45px;
    width: 45%;
    margin-right: 0;
}
    
    .categories:nth-child(2),.categories:nth-child(4), .categories:nth-child(6){
    margin-left: 8%;
    }

/* BARRA*/

.barra-content {
    width: 100%;
    padding: 40px;
}

/* WELLBEING*/

.wellbeing-content {
    width: 100%;
    padding: 40px;
}

.wellbeing-intro{
    display: flex;
        -webkit-flex: 1; /* Safari 6.1+ */
        -ms-flex: 1; /* IE 10 */ 
    flex-direction: column-reverse;
        -webkit-direction: 1; /* Safari 6.1+ */
        -ms-direction: 1; /* IE 10 */ 
}

.wellbeing-intro div:first-child {
    width: 100%;
    margin-left: 0;
    text-align: center;
    padding-right: 0;
    margin-top: 25px;
}

.wellbeing-intro div:nth-child(2) {
    width: 100%;
}

.wellbeing-intro div:nth-child(2) h2 {
    margin-bottom: 10px;
}

.wellbeing-icons div {
    width: 49%;
    margin-bottom: 25px;
    display: inline-block;
    padding: 10px 35px 0 35px;
}

/* FAQ*/

.faq-content {
    width: 100%;
    padding: 40px;
}

.interview-fila {
    display: block;
    margin-bottom: 45px;
}

.interview-container-question {
    width: 100%;
    margin-right: 5%;
    margin-bottom: 20px;
}

.interview-container-answer {
    width: 100%;
    font-weight: 500;
    margin-bottom: 20px;
}

.button-read-more {
    display: inline-block;
}

/* FOOTER*/

footer{
    padding-bottom: 70px;
}

footer .part-one, footer .part-two {
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
}

.part-one{
    display: flex;
        -webkit-flex: 1; /* Safari 6.1+ */
        -ms-flex: 1; /* IE 10 */ 
}

.part-one div {
    width: 35%;
}

.part-one ul{
    width: 60%;
}

.part-one ul li a p {
    display: none;
}

.part-two div:first-child p, .part-two div:first-child div {
    width: 100%;
    text-align: center;
}

.part-two div:nth-child(2) {
    text-align: center;
}

/* MODAL*/

.modalContent {
    width: 95%;
    height: 85%;
    margin-top: 60px;

    }

.modal__boton {
    top: 20px;
    right: 20px;
}


}

/************************************************************************************
MONITORES PEQUEÑOS
*************************************************************************************/
@media (min-width: 768px) and (max-width: 1080px){

/* HEADER*/

header>div:first-of-type {
    position: relative;
    width: 768px;
    height: 100px;
    left: 50%;
    margin-left: -384px;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 20px;
}

header button{
    font-size: 12pt;
}

.numbers-container img, .numbers-container-mobile img {
    margin-top: 0px;
    margin-right: 7px;
}

.numbers-container button:nth-child(2) {
    margin-left: 15px;
}

/* PORTADA*/

#portada {
    height: auto;
}

.portada-content {
    width: 768px;
    height: auto;
    box-sizing: border-box;
    padding: 0 25px;
    background-size: 100%;
    background-position: bottom right;
}

.portada-content>div:first-of-type {
    width: 50%;
}

.oferta {
    width: 50%;
    margin-top: 15px;
}

.oferta button{
    margin-bottom: 25px;
}

form{
    right: 25px;
}

/* PRODUCTOS*/

.productos-content{
    width: 768px;
    box-sizing: border-box;
    padding:45px 25px;
}

.tipo-producto{
    width: 206px;
}

.product-box h3 {
    font-size: 16px;
}

/* INNOVACIÓN*/

.innovacion-content {
    width: 768px;
    box-sizing: border-box;
    padding:45px 25px;
}

.categories{
    margin-bottom: 45px;
    width: 49%;
    margin-right: 0;
    margin-bottom: 30px;
}

/* BARRA*/

.barra-content {
    width: 100%;
    padding: 40px;
}

/* WELLBEING*/


.wellbeing-content {
    width: 768px;
    padding: 25px;
}

.wellbeing-intro div:first-child {
    width: 20%;
    margin: 0 100px 0 0;
}

.wellbeing-intro div:first-child img {
    padding-left: 25px;
}


.wellbeing-intro div:nth-child(2) {
    width: 65%;
    padding: 20px 0;
}

.wellbeing-intro div:nth-child(2) h2 {
    margin-bottom: 5px;
}

.wellbeing-icons div {
    width: 49%;
    margin-bottom: 30px;
}

/* FAQ*/

.faq-content {
    width: 768px;
}

/* FOOTER*/

footer .part-one, footer .part-two {
    width: 768px;
}

.part-one div{
    width: 200px;
}

.part-two div:first-child p{
    width: 370px;
}

.part-two div:first-child div{
    float: right;
}


}
