#bannerCookie {
    display: none !important;
}

/*
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}
*/

:root {
    --white: #ffffff;
    --green1: #27b60c;
    --green2: #015700;
    --black: #000000;

    --grey1: #5a7483;
    --grey2: #c3c3c3;

    --azul: #0e70b9;

    /*
    --rojo1: #ff4929;
    */

    --red1: #ff0000;
}





body,
html,
p,
h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

body {
    font-family: Montserrat, sans-serif;
    color: var(--black);
}

body#thankYou .aviso,
body#privacyPolicies .aviso,
body#legalNotices .aviso,
body#cookiesPolicy .aviso,
body#error404 .aviso {
    height: fit-content;
    width: 100%;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;

    padding: 7rem 1rem 1rem 1rem;
}

body {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
}

html {
    height: 100%;
}









#header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

@media (min-width:868px) {
}
@media (max-width:867px) {
    /*
    #header {
        position: relative;
    }
    */
}










header {
    background-color: var(--white);
    /* border-top: 1px solid grey; */
    /* box-shadow: 10px 5px 5px black; */
    /* box-shadow: 0.08rem 0.6rem 1rem 0 rgb(0 0 0 / 20%); */
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 30%);
    padding: 0.7rem 1rem 0.7rem 1rem;
}

nav > div {
    width: 100%;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
}

#logo {
    width: 100%;
    max-width: 279px;
}

@media (min-width:868px) {
}
@media (min-width: 867px) and (max-width: 1130px) {
    nav > div {
        display: grid;
        grid-template-columns: 2fr 1.6fr;
    }
}
@media (max-width:867px) {
    /*
    header {
        height: 60px;
    }
    */
    nav > div {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        row-gap: 0.3rem;
    }
    #logo {
        width: 100%;
        max-width: 200px;
    }
}





/* Teléfono */
nav > div > div:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.5rem;
    align-items: center;

    width: fit-content;
    margin: 0 auto;
}
nav > div > div:nth-child(2) a {
    font-size: 2.5rem;
    color: var(--black);
    text-decoration: none;
    font-weight: bolder;
}
nav > div > div:nth-child(2) img {
    width: 3.5rem;
}

@media (min-width:868px) {
}
@media (max-width:867px) {
    nav > div > div:nth-child(2) a {
        font-size: 1.7rem;
    }
    nav > div > div:nth-child(2) img {
        width: 2.0rem;
    }
}
/* Teléfono */










nav > div > div:last-child {
    position: relative;
}

/* */

#phoneHeaderArea {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
    align-items: center;
    justify-items: center;

    padding: 1rem;
    background-color: var(--grey1);
    background-color: var(--azul);;
}
#phoneHeaderArea span {
    font-size: 2.0rem;
    /* font-weight: bolder; */
    /* color: rgba(255, 255, 255, 0.4); */
    color: var(--white);
    font-weight: 100;
}
#phoneHeaderArea a {
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--white);
    text-decoration: none;
}
#phoneHeaderArea div:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.7rem;
}

/* */

.main-c2c {
    /*background-color: var(--white);*/

    /*padding: 1rem;*/
    height: fit-content;
    /*
    position: fixed;
    position: sticky;
    */
    /*
    position: absolute;
    z-index: 9999;
    top: -1rem;
    right: 0;
    */
}

.main-c2c .c2cContain {
    padding: 1rem 0 2rem 0;
    background-color: var(--white);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 30%);

    display: grid;
    grid-template-rows: 1fr;
    justify-items: center;
    gap: 1rem;
}

.main-c2c .c2cContain form {
    display: grid;
    grid-template-rows: 1fr;
    justify-items: center;
    gap: 1.5rem;
}

.main-c2c .c2cContain form label > div:nth-child(1) {
    padding: 0.5rem 0 1.5rem 0;
    text-align: center;
    font-size: 1.5rem;
}

.c2cContain .telefono > div {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.7rem;
}

.c2cContain .telefonoInput {
    border: 0;
    box-shadow: 0 0 15px rgb(0 0 0 / 25%);
    padding: 1.1rem 1.3rem 1rem 1.1rem;
    border-radius: 5px;
    font-size: 1.9rem;
    width: 11rem;
}

.c2cContain .boton {
    background-color: #27b60c;
    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    border-radius: 5px;
    font-size: 1.2rem;
    padding: 1rem 1rem 1rem 1rem;
    border: 0;
    text-decoration: none;
    width: fit-content;
}
.c2cContain .boton img {
    width: 22px!important;
}

/* */

@media (min-width:868px) {
    #phoneHeaderArea div:nth-child(2) img {
        width: 50px;
    }
    .telefono > div img {
        width: 65px;
    }
}
@media (max-width:867px) {
    #phoneHeaderArea {
        row-gap: 0.4rem;
        padding: 0.8rem 0;

        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }
    #phoneHeaderArea span {
        font-size: 1.6rem;
    }
    #phoneHeaderArea a {
        font-size: 2.5rem;
    }
    #phoneHeaderArea div:nth-child(2) {
        display: grid;
        grid-template-columns: 1fr;
    }
    #phoneHeaderArea div:nth-child(2) img {
        display: none;
    }

    .main-c2c {
        position: relative;
        top: 0.7rem
    }
}










.hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /*align-items: center;*/
    align-items: flex-start;
    column-gap: 3rem;

    width: 100%;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;

    padding: 0 1rem 0 1rem;
}

.heroPhoto img {
    /*width: 110%;*/
    /*width: 150%;*/
    width: 100%;
}

@media (min-width:868px) {
    .hero .heroPhoto {
        margin-top: 6.5rem;
    }
}
@media (min-width: 867px) and (max-width: 1130px) {
    .hero {
        display: grid;
        grid-template-columns: 2fr 1.6fr;
    }
}
@media (max-width:867px) {
    .hero {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }
    .hero .heroPhoto {
        margin-top: 6rem;
    }
    .heroPhoto img {
        margin-bottom: -30vw;
    }
    .hero .herotext {
        grid-row: 1;
    }
    .hero .heroPhoto {
        grid-row: 2;
    }
}














section.apartado,
section.apartadoDestacado {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 3rem;

    width: 100%;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;

    padding: 0 1rem 0 1rem;
}

section.apartado .photo img {
    width: 100%;
}

@media (min-width:868px) {
}
@media (max-width:867px) {
    section.apartado,
    section.apartadoDestacado {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }
    section.apartado .text {
        grid-row: 1;
    }
    section.apartado .photo {
        grid-row: 2;
    }
}









div.algunaPregunta {
    background: var(--green2);
    background: var(--azul);

    width: 100%;
    box-sizing: border-box;
}
div.algunaPregunta > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 3rem;

    width: 100%;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;

    padding: 2rem 0 2rem 0;
}

.algunaPreguntaClaim {
    font-size: 2rem;
    font-weight: bolder;
    color: var(--white);
    text-align: center;
}

@media (min-width:868px) {

}
@media (max-width:867px) {
    div.algunaPregunta > div {
        grid-template-columns: 1fr;
    }
    .algunaPreguntaClaim {
        font-size: 1.8rem;
    }
}






.c2cContainPosicion2 {
    width: fit-content;
}

.c2cContainPosicion2 form > label > div:nth-child(1) {
    color: var(--white);
    font-weight: bolder;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    text-align: center;
    font-size: 1.5rem;
    width: fit-content;

    margin: 0 auto;
}
.c2cContainPosicion2 form > label > div:nth-child(1) img {
    width: 2rem;
}

.c2cContainPosicion2 form > label > div:nth-child(2) {
    padding: 1.0rem 0;
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 1rem;
}

.c2cContainPosicion2 .gdprRequired {
    margin: inherit;
    padding: 0.5rem 0 0 0;
}
.c2cContainPosicion2 .telefonoInput,
.c2cContainPosicion2 button{
    padding: 0.5rem;
}
.c2cContainPosicion2 button{
    font-size: 1.0rem;
}

@media (min-width:868px) {

}
@media (max-width:867px) {
    .c2cContainPosicion2 {
        display: none;
    }
}


















footer {
    background: var(--black);
    color: var(--white);
    width: 100%;
    box-sizing: border-box;
}
footer > div {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;

    padding: 4rem 0 4rem 0;
}
footer a {
    color: var(--white);
    text-decoration: none;
}

@media (min-width:868px) {
}
@media (max-width:867px) {
    footer {
        height: inherit;
    }
    footer > div {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        row-gap: 1rem;
        padding: 1rem 0 1rem 0;
    }
    .sepLinkFooter {
        display: none;
    }
}










h1 {
    color: var(--grey1);
    font-size: 2.6rem;
    line-height: 120%;
    margin: 1.5rem 0;
}

h2 {
    color: var(--grey1);
    font-size: 2.6rem;
    line-height: 120%;
    margin: 1.5rem 0;
}

p {
    font-size: 1.1rem;
    line-height: 150%;
    margin: 1.5rem 0;
}

.textFeatured_1 {
    color: var(--azul);
}

@media (min-width:868px) {
}
@media (max-width:867px) {
    h1 {
        font-size: 1.7rem;
    }
    h2 {
        font-size: 1.7rem;
    }
}











/* ********************* Check ********************* */

.gdprRequired {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;

    width: fit-content !important;
    box-sizing: border-box;
    min-height: auto !important;

    margin: 0 auto;
    /*
    margin-top: 1rem;
    margin-bottom: 1rem;
    */
    border: 0;

    font-size: 0.8rem;
}
.gdprRequired a {
    /*color: var(--green2);*/
    color: var(--grey1);
    text-decoration: none;
    font-weight: bolder;
}

input[type=checkbox]#chkPoliticy,
input[type=checkbox]#mdlChkPoliticy,
input[type=checkbox]#bttChkPoliticy {
    opacity: 0;
    position: absolute;
    width: 1px !important;
}
input[type=checkbox] + label {
    cursor: pointer;
    margin: 0 !important;
}
label.checkCustom:before {
    content: '';
    /*background: transparent;*/
    background-color: var(--white);
    border: 1px solid var(--grey1);
    border-radius: 0.2rem;
    display: inline-block;
    height: 1.0rem;
    width: 1.0rem;
    text-align: center;
    vertical-align: middle;
    margin: -.4rem 0 0 0;
    padding: 0.1rem;
    /*text-shadow:4px -2px 3px gray;*/
}
/* ✓ */
input[type=checkbox]:checked + label:before {
    content: '✓';
    line-height: 0.7rem;
    font-size: 2.0rem;
    color: var(--black);
    /*color: red;*/
}

/* ********************* Check ********************* */









/*
@media (min-width: 1420px) {
}
@media (min-width: 1120px) and (max-width: 1419px) {
}
@media (min-width: 968px) and (max-width: 1119px) {
}
@media (max-width: 967px) {
}
*/








.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}
@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog {
        position: relative;
        width: auto;
        margin: .5rem;
    }
}



.fade:not(.show) {
    opacity: 0;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}


.modal-content {
    border: 0;
    border-radius: 0;
    padding: 0!important;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}


.modal-header {
    border: 0;
}
.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}



.modal-body {
    text-align: center;
}
.flex-column {
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}
.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}






.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

















/* ******************************************* */
/* ******************************************* */
/* ******************************************* */
/* ******************************************* */
/* ******************************************* */

.c2cButton {
    display: grid;
    position: fixed;
    z-index: 999;

    bottom: 0;
    left: 0;
    background-color: var(--black);
    padding: 0.8rem;
    align-content: center;
    width: 100%;
    box-sizing: border-box;

    /*box-shadow: 0 0 20px rgba(255,255,255,0.5);*/
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 30%);
}

.c2cButton a {
    border: 0;

    padding: 0 0.4rem 0.8rem 0.4rem;

    background-color: var(--green1);
    color: var(--white);
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}
.c2cButton a div:first-child {
    font-size: 1.7rem;
    padding: 0.5rem 0 0.5rem 0;
    font-weight: bold;
}



.c2cButton a div:first-child {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 0.5rem;
    align-items: center;

    width: fit-content;
    margin: 0 auto;
}
.c2cButton a div:first-child img {
    width: 1.5rem;
}



@media (min-width: 668px) {
    .c2cButton {
        display: none;
    }
}
@media (max-width: 667px) {

}

/* ******************************************* */
/* ******************************************* */
/* ******************************************* */
/* ******************************************* */
/* ******************************************* */

































/* ******************************************* */
/* ******************************************* */
/* ******************************************* */
/* ******************************************* */
/* ******************************************* */

/**/
@media (min-width:868px) {
    .heroPhoto img {
        width: 120%;
        margin-bottom: -40%;
    }
    .heroText {
        height: 100%;
    }
    .main-c2c {
        position: -webkit-sticky;
        position: sticky;
        z-index: 999999999;
        top: 0;
    }
}

@media (max-width:867px) {
    .hero .heroText .main-c2c {
        display: none !important;
    }
}

/* ******************************************* */
/* ******************************************* */
/* ******************************************* */
/* ******************************************* */
/* ******************************************* */

