/* -------------------- VARIABLE -------------------- */

:root {
    --ff-montserrat: "Montserrat", sans-serif;
    --ff-bitter: "Bitter", serif;
    --ff-poppins: "Poppins", sans-serif;

    --font-size: 1.125rem;
    --line-height: 1.4;

    --white: #fff;
    --black: #000;
    --dark: #2B2B2B;
    --grey: #ACB0B9;
    --grey2: #abb0ba;

    --medium-gray: #A3A3A3;
    --light-gray: #DFDFDF;

    --blue: rgb(47, 138, 228);
    --green: #00c7b1;
    --green2: #11edd5;
    --red: #D0011C;
}

/* -------------------- VARIABLE -------------------- */






/* -------------------- BASIC -------------------- */

*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    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(--black);
    background-color: #F3F4F6;
    font-family: var(--ff-bitter);
    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.25rem;
    }
}

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(--black);
    text-decoration: none;
}

.link:hover,
.link:focus,
.link:active {
    color: rgb(5, 5, 61);
    text-decoration: underline;
}


.link--blue {
    color: #065BE8;
    text-decoration: underline;
}

.link--blue:hover,
.link--blue:focus,
.link--blue:active {
    color: #065BE8;
    text-decoration: none;
}


.container {
    padding: 1rem;
    max-width: 50.2rem;
    width: 100%;
    margin-inline: auto;
}

@media (max-width: 767px) {
    .container {
        padding-inline: 0;
    }
}


.pict__img {
    display: block;
    width: 100%;
    height: auto;
}

.pict--fullwidth {
    width: calc(100% + 1.4rem * 2);
    margin-left: -1.4rem;
}

.pict--m {
    display: none;
}

@media (max-width: 767px) {
    .pict--d {
        display: none;
    }

    .pict--m {
        display: block;
    }

    .pict--fullwidth,
    .pict--fullwidth-m {
        width: calc(100% + 1rem * 2);
        margin-left: -1rem;
    }
}





.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding-left: 0;
    font-family: var(--ff-poppins);
    color: #1A3053;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    margin-top: .5rem;
    margin-bottom: 1rem;
}

.breadcrumb::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1.125rem;
    min-width: 1.125rem;
    height: 1.125rem;
    background-color: #167797;
    margin-right: .5rem;
    position: relative; top: -.05rem;
}

@media (max-width: 767px) {
    .breadcrumb {
        margin-top: .75rem;
        margin-bottom: 1.25rem;
    }
}

/* -------------------- HELPERS -------------------- */







/* -------------------- TOPBAR -------------------- */

.topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.625rem;
    color: #fff;
    background-color: #222;
    font-family: "Montserrat", sans-serif;
    font-size: .75rem;
    font-weight: 500;
}

@media (max-width: 767px) {
    .topbar {
        height: 2rem;
        font-size: 1rem;
    }
}

/* -------------------- TOPBAR -------------------- */









/* -------------------- NAVBAR -------------------- */

.navbar {
    background-color: #003848;
}

.navbar__container {
    display: flex;
    align-items: center;
    padding-block: .25rem;
    min-height: 3.125rem;
}

.navbar__logo {
    max-width: 15.938rem;
    display: block;
}

.navbar__logo-img {
    display: block;
}

@media (min-width: 1440px) {
    .navbar__container {
        max-width: 100%;
        padding-inline: 20%;        
    }
}

@media (max-width: 767px) {
    .navbar__container {
        justify-content: center;
        min-height: 3.5rem;
    }

    .navbar__logo {
        max-width: 16.063rem;
    }
}

/* -------------------- NAVBAR -------------------- */









/* -------------------- MAIN -------------------- */

.main__container {
    padding-top: 2.3rem;
    padding-bottom: 0;
}

@media (min-width: 1440px) {
    .main__container {
        max-width: 100%;
        padding-inline: 20%;
    }
}

@media (max-width: 767px) {
    .main__container {
        padding-top: 0;
    }
}

/* -------------------- MAIN -------------------- */







/* -------------------- CONTENT -------------------- */

.content {
    max-width: 33.688rem;
    width: 100%;
    background-color: var(--white);
    padding: 1.1rem 1.4rem 1rem;
}

@media (min-width: 1440px) {
    .content {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .content {
        padding: 1rem;
        max-width: 100%;
    }
}

/* -------------------- CONTENT -------------------- */







/* -------------------- HEADER -------------------- */

.header {
    position: relative;
}

.header__title {
    font-family: var(--ff-bitter);
    line-height: 1.4;
}

.header__title {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.55rem;
}

.header__lead,
.header__author {
    font-size: .625rem;
    font-weight: 400;
    line-height: 1.1;
    font-family: var(--ff-poppins);
    margin-bottom: 1rem;
}

.header__lead {    
    color: #457584;    
}

.header__author {    
    line-height: 1.3;
}

@media (max-width: 767px) {
    .header__lead,
    .header__author {
        font-size: .75rem;
        margin-bottom: 1rem;
    }
}

/* -------------------- HEADER -------------------- */















/* -------------------- ARTICLE -------------------- */

.article {
    padding-top: 1.3rem;
}

.article p {    
    margin-bottom: 1.55rem;
}

.article p,
.article ul {
    font-weight: 500;
    color: var(--dark);
}

.article p + .title {
    margin-top: -.425rem;
}



.title {
    color: var(--black);
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-family: var(--ff-bitter);
}

@media (max-width: 767px) {
    .title {
        font-size: 1.5rem;
    }
}

.text-danger {
    color: #f00;
}

.text-italic {
    font-style: italic;
}

.article__pict-2,
.article__pict-3,
.article__pict-4 {
    margin-top: -.425rem;
}

.article__pict-3 {
    margin-bottom: 1.25rem;
}


.items p {
    margin-bottom: 1.2rem;
}

.items ul {
    padding-left: 0;
    list-style: none;
}

.items li {
    margin-bottom: 1.15rem;
}

.items li p {
    margin-top: 0;
    margin-bottom: .65rem;
}

.items li p:nth-child(2) + p {
    margin-top: 1.25rem;
}


.list {
    padding-left: 1.8rem;
}

.list-icons {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1.1rem;
}

.list-icons li:not(:last-child) {
    margin-bottom: 1.55rem;
}

.list-icons--without-gap li:not(:last-child) {
    margin-bottom: 0!important;
}

@media (max-width: 767px) {
    .article {
        padding-top: .7rem;
    }

    .article p {    
        margin-bottom: 1.75rem;
    }

    .article p br {
        display: none;
    }

    .article p + .title {
        margin-top: -.85rem;
    }

    .article__title-4 {
        padding-right: 20%;
    }

    .article p + .article__title-6 {
        margin-top: -.6rem;
    }

    .article p + .article__title-7 {
        margin-top: -.45rem;
    }

    .article p + .article__title-8 {
        margin-top: -.45rem;
        padding-right: 5%;
    }

    .article ul + .article__title-9 {
        margin-top: 1.35rem;
    }    

    .article p + .article__title-11 {
        margin-top: -.55rem;
    }

    .article p + .article__title-12 {
        margin-top: -.55rem;
    }

    .article p + .article__title-13 {
        margin-top: -.5rem;
    }

    .items p {
        margin-bottom: 1.2rem;
    }

    .list-icons li:not(:last-child) {
        margin-bottom: 1.75rem;
    }
}


.reviews {
    margin-top: -.3rem;
}

.reviews__item {
    margin-bottom: 1.15rem;
}

.reviews__img {
    display: block;
    width: 100%;
    height: auto;
}

.reviews__img--m {
    display: none;
}

@media (max-width: 767px) {
    .reviews {
        margin-top: -.5rem;
    }

    .reviews__img {
        display: none;
    }

    .reviews__img--m {
        display: block;
    }


}


.step p {
    margin-top: 0;
    margin-bottom: 1.15rem;
}

/* -------------------- ARTICLE -------------------- */







/* -------------------- SELECT AGE -------------------- */

.select-age {
    margin-top: 1.35rem;
}

.select-age,
.select-age__title {
    text-align: center;
}

.select-age__title {
    font-family: var(--ff-bitter);
    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: 0;
    }

    .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.5rem;
    box-shadow: none;
    min-height: 4.063rem;
    font-family: var(--ff-bitter);
    border-radius: .25rem;
}

@media (max-width: 767px) {
    .select-age__qualify {
        font-size: 1.5rem;
    }
}





.age__title {
    color: #000;
    text-align: center;
    font-family: var(--ff-bitter);
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
}

.age__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.age__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #000;
    height: 9.313rem;
    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: 5.313rem;
    min-width: 5.313rem;
    height: 5.313rem;
    min-height: 5.313rem;
    margin-top: .3rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.age__text {
    margin-top: .4rem;
}

@media (max-width: 767px) {
    .age__title {
        font-size: 1.25rem;
        margin-top: 1.2rem;
        margin-bottom: 1.3rem;
    }

    .age__items {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 1.4rem;
        margin-bottom: 3.75rem;
    }

    .age__item {
        font-size: 1.5rem;
        height: 11.875rem;
    }

    .age__photo {
        width: 7.375rem;
        min-width: 7.375rem;
        height: 7.375rem;
        min-height: 7.375rem;
        margin-top: .5rem;
        position: relative; 
        top: -.25rem;
    }

    .age__text {
        margin-top: 0;
    }
}
/* -------------------- SELECT AGE -------------------- */








/* -------------------- 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-bitter);
    text-align: center;
    color: var(--grey);
    font-size: .75rem;
    line-height: 1.24;
    padding-top: 8rem;
    padding-bottom: 2rem;
}

.footer p,
.footer ul,
.footer ol {
    margin-bottom: 1rem;
}

.footer__copy {
    font-size: .875rem;
    line-height: 1.45;
    margin-bottom: 2.7rem;
    margin-top: 1.25rem;
}


.footer__menu {
    font-size: .875rem;
    padding-left: 0;
    list-style: none;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__menu a {    
    color: var(--grey);
    text-decoration: none;
    white-space: nowrap;
    margin-inline: .5rem;
}

.footer__menu a:hover,
.footer__menu a:focus,
.footer__menu a:active {
    color: var(--grey);
    text-decoration: underline;
}

.footer__menu-devider {
    margin-inline: .25rem;
}

@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 -------------------- */










/* 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;
}
