@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*! based over the work of:
 * normalize.css v8.0.1 | MIT license | github.com/necolas/normalize.css
 * bootstrap reboot.scss | MIT license | github.com/twbs/bootstrap/blob/v4-dev/scss/_reboot.scss
 */

html {
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0px;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}
summary {
    display: list-item;
    cursor: pointer;
}
ol,
ul {
    margin-top: 0px;
    margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0px;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}
address {
    margin-bottom: 0px;
    font-style: inherit;
    line-height: inherit;
}
blockquote {
    margin: 0px;
}
b, strong {
    font-weight: bolder;
}
small {
    font-size: 80%;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0px;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
    font-weight:300;
}
a {
    background-color: transparent;
}
img {
    border-style: none;
}
[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0px !important;
}
template {
    display: none;
}
[hidden] {
    display: none !important;
}
output {
    display: inline-block;
}

button {
    border:none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0px;
    padding: 0px;
    overflow: visible;
    text-transform: none;
    -webkit-appearance: button;
    border-radius: 0px;
}

button:not(:disabled) {
    cursor: pointer;
}

button:focus:not(:focus-visible) {
    outline: 0px;
    -webkit-tap-highlight-color: transparent;
}
figure {
    margin: 0px;
}

/*  */

* {
    box-sizing:border-box;
}

li {
    list-style:none;
    width:fit-content;
}

ul, p {
    margin:0px;
    padding:0px;
}

/* FONTS */

@font-face {
    font-family: "Gilroy";
    src: url("assets/fonts/Gilroy-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("assets/fonts/Gilroy-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("assets/fonts/Gilroy-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("assets/fonts/Gilroy-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("assets/fonts/Gilroy-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("assets/fonts/Gilroy-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("assets/fonts/Gilroy-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* COULEURS */

* {
    --primary: #005e9d;
    --secondary: #e62428;
    font-family: "Poppins", serif;
    font-style: normal;

}


/*  BUTTONS */

.btn-primary {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none;
    padding: 12px 20px 10px 20px;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-primary::after {
    content: "";
    background-image: url("assets/images/icons/arrow-right.svg");
    height: 17px;
    width: 11px;
    margin-left: 10px;
    margin-top: -4px;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    transform-origin: left;
}

.btn-primary:hover {
    color: var(--primary);
    background-color: white;
}

.btn-primary:hover::after {
    background-image: url("assets/images/icons/arrow-right-red.svg");
}

.btn-secondary {
    position: absolute;
    top:70%;
    left:76%;
    border: none;
    padding: 12px 20px 10px 20px;
    background-color: var(--secondary);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media(max-width: 1000px){
    .btn-secondary {
        padding: 6px 15px;
        top: 96%;
        left: 30%;
        width: 40%;
        font-size: 13px !important;
    }
}

@media (max-width: 600px){
    .btn-secondary {
        top: 101% !important;
        left: 30% !important;
        width: 40% !important;
    }
}


.btn-secondary:hover {
    color: var(--secondary);
    background-color: white;
}

.btn-secondary:hover::after {
    background-image: url("assets/images/icons/arrow-right.svg");
}

/*  IF DISABLED */

.btn-primary[disabled],
.btn-secondary[disabled] {
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: unset;
    color: rgba(255, 255, 255, 0.75);
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary[disabled]::after,
.btn-secondary[disabled]::after {
    opacity: 0.75;
    background-image: url("assets/images/icons/arrow-right.svg");
}

/* NAV LINK */

.nav-elem {
    display: inline-block;
    position: relative;
}

.nav-elem::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: black;
    transform-origin: bottom right;
    transition: transform 0.4s ease-out;
}

.nav-elem:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* UTILS */

.text-exposant {
    font-size: 14px;
    font-weight: 300;
}

.body-no-scroll {
    overflow: hidden;
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 15px 8%;
    background-color: #fff;
    top: 0;
    position: sticky;
    z-index: 5;
}

.header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    transition: display 0.3s ease-in-out;
}

.logo {
    width: 80px;
}

.nav {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #ffffff;
    box-shadow: 5px 10px 15px -3px rgba(0, 0, 0, 0.3);
    height: 100%;
    transition: opacity 0.3s ease-in-out, min-width 0.3s ease-in-out;
}

.nav-elements {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 128px;
}

.nav-elem {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: 700;
}

.burger-container {
    background-color: transparent;
    height: 24px;
}

.burger {
    width: 20px;
    height: 2px;
    background-color: black;
    border-radius: 50px;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.burger::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: black;
    border-radius: 50px;
    transform: translateY(0px);
    transition: transform 0.3s ease-in-out, opacity 0.1s ease-in-out;
}

.burger::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 20px;
    height: 2px;
    background-color: black;
    border-radius: 50px;
    transition: transform 0.3s ease-in-out, bottom 0.3s ease-in-out;
}

/* BURGER OPEN - ajout de la classe burger-opened au header */

.burger-opened .nav {
    pointer-events: all;
    opacity: 1;
}

.header-left {
    z-index: 3;
}

.burger-opened .burger {
    transform: rotate(45deg);
}

.burger-opened .burger::before {
    transform: rotate(-45deg) translateY(-3px);
    opacity: 0;
}

.burger-opened .burger::after {
    transform: rotate(-90deg);
    bottom: 0;
}

/* FLASH BANNER */

.flashy-banner {

    background-color: var(--secondary);
    padding: 12px;
    color: white;
    text-transform: uppercase;
    text-align: center;
    font-size: 13px;
    position: sticky;
    top: 71px;
    z-index: 3;
}

.strong {
    font-weight: 700;
}

/* UPCOMING OFFER */

.upcoming-offer {
    position: fixed;
    color: white;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: none; /* =========== ICI =========== */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 11;
    padding: 0px 8%;
}

.upcoming-offer_title {
    font-size: 64px;
    text-transform: uppercase;
    text-align: center;
}

.upcoming-offer_text {
    font-size: 24px;
    text-align: center;
}

/* POP-IN PRODUCTS */

.products_pop-in {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.products_pop-in .container {
    position: relative;
    background-color: white;
    color: #000;
    width: 84%;
    height: fit-content;
    max-height: 80%;
    border-radius: 25px 25px 0px 25px;
    overflow-y: scroll;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

.products_pop-in .container::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.container-pop-in_layout {
    padding: 40px;
}

.products_pop-in .container .pop-in_close-btn {
    position: sticky;
    top: 20px;
    right: 20px;
    float: right;
    height: 24px;
    width: 24px;
    background-color: transparent;
    transition: transform 0.3s ease-in-out;
}

.products_pop-in .container .pop-in_close-btn .close-btn {
    height: 2px;
    width: 18px;
    background-color: #000;
    border-radius: 50px;
    transform: rotate(45deg);
    position: relative;
}

.products_pop-in .container .pop-in_close-btn .close-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 18px;
    background-color: #000;
    border-radius: 50px;
    transform: rotate(-90deg);
}

.pop-in_close-btn:hover {
    transform: scale(1.2);
}

.products_pop-in .products_pop-in-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}

.products_pop-in .products_pop-in-desc {
    font-size: 14px;
    opacity: 0.5;
    text-align: center;
    font-weight: 400;
    margin-top: 12px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.pop-in-active {
    opacity: 1;
    pointer-events: all;
}

.offer-btn {

    color: white;
    border-radius: 25px 25px 0px 25px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.offer-btn:hover {
    background-color: white!important;
    box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.3);
}



.offer-btn{
    background-color: var(--primary);
    display: none;
}
.offer-btn:hover{
    color: var(--primary);
}


offer-btn.-span {
    display: inline-block;
}

.offer-btn-span-title {
    margin-bottom: 5px;
}

.products_pop-in-btns-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/*  HERO  */

.hero {
    position: relative;
    background-image: url("assets/images/1963_mobile_12_03.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 1500 / 1800;
    padding: 0px 8%;
    border-radius: 25px 25px 0px 25px;
    margin: 15px 20px;
}




/* GRILLE DE PRODUITS */

.offer-card {
    background-image: url(assets/images/1963_offer-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-style: solid;
    border-width: 0 1px 0 0;
    border-image: linear-gradient(180deg, #4279ab 0%, #4279ab 0%) 1;
}

.offer-card-title {
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 30px;
    margin-top: 20px;
    line-height: 40px;
}

.offer-card-title.pac-title {
    line-height: 80px !important;
}

.offer-card-refund {
    width: 90%;
    margin-top: 20px;
    margin-left: 5%;
    margin-right: 5%;
    background-color: white;
}

.offer-card-refund img {
    width: 100%;
}


.offer-card-products {
    width: 100%;
}
.offer-card-products img {
    width: 100%;
}


.offer-card-rules {
    width: 100%;
    background-color: var(--secondary);
    padding-left: 10%;
    padding-right: 10%;
}

.offer-card-rules img {
    width: 100%;
}

.card-footer {
    width: 100%;
    background-color: white;
    height: 100px;
    /*z-index: 9999;*/
    margin-top: 20px;
    border-bottom: solid var(--primary) 1px;
    border-left: solid var(--primary) 1px;
    border-radius: 0 0 0 25px;
}

.card-footer div, .card-footer span, .card-footer em, .card-footer p {
    color: var(--secondary);
}

.offer-card[data-counter=""] .card-footer::before {
    content: "";
    width: 40px;
    height: 40px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-bottom: 5px solid white;
    display: block;
    border-radius: 30px;
    box-sizing: border-box;
    animation: placeholder-spinner 1s linear 0s both infinite running;
    border: 5px solid rgba(255, 0, 0, 0.2);
    border-bottom: 5px solid var(--secondary);
    margin: 0 auto;
    margin-top: 10px;
}



@media (min-width: 1300px) {
    .special {
        border-image: linear-gradient(180deg, white 20%, #4279ab 20%) 1;
    }
}

.offer-card .imgfooter{
    width:100%;
    margin-top: -7em;
    z-index:-1
}


.offer-card[data-counter=""] .counter,
.offer-card[data-counter="0"] .counter,
.finished-offer-msg {
    text-align: center;
    display: none;
}
.offer-card[data-counter="0"] .finished-offer-msg {
    display: block;
}

.offer-card[data-counter="0"]::after,
.offer-card[data-counter=""]::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: white;
    opacity: 0.75;
    border-radius: 25px 0px 0px 25px;
}



.offer-card[data-counter="0"] .finished-offer-msg {
    display: block;
}

.card-header {
}

.offer-card[data-counter=""] footer::before {
    content: "";
    width: 40px;
    height: 40px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-bottom: 5px solid white;
    display: block;
    border-radius: 30px;
    box-sizing: border-box;
    animation: placeholder-spinner 1s linear 0s both infinite running;
}

.offer-card[data-counter=""] footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes placeholder-spinner {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(360deg);
    }
}

/* PRODUCTS */

.products {
    padding: 40px 5%;
    margin-bottom: 2px;
    background-size: cover;
}

.products-title {
    color: #4279ab;
    font-weight: 700!important;
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
}

.products-desc {
    color: #4279ab;
    font-weight: 500;
    padding: 12px 0px;
    text-align: center;
    margin-bottom: 48px;
    font-size: 18px;
}

.products-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.offer-card {
    background-size:cover!important;
    background-repeat: no-repeat!important;
    background-position: center 70%!important;
    border-radius: 25px 0px 0px 25px;
    color: #2f52a0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: space-between;
    max-width: 500px;
}

.offer-card_banner {
    background-color: #f90000;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px 0px;
    padding-top: 12px;
    border-radius: 25px 25px 0px 0px;
}

.offer-card_title {
    line-height: 30px;
    font-weight: extra-bold;
    text-transform: uppercase;
    font-size: 50px;
    font-style: italic;
    text-align: left;
    color:#f28a3d;

}

.offer-card_title span {

    color:#4279ab;
    font-size: 23px;

}

.more {
    font-weight: 900!important;
    color:#f28a3d;
}



.bigprice {
    font-size: 70px;
    margin-top:25px;
}


.endgame {
    display: none;
}


.endgame .products-title {
    font-size: 3em;

}



.endgame .products-desc {
    font-size: 2em;

}


.offer-card_description{
    color:#4279ab;
    font-weight: 600;
    text-align: left;
    font-size: 16px;
    line-height: 18px;
    width:100%;
    text-transform: uppercase;
    padding:10px 20px 25px 0px;
}


.offer-card_footer {
    background-color: var(--primary);
    width: 100%;
    padding: 20px;

    border-bottom-left-radius: 25px;
}

.counter {
    /*display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;*/
    /*text-align: center;*/
    font-size: 30px;
    padding-left: 5%;
    font-weight: 600;
}

[data-numbers-container] {
    font-size: 26px;
    font-weight: 700;
    width: fit-content;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.digit {
    color:white;
    background-color: var(--secondary);
    width: fit-content;
    border-radius: 5px;
    height: 50px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.counter-desc {
    color: white;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}*/

.offer-card_image {
  width:100%;
    max-height: 270px;
    object-fit: contain;
}

.offerspecial2 {
    max-height: 370px;
}



.eligibles-products {
    color:black;
    font-size:13px;
    font-weight: 500;
    line-height: 12px;
    text-transform: none;
}

.finished-offer-msg {
    padding: 10px 0px;
}

.finished-offer-msg-title {
    font-size: 32px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    font-style: normal;
    text-align: center;
}

.finished-offer-msg-p {
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.btn-container-grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTACT */

.contact {
    background:#4279ab;
    display: flex;
    flex-direction: column;
    padding: 48px 8%;
    color: white;
    gap: 12px;
}

.contact-img {
    height: 50px;
}

.contact-title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.contact-details {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.contact .phone-number {
    font-size: 36px;
    line-height: 62px;
    font-weight: 700;
    width: fit-content;
}

.contact-availabilities {
    position: relative;
    font-size: 19px;
    font-weight: 500;
    text-align: center;
}

.phone-number-ast {
    content: "*Prix d'un appel local";
    width: 100%;
    font-weight: 300;
    font-style: italic;
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
}

.contact-details-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-bottom: 1px solid white;
}

.phone-number-ref {
    text-decoration: none;
    color: white;
    font-size: 36px;
}

/* DETAILS DES EXPOSANTS */

.additional-infos {
    padding: 36px 8%;
    font-size: 12px;
    line-height: 20px;
}

/*  FOOTER  */

.footer {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #676767;
}

.footer-top {
    text-align: center;
    margin: 48px 8%;
}

.footer .logo {
    width: 100px;
    margin-bottom: 18px;
}

.social-networks-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
}

.social-networks-list a {
    min-height: 24px;
    min-width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-item {
    height: 15px;
}

.footer-bottom {
    background-color: #f5f5f5;
    padding: 12px 8%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-link {
    color: #757474;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease-in-out;
}

.footer-p {
    color: #757474;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease-in-out;
}

.footer-link:hover {
    color: black;
}

.social-network-item {
    transition: transform 0.3s ease-in-out;
}

.social-network-item:hover {
    transform: scale(1.2);
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* UTILS  */

.pt-20 {
    padding-top: 20px;
}



/* DESKTOP */

@media screen and (min-width: 768px) {
    /*  HEADER  */
    .logo {
        width: 150px;
    }
    .header {
        padding: 0px 10%;
        height: 85px;
    }
    .nav-elements {
        padding-left: 90px;
        padding-right: 30px;
        padding-top: 128px;
    }
    .nav {
        min-width: 50%;
    }

    /*  FLASHY BANNER  */
    .flashy-banner {
        top: 85px;
    }

    /* GRID */

    .products_pop-in .container {
        height: fit-content;
        max-height: 70%;
        width: 60%;
    }
    .container-pop-in_layout {
        padding: 40px 80px;
    }
    .products_pop-in .products_pop-in-title {
        font-size: 24px;
    }

    .products_pop-in .products_pop-in-desc {
        font-size: 20px;
    }

    .products-container {
        display: grid;
        grid-template-columns: 300px 300px;
        gap: 48px 20px;
        justify-content: center;
        align-items: unset;
    }

    /*  CONTACT  */

    .contact {
        flex-direction: row;
        align-items: center;
        padding: 48px 10%;
        gap: 24px;
    }
    .contact-img {
        height: 82px;
    }
    .contact-title {
        font-size: 24px;
        text-align: left;
    }
    .contact-details {
        flex-direction: row;
        gap: 18px;
        margin-top: 12px;
    }
    .contact-availabilities {
        text-align: left;
    }
    .phone-number-ast {
        text-align: left;
    }
    .contact .phone-number {
        line-height: unset;
        text-align: right;
    }
    .contact-details-left {
        padding-right: 19px;
        border-bottom: none;
        border-right: 1px solid white;
    }
    .contact .separator {
        display: block;
        width: 1px;
        background-color: white;
    }

    /* FOOTER */

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 40px;
    }
    .footer-bottom-right {
        flex-direction: row;
    }
}

@media screen and (min-width: 1000px) {
    .burger-opened .nav {
        min-width: 40%;
    }
    .nav-elements {
        padding-left: 120px;
    }
}

@media screen and (min-width: 1300px) {
    .burger-container {
        display: none;
    }
    .nav {
        position: static;
        pointer-events: all;
        opacity: 1;
        box-shadow: none;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-elements {
        padding: 0px;
        display: flex;
        flex-direction: row;
        gap: 40px;
        justify-content: center;
    }
    .contact {
        padding: 48px 25%;
    }


    .hero-content {
        justify-content: space-between;
    }


    .products-container {
        grid-template-columns: 600px 600px;
    }
}

@media screen and (min-width: 1000px) {
    .hero {
        background-image: url("assets/images/1963_slider_12_03.jpg");
        aspect-ratio: 2720 / 850;
    }
}
.max{
    width: 100%;
}

.egal{
    width:70px;
    z-index: 1;
    margin-left:-60px;
    margin-top:60px;
}
.egalarticle {
    z-index: 1;
    background: white;
}

@media (max-width: 800px) {
    .egal {
        width: 110px;
        z-index: 1;
        margin-left: 0px;
        margin-top: -20px;
        margin-bottom: -20px;

    }

}


.specialimage {
    margin-top:80px;
}

@media (max-width: 1000px){



    .endgame .products-title {
        font-size: 2em;

    }



    .endgame .products-desc {
        font-size: 1em;

    }

    .special3 {
        margin-top:2em
    }

    .offer-card .imgfooter{
        margin-top: -6em;
    }

    .offer-card_image {
        height:330px;
    }

    .specialimage {
        margin-top: 7em;
    }

    .offer-card_description{
        font-size: 23px;
        line-height: 26px;
    }

}

@media (min-width: 800px) and (max-width: 1300px) {
    .egalarticle {
        display: none;
    }

    .products-container {
        display: grid;
        grid-template-columns: 400px 400px !important;
    }

}


.limite {
    width:100%;
    padding: 1em 1em 1em 0;
}

#aide1 {
    text-align: justify;
}