/* -------------------- VARIABLE -------------------- */

:root {
    --ff-georgia: Georgia, 'Times New Roman', Times, serif;
    --ff-noto-serif: "Noto Serif", var(--ff-georgia);
    --ff-merriweather: 'Merriweather', var(--ff-georgia);
    --ff-arial: Arial, Helvetica, sans-serif;
    --ff-domine: "Domine", serif;
    --font-size: 1.25rem;
    --line-height: 1.7;

    --white: #fff;
    --black: #000;
    --dark: #0C1115;
    --grey: #ACB0B9;
    --grey2: #abb0ba;

    --medium-gray: #A3A3A3;
    --light-gray: #DFDFDF;

    --blue: #065BE8;
    --green: #00c7b1;
    --green2: #11edd5;
    --red: #D0011C;
}

/* -------------------- VARIABLE -------------------- */






/* -------------------- BASIC -------------------- */

*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    color: var(--dark);
    background-color: var(--white);
    font-family: var(--ff-noto-serif);
    font-size: var(--font-size);
    font-weight: 400;
    line-height: var(--line-height);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
    body {
        font-size: 1.375rem;
    }
}

sub,
sup {
    font-size: 57%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

[hidden] {
    display: none
}

a {
    background-color: transparent;
}

b,
strong {
    font-weight: bolder;
}

/* -------------------- BASIC -------------------- */







/* -------------------- HELPERS -------------------- */

.text-left {
    text-align: left;
}

.dtpcnt {
    opacity: 0;
}

.link {
    color: var(--blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.link:hover,
.link:focus,
.link:active {
    color: rgb(5, 5, 61);
}

.img-fit-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    padding: 1rem 1.25rem;
    max-width: 48.625rem;
    width: 100%;
    margin-inline: auto;
}

/* -------------------- HELPERS -------------------- */









.pict img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .pict--mobile-full {
        width: calc(100% + 3rem);
        max-width: calc(100% + 3rem) !important;
        margin-left: -1.5rem !important;
    }
}






/* -------------------- NAVBAR -------------------- */

.navbar {
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.navbar__container {
    display: flex;
    flex-direction: column;
    padding-block: .375rem;
}

.navbar__text {
    color: var(--medium-gray);
    font-size: 8px;
    line-height: 1.4;
    font-family: Roboto, sans-serif;
}

.navbar__logo {
    max-width: 12.5rem;
    display: block;
    margin-inline: auto;
}

.navbar__logo-img {
    display: block;
}

@media (max-width: 767px) {
    .navbar__container {
        padding-bottom: .5rem;
    }

    .navbar__text {
        font-size: 10px;
        margin-bottom: 3px;
    }
}

/* -------------------- NAVBAR -------------------- */









/* -------------------- HEADER -------------------- */

.header {
    position: relative;
}

.header__container {
    position: relative;
    padding-block: 1.25rem;    
    text-align: center;
}

.header__label,
.header__title {
    font-family: var(--ff-domine);
    line-height: 1.4;
}

.header__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: .5rem;
}

.header__title {
    color: var(--dark);
    font-size: 2rem;
    line-height: 1.1;
    max-width: 48rem;
    margin: 0 auto;
    margin-bottom: 1.9rem;
    font-family: var(--ff-domine);
}

@media (min-width: 768px) {
    .header__title {
        font-size: 2.375rem;
        margin-bottom: 2.8rem;
    }
}

@media (max-width: 767px) {
    .header__container {
        padding-bottom: 1rem;
    }

    .header__label {
        font-size: 12px;
        margin-bottom: .75rem;
    }

    .header__title br {
        display: none;
    }
}

@media (max-width: 430px) { 
    .header__container {
        padding-inline: .25rem;
    }
}

@media (max-width: 414px) {
    .header__container {
        padding-inline: .5rem;
    }

    .header__title {
        font-size: 6.764vw;
    }
}


/* -------------------- HEADER -------------------- */







/* -------------------- CONTENT -------------------- */

.content__container {
    padding-top: 1rem;
    padding-bottom: 9.5rem;
}

@media (max-width: 767px) {
    .content__container {
        padding-top: .5rem;
        padding-bottom: 9.4rem;
    }
}

/* -------------------- CONTENT -------------------- */








.list-custom {
    padding-left: 0;
    list-style: none;
}

.list-custom > li {
    position: relative;
    padding-left: 2.05rem;
    margin-bottom: 1.5rem;
}

.list-custom > li::before {
    content: '';
    position: absolute; 
    top: .25rem; 
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    background: url(../img/i-error.png) no-repeat 0 0;
    background-size: contain;
}

@media (max-width: 767px) {
    .list-custom > li::before {
        top: .4rem; 
    }
}








@media (max-width: 767px) {
    .list-dots {
        padding-left: 2.2rem;
    }
}














/* -------------------- ARTICLE -------------------- */

.article {
    max-width: 54rem;
    margin-inline: auto;
}

.article p {
    margin-bottom: 1.5rem;
}

.article p:first-child {
    margin-top: .5rem;
}


.article__list {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.article__pict {
    position: relative;
    height: 0;
    padding-bottom: 62.2%;
    overflow: hidden;
    margin-bottom: 1.4rem;
}

.article__pict--2 {
    padding-bottom: 0;
    height: auto;
    width: calc(100% + .8rem);
    margin-left: -.4rem;
}

.article__pict--2 img {
    position: relative;
}


.article__title {
    font-family: var(--ff-noto-serif);
    color: var(--dark);
    font-size: 1.75rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.article__title--1,
.article__title--2,
.article__title--3,
.article__title--4,
.article__title--5,
.article__title--6,
.article__title--7,
.article__title--8,
.article__title--9,
.article__title--10,
.article__title--11,
.article__title--12 {
    margin-top: 2.4rem;
}


.article__pict--3,
.pict--4,
.article__pict--5 {
    max-width: 30.688rem;
    margin-inline: auto;
    padding-bottom: 0;
    height: auto;
    overflow: visible;
    margin-bottom: 1.5rem;
}

.article__pict--5 {
    max-width: 19.875rem;
}

.article__pict--3 img,
.article__pict--5 img {
    display: block;
}


.article .article__step-1,
.article .article__step-2 {
    font-weight: 700;
}

.article .article__step-1 {
    margin-bottom: 1rem;
}

.article .article__step-2 {
    margin-top: 0;
}

.article__img-desktop {
    display: block !important;
}

.article__img-mobile {
    display: none !important;
}

@media (max-width: 767px) {
    .article p:first-child {
        margin-top: 0;
    }

    .article__pict {
        margin-bottom: 1.5rem;
    }    

    .article__img-desktop {
        display: none !important;
    }

    .article__img-mobile {
        display: block !important;
    }

    .article__title {
        font-size: 1.375rem;
        line-height: 1.6;
        margin-bottom: 1.3rem;
    }

    h2.article__title {
        font-size: 1.75rem;
        line-height: 1.4;
    }

    .article__title--7,
    .article__title--8,
    .article__title--11 {
        margin-top: 1rem;
    }

    h2.article__title--12 {
        font-size: 1.5rem;
        margin-bottom: 1.75rem;
    }

    .article .article__step-1,
    .article .article__step-2 {
        font-size: 1.375rem;
    }

    .article .article__step-1,
    .article .article__step-2,
    .article .article__step-1 strong,
    .article .article__step-2 strong {
        font-weight: 700;
    }

    .article .article__step-1 {
        margin-bottom: 1rem;
    }


    .pict--1 {
        margin-bottom: 1rem;
    }

    .article__pict--5 {
        max-width: 25rem;
    }



    .fs-20-m {
        font-size: 1.25rem!important;
    }

    .rev-mb-m {
        margin-bottom: 0!important;
    }

    .rev-mb-m + p {
        margin-top: .6rem;
    }
}

/* -------------------- ARTICLE -------------------- */







/* -------------------- SELECT AGE -------------------- */

.select-age {
    margin-top: 3.1rem;
}

.select-age,
.select-age__title {
    text-align: center;
}

.select-age__title {
    font-family: var(--ff-domine);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.3rem;
}

.select-age__buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .854rem .625rem;
    max-width: 53.75rem;
    margin-bottom: 3.7rem;
}

.select-age__button,
.select-age__qualify {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--green) 0, var(--green2) 100%);
    color: var(--white);
    text-decoration: none;
    will-change: opacity;
    transition: opacity .3s ease;
}

.select-age__button {
    font-family: var(--ff-arial);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
    width: 100%;
    padding: .625rem;
    border-radius: .25rem;
    min-height: 3.7rem;
    border: 2px solid #767676;
    box-shadow: 0 3px 6px #06AF9C60;
}

.select-age__qualify {
    display: flex;
    font-size: 1.688rem;
    box-shadow: 0 3px 14px #06AF9C62;
    min-height: 4.938rem;
    max-width: 34.313rem;
    margin-inline: auto;
}

.select-age__button:hover,
.select-age__button:focus,
.select-age__button:active,
.select-age__qualify:hover,
.select-age__qualify:focus,
.select-age__qualify:active {
    text-decoration: none;
    color: var(--white);
    opacity: .8;
}

@media (max-width: 767px) {
    .select-age {
        margin-top: 2.85rem;
    }

    .select-age__title {
        font-size: 1.125rem;
        margin-bottom: 1.1rem;
    }

    .select-age__buttons {
        margin-bottom: 3.6rem;
    }

    .select-age__button {
        font-size: 1.125rem;
        min-height: 3.188rem;
    }

    .select-age__qualify {
        font-size: 1.125rem;
        min-height: 3.938rem;
    }
}


.select-age__title,
.select-age__buttons {
    display: none;
}

.select-age__qualify {
    background: #02385E!important;
    font-size: 1.75rem;
    box-shadow: none;
    min-height: 5rem;
    font-family: Domine, serif;
    border-radius: .25rem;
}

@media (max-width: 767px) {
    .select-age__qualify {
        font-size: 1.5rem;
        min-height: 3.75rem;
    }
}









.select-age__title,
.select-age__buttons {
    display: none;
}

.select-age__qualify {
    background: #02385E!important;
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: none;
    min-height: 5rem;
    font-family: var(--ff-noto-serif);
    border-radius: .25rem;
}

@media (max-width: 767px) {
    .select-age__qualify {
        font-size: 1.5rem;
        min-height: 3.75rem;
    }
}





.age__title {
    color: #333;
    text-align: center;
    font-family: Domine, serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 3.1rem;
    margin-bottom: 2.2rem;
}

.age__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .875rem;
    margin-bottom: 3.75rem;
}

.age__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #000;
    height: 14.25rem;
    background-color: #E3EFFBA3;
    border-radius: .25rem;
    border: 2px solid rgba(1,51,101, .4);
    transition: background-color .3s ease, border-color .3s ease;

}

.age__item:hover,
.age__item:focus {
    text-decoration: none;
    color: #000;
    border-color: rgba(1,51,101, 1);
    background-color: #E3EFFB;
    box-shadow: 0px 6px 12px rgba(137, 168, 190, 0.56);
}

.age__photo {
    width: 7.875rem;
    min-width: 7.875rem;
    height: 7.875rem;
    min-height: 7.875rem;
    margin-top: .3rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.age__text {
    margin-top: .4rem;
}

@media (max-width: 767px) {
    .age__title {
        font-size: 1.125rem;
        margin-top: 2.75rem;
        margin-bottom: 1.3rem;
    }

    .age__items {
        grid-template-columns: repeat(2, 1fr);
    }

    .age__item {
        height: 11.875rem;
    }

    .age__photo {
        width: 7.375rem;
        min-width: 7.375rem;
        height: 7.375rem;
        min-height: 7.375rem;
        margin-top: .5rem;
    }

    .age__text {
        margin-top: 0;
    }
}








.age__title {
    color: #333;
    text-align: center;
    font-family: Domine, serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 3.1rem;
    margin-bottom: 2.2rem;
}

.age__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .875rem;
    margin-bottom: 3.75rem;
}

.age__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #000;
    height: 14.25rem;
    background-color: #E3EFFBA3;
    border-radius: .25rem;
    border: 2px solid rgba(1,51,101, .4);
    transition: background-color .3s ease, border-color .3s ease;

}

.age__item:hover,
.age__item:focus {
    text-decoration: none;
    color: #000;
    border-color: rgba(1,51,101, 1);
    background-color: #E3EFFB;
    box-shadow: 0px 6px 12px rgba(137, 168, 190, 0.56);
}

.age__photo {
    width: 7.875rem;
    min-width: 7.875rem;
    height: 7.875rem;
    min-height: 7.875rem;
    margin-top: .3rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.age__text {
    margin-top: .4rem;
}

@media (max-width: 767px) {
    .age__title {
        font-size: 1.375rem;
        font-weight: 700;
        margin-top: 3.25rem;
        margin-bottom: 1rem;
        font-family: var(--ff-noto-serif);
    }

    .age__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-bottom: 2.1rem;
    }

    .age__item {
        height: 9.313rem;
    }

    .age__photo {
        width: 5.313rem;
        min-width: 5.313rem;
        height: 5.313rem;
        min-height: 5.313rem;
    }

    .age__text {
        margin-top: 0;
        font-size: 1.25rem;
    }
}
/* -------------------- SELECT AGE -------------------- */










.sticky-cta {
    position: fixed; bottom: 0; left: 0;
    width: 100%;
    height: 5rem;
    background-color: rgba(0, 0, 0, .32);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transform: translateY(150%);
    transition: transform .3s ease;
    padding-inline: .75rem;
}

.sticky-cta.is-show {
    transform: translateY(0%);
}


.sticky-cta__btn {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 26rem;
    width: 100%;
    color: #fff;
    background: #05B622;
    box-shadow: 0px 3px 0px #007E18;
    border-radius: .5rem;
    text-decoration: none;
    transition: opacity .3s ease;
}

.sticky-cta__btn:hover,
.sticky-cta__btn:focus,
.sticky-cta__btn:active {
    text-decoration: none;
    opacity: .8;
}

@media (max-width: 767px) {
    .sticky-cta {
        min-height: 6.25rem;
        padding-top: 1rem;
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.75) 25%,rgba(255,255,255,1) 100%);
    }
}







/* -------------------- SAFETY -------------------- */

.safety {
    color: var(--grey2);
}

.safety__title {
    color: var(--grey);
    font-size: 2.563rem;
    line-height: 1.414;
    margin-top: 1.7rem;
    margin-bottom: .8rem;
    text-align: left;
}

.safety__button {
    cursor: pointer;
    background-color: var(--white);
    box-shadow: none;
    font-size: .938rem;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    padding: 1.2rem 1rem;
    width: 14.75rem;
    margin-inline: auto;
    transform: translate(0) !important;
    margin-bottom: 1.25rem;
    border: 1px solid var(--grey);
    border-radius: .25rem;
}

.safety__button:hover,
.safety__button:focus,
.safety__button:active {
    background-color: var(--white) !important;
    color: var(--black) !important;
}

.safety__more {
    display: none;
}

.safety__subtitle,
.safety__more--show {
    display: block;
}

@media (max-width: 767px) {
    .safety__head,
    .safety__title,
    .safety__body>div:first-of-type {
        text-align: center;
    }

    .safety__title {
        font-size: 1.375rem;
        line-height: 1.27;
        margin-top: 1.8rem;
        margin-bottom: .9rem;
    }
}

/* -------------------- SAFETY -------------------- */








/* -------------------- FOOTER -------------------- */

.footer {
    font-family: var(--ff-merriweather);
    text-align: center;
    color: var(--grey);
    font-size: .75rem;
    line-height: 1.26;
}

.footer__container {
    max-width: 55.875rem;
}

.footer p,
.footer ul,
.footer ol {
    margin-bottom: 1.1rem;
}

.footer__copy {
    font-size: .875rem;
    line-height: 1.45;
    margin-bottom: 2.7rem;
    margin-top: 2rem;
}

.footer__copy a {
    color: var(--grey);
    text-decoration: none;
    white-space: nowrap;
    margin-inline: .5rem;
}

.footer__copy a:hover,
.footer__copy a:focus,
.footer__copy a:active {
    color: var(--grey);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .footer {
        font-family: var(--ff-georgia);
        font-size: .813rem;
        line-height: 1.14;
    }

    .footer p,
    .footer ul,
    .footer ol {
        margin-bottom: 1rem;
    }

    .footer__sources {
        text-align: center;
        margin-top: 1.2rem;
    }

    .footer__sources span {
        font-weight: 700;
    }

    .footer__copy {
        font-size: .875rem;
        margin-top: 2rem;
    }

    .footer__copy-text {
        display: block;
        margin-bottom: .65rem;
    }

    .footer__copy-line {
        display: none;
    }
}

/* -------------------- FOOTER -------------------- */










/* show lang */
html[lang=es] .is-es,
html[lang=en] .is-en {
    display: block;
}

/* hide lang */
.is-es,
.is-en,
html[lang=es] .is-en,
html[lang=en] .is-es {
    display: none;
}

/* preventing blinking */
html:not([lang]) body {
    visibility: hidden;
}

html[lang] body {
    visibility: visible;
}
