/* poppins-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-800 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v24-latin-800.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --font-primary: 'Poppins', sans-serif;
    --text: black;
}

/*
* Style de base html
*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;

    &:has(.c-productMain) {
        background: #F6F7F9;
    }

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--text);
}

p {
    line-height: 1.4;
}

a {
    color: var(--text);

    &:hover {
        color: var(--text);
        text-decoration: none;
    }

    &:active {}

    &:focus {}

    &:visited {}
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;

    li {
        margin: 0;
    }
}

img {
    display: inline-block;
    max-width: 100%;
    font-style: italic;
    height: auto;
}

hr {
    background: gray;
    border: none;
    height: 1px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;

    th {
        border: 1px solid gray;
        padding: 0.2em;
        text-align: left;
    }

    td {
        border: 1px solid gray;
        padding: 0.2em;
    }
}

sup,
sub {
    vertical-align: baseline;
    position: relative;
    top: -0.4em;
}

sub {
    top: 0.4em;
}



.c-hp {
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.logo {
    width: 47.2rem;
    height: 11.6rem;
}

.c-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.6rem;
}

.c-nav__link {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.c-nav__link:hover {
    text-decoration: underline;
}

.u-block {
    display: block !important;
}

.u-none {
    display: none !important;
}

@media only screen and (max-width: 1024px) {
    .c-logo_container {
        width: 11.6rem;
        height: 47.2rem;

        flex-shrink: 0;
    }

    .c-logo {
        transform: rotate(-90deg) translate(-100%, 0);
        transform-origin: top left;
        position: absolute;
        max-width: unset;
        width: auto;
        max-width: calc(100vh - 8rem);
    }

    .c-hp {
        padding: 4rem 1.6rem;
        gap: 4.8rem;
        align-items: flex-start;
    }

    .c-nav__list {
        margin-top: 2.6rem;
        flex-direction: column;
        gap: 5.5rem;
        align-items: flex-start;
    }

    .u-block\@md {
        display: block !important;
    }

    .u-none\@md {
        display: none !important;
    }
}