/* -------------------- 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: rgb(47, 138, 228);
    --green: #00c7b1;
    --green2: #11edd5;
    --red: #D0011C;
}

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






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

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

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;
    max-width: 55.75rem;
    width: 100%;
    margin-inline: auto;
}

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

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








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

.navbar {
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.navbar__container {
    display: flex;
    flex-direction: column;
    padding-block: .25rem;
}

.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: .7rem;
    }

    .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__container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--light-gray);
    transform: translateX(-50%);
}

.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: .45rem;
}

.header__title {
    color: var(--dark);
    font-size: 2.125rem;
    line-height: 1.1;
    max-width: 38.438rem;
    margin: 0 auto;
    font-style: italic;
}

@media (min-width: 768px) {
    .header__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .header__container {
        padding-bottom: 1rem;
    }

    .header__container::after {
        width: calc(100% - (.625rem * 2));
    }

    .header__label {
        font-size: 12px;
        margin-bottom: .75rem;
    }
}

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







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

.article {
    max-width: 54rem;
    margin-inline: auto;
}

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

.article p:first-child {
    margin-top: .5rem;
}

.article p+ul {
    margin-top: -.8rem;
}

.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__pict--3 {
    max-width: 37.75rem;
    width: 100%;
    margin-inline: auto;
    margin-bottom: 1.5rem;
}

.article__pict--3 img {
    display: block;
}

.article__title {
    font-family: var(--ff-domine);
    color: var(--dark);
    font-size: 1.875rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

h3.article__title {
    font-size: 1.5rem;
    line-height: 1.125;
    margin-bottom: 1.4rem;
}

h3.article__title,
.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,
    .article__list {
        margin-bottom: 1.5rem;
    }

    .article__pict--1 {
        padding-bottom: 63%;
    }

    .article__pict--2 {
        padding-bottom: 0;
        height: auto;
    }

    .article__pict--3 {
        max-width: 100%;
    }

    .article__img-desktop {
        display: none !important;
    }

    .article__img-mobile {
        display: block !important;
    }

    .article__list {
        padding-left: 1.7rem;
    }

    .article__title {
        font-size: 1.375rem;
        line-height: 1.6;
        margin-top: 1.5rem;
        margin-bottom: 1.3rem;
    }

    h2.article__title {
        font-size: 1.75rem;
        line-height: 1.6;
        letter-spacing: -.01rem;
    }

    h3.article__title {
        margin-bottom: 1.7rem;
        margin-top: 1.6rem;
    }

    .article__catalog p {
        margin-top: 0;
        margin-bottom: .9rem;
    }

    .article__icon-check {
        width: 24px;
        height: 24px;
        display: inline-flex;
        align-items: center;
        font-size: 1.05rem;
        position: relative;
        top: -.15rem;
    }

    .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: .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 -------------------- */








/* -------------------- 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;
    text-decoration: none;
}

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



.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;

    }

}




.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;

    }

}



.dtpcnt {
    opacity: 0;
}