:root {
    /* fonts */
    --sweet-medium: "Sweet medium";
    --sweet-bold: "Sweet bold";
    --sweet-light: "Sweet light";
    --sweet-regular: "Sweet regular";
    --sweet-hairline: "Sweet hairline";
    --cinzel: "Cinzel", serif;
    /* fonts */

    /* colors */
    --black: #000;
    --white: #fff;
    --primary: #bfb182;
    --secondary: #e3ce87;
    --text-color: #313131;
    --background: #f8f8f8;
    --dark-gray: #7c7c7c;
    --dark-green: #548c2b
    /* colors */
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: var(--sweet-medium);
    max-width: 100vw;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
    padding: 0;
    margin: 0;
}
a,
a:hover,
a:visited {
    text-decoration: none;
}
ul,
ol {
    list-style-type: none;
}
.d-flex- {
    display: flex;
}
.transition- {
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}
.row- {
    justify-content: space-between;
    flex-wrap: wrap;
}
.col-row-2 {
    width: calc(50% - 30px);
}
.container_ {
    max-width: 1200px;
    padding: 0px 35px;
    margin: 40px auto;
    box-sizing: border-box;
    width: 100%;
}
.mr-b-80 {
    margin-bottom: 80px;
}
.loader-over {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.loader-over.hide-over {
    transform: translateX(-100%);
    opacity: 0;
}
.loader-over img {
    width: 320px;
    animation: bounce 1.5s ease-in forwards;
    -webkit-animation: bounce 1.5s ease-in forwards;
    -moz-animation: bounce 1.5s ease-in forwards;
    -o-animation: bounce 1.5s ease-in forwards;
    opacity: 1;
}
@keyframes bounce {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes bounce {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.btn_ {
    border: 0;
    outline: none;
    background-color: var(--primary);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: var(--sweet-bold);
    cursor: pointer;
}

/* header */

header {
    background-color: var(--black);
    padding: 15px 35px;
}
header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
header nav .panier {
    position: absolute;
    right: 0px;
    z-index: 99;
    font-size: 12px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    -webkit-transition: color 500ms ease;
    -moz-transition: color 500ms ease;
    -ms-transition: color 500ms ease;
    -o-transition: color 500ms ease;
    transition: color 500ms ease;
}
header nav .panier > svg {
    position: relative;
    bottom: 3px;
}
header nav > ul > li .brand-logo img {
    width: 130px;
}

/* header */

/* body */
#main {
    opacity: 0;
    -webkit-transition: opacity 1000ms ease;
    -moz-transition: opacity 1000ms ease;
    -ms-transition: opacity 1000ms ease;
    -o-transition: opacity 1000ms ease;
    transition: opacity 1000ms ease;
}
.intro {
    font-size: 14px;
    font-family: var(--sweet-light);
    color: var(--text-color);
    max-width: 780px;
    margin: auto;
    line-height: 26px;
    text-align: center;
}
.intro p:not(:last-child) {
    margin-bottom: 20px;
}
.contact-links > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    margin: auto;
    width: max-content;
}
.contact-links > ul > li {
    width: 100%;
}
.contact-links > ul > li#contact-links {
    background-color: #fafafa;
    display: none;
}

.contact-links > ul > li hr {
    margin: 0 auto;
    width: 90%;
}
.contact-links > ul > li > a {
    color: #868686;
    font-size: 12px;
    padding-bottom: 2px;
    font-family: var(--sweet-bold);
    -webkit-transition: color 400ms ease;
    -moz-transition: color 400ms ease;
    -ms-transition: color 400ms ease;
    -o-transition: color 400ms ease;
    transition: color 400ms ease;
    display: block;
    padding: 10px 15px;
    text-align: center;
    text-transform: uppercase;
}
.contact-links > ul > li > a.number-- {
    font-size: 14px;
}
.packs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.packs .pack {
    width: calc(33.33% - 45px);
    background-color: var(--background);
    display: flex;
    flex-direction: column;
}

.packs .pack .pack-type {
    background-color: var(--black);
    padding: 18px 10px;
    text-align: center;
    font-family: var(--sweet-medium);
}
.packs .pack .pack-type .pack-title {
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    display: block;
}

.packs .pack .pack-type .pack-sub-title {
    color: var(--primary);
    font-size: 10px;
    text-transform: uppercase;
}

.packs .pack .body- {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.packs .pack .body- .pack-infos {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.packs .pack .body- .pack-infos img,
.packs .pack .footer- .pack-footer-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.packs .pack .header .pack-name {
    font-family: var(--sweet-bold);
    font-size: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 10px;
    max-width: 100%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.packs .pack .body- .pack-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 25px 30px;
    flex: 1;
}
.packs .pack .body- .row-text-number,
.packs .pack .body- .parcing-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0 12px;
    color: var(--primary);
    font-family: var(--cinzel);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.packs .pack .body- .number-style {
    font-size: 44px;
}
.packs .pack .body- .list- li {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--dark-gray);
    display: flex;
    gap: 0 6px;
}
.packs .pack .body- .list- li:not(:first-child) {
    margin-top: 15px;
}
.packs .pack .body- .list- li > span {
    color: var(--primary);
}

.packs .pack .body- .parcing-row {
    padding: 0 10px;
    justify-content: center;
    align-items: baseline;
    gap: 0;
    margin-bottom: 0px;
}

.packs .pack .body- .parcing-row sup,
.packs .pack .body- .parcing-row .duration {
    color: var(--dark-gray);
    font-family: var(--sweet-bold);
    text-transform: uppercase;
    font-size: 13px;
}
.packs .pack .body- .parcing-row .duration {
    font-size: 18px;
}
.back-slash {
    font-size: 36px;
    font-family: var(--sweet-hairline);
}
.sm-text {
    text-transform: uppercase;
    font-size: 9px;
    color: var(--dark-gray);
    font-family: var(--sweet-light);
    text-align: center;
    margin-bottom: 20px;
}
.packs .pack .footer- {
    position: relative;
}
.packs .pack .footer- .pack-footer-picture {
    width: 100%;
    height: 125px;
    background-color: var(--white);
}
.packs .pack .footer- .order-btn {
    color: var(--secondary);
    text-transform: uppercase;
    font-family: var(--sweet-bold);
    background-color: var(--black);
    border-bottom: 2px solid var(--primary);
    font-size: 19px;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* .packs .pack .footer- .order-btn::before {
    content: "";
    position: absolute;
    background-color: var(--primary);
    z-index: 9;
    height: 100%;
    width: 0%;
    top: 0;
    left: 0;
    overflow: hidden;
    box-sizing: border-box;
    opacity: 0;
} */
.packs .pack .footer- .order-btn::before,
.packs .pack .footer- .order-btn > span,
.order-by-group .order-by-group-btns .order-by-btn > span,
.order-by-group .order-by-btn::before {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.packs .pack .footer- .order-btn .href-after {
    font-size: 9px;
    font-family: var(--sweet-medium);
    display: block;
    margin-top: 5px;
}

.order-by-group .order-by-group-btns{
  display: none;
}
.order-by-group .order-by-group-btns > div{
    display: flex;
    flex-direction: column;
    gap: 2px 0;
}
.order-by-group .order-by-group-btns .order-by-btn {
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--sweet-bold);
    background-color: var(--primary);
    font-size: 15px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow:hidden;
}
.order-by-group .order-by-btn::before {
    content: "\f232";
    position: absolute;
    background-color: transparent;
    z-index: 9;
    height: 100%;
    top: 0;
    right: 100%;
    overflow: hidden;
    box-sizing: border-box;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    font-size: 30px;
    font-family: 'fontAwesome';
}
.order-by-group .order-by-btn.by-whatsapp {
    background-color: #59bf3b;
}
.order-by-group .order-by-btn.by-email::before {
    content: "\f0e0";
    font-size: 25px;
}

.packs .pack .save-text {
    font-size: 18px;
    font-family: var(--sweet-bold);
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    padding: 7px 10px;
    background-color: var(--dark-green);
}
/* body */

/* Footer */
footer {
    background-color: var(--black);
    padding: 10px 0;
    font-size: 14px;
    color: var(--white);
    font-family: var(--sweet-light);
    line-height: 25px;
}

footer .brand-footer-logo {
    margin-bottom: 30px;
}

footer .brand-footer-logo img {
    width: 210px;
}

footer .social-links {
    margin: 30px 0;
}
footer .social-links ul {
    gap: 0 15px;
}
footer .social-links ul li > a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #272727;
    color: #b5b5b5;
    font-size: 18px;
}

footer .copy-right {
    font-size: 16px;
    font-family: var(--sweet-light);
}
footer .copy-right .logo-text {
    font-family: var(--sweet-medium);
}
footer .contacts {
    font-size: 15px;
    font-family: var(--sweet-light);
}
footer .contacts > p.medium-text {
    font-family: var(--sweet-medium);
    font-size: 16px;
}
footer .contacts > p > span {
    display: block;
}
footer .contacts > p:not(:last-child) {
    margin-bottom: 20px;
}
footer .description {
    max-width: 450px;
}

/* Footer */
