/*
	Theme Name: Renou
	Theme URI: etienneetienne.com
	Description: WordPress Theme
	Version: 1
	Author: Edouard Corfu
	Author URI: etienneetienne.com
*/
/*------------------------------------*\
	SMOOTH LOADING
\*------------------------------------*/
html body .page-loading {
    content: '';
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

html body:not(.loading) .page-loading {
    display: none !important;
}

html body.loading #page {
    opacity: 0;
}

html body #page {
    opacity: 1;
    min-height: 100vh;
    transition: opacity 0.75s cubic-bezier(.19, 1, .22, 1);
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
    font-family: 'sweet_sans_probold';
    src: url('fonts/sweetsanspro-bold-webfont.woff2') format('woff2'),
        url('fonts/sweetsanspro-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'sweet_sans_proregular';
    src: url('fonts/sweetsanspro-regular-webfont.woff2') format('woff2'),
        url('fonts/sweetsanspro-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'sweet_sans_prothin';
    src: url('fonts/sweetsanspro-thin-webfont.woff2') format('woff2'),
        url('fonts/sweetsanspro-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'sun_kissedregular';
    src: url('fonts/sunkissed-regular-webfont.woff2') format('woff2'),
        url('fonts/sunkissed-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html,
body {
    margin: 0;
}

body {
    font-family: 'sweet_sans_proregular';
    font-weight: normal;
}

.bg-black {
    background: #000 !important;
    color: #fff !important;
}

.text-dark {
    color: #000 !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'sweet_sans_probold';
    font-weight: normal;
}


strong,
.strong {
    font-family: 'sweet_sans_probold';
    font-weight: normal;
}

.font-light {
    font-family: 'sweet_sans_prothin';
    font-weight: normal;
}

.cursive {
    font-family: 'sun_kissedregular';
    font-weight: normal;

}

a img {
    border: 0px;
}

a {
    transition: all 0.5s ease;
    text-decoration: none;
    color: #c68d3a;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a.underline {
    text-decoration: underline;
}

.svg-icon,
.bi {
    width: 1em;
    height: 1em;
}

.svg-icon-lg,
.bi-lg {
    width: 1.5em;
    height: 1.5em;
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
    fill: currentColor;
}

.svg-icon circle {
    stroke: currentColor;
    stroke-width: 1;
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
    fill: currentColor;
}


.has-text-jaune-color,
.text-jaune {
    color: #c68d3a;
}

.has-text-jaune-background-color,
.bg-jaune {
    background-color: #c68d3a;
}

.bg-black .text-dark:not(.add_to_cart_button) {
    color: #fff !important;
}

.bg-triangles {
    background-image: url(img/bg-triangles.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
}

.bg-kraft {
    background-image: url(img/kraft.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    /*background-attachment: fixed;*/
}

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

.sticky #header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.hamburger {
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    overflow: visible;
    height: 22px;
}


.hamburger-box {
    width: 30px;
    height: 22px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger:hover .hamburger-inner,
.hamburger:hover .hamburger-inner::before,
.hamburger:hover .hamburger-inner::after {
    background-color: #fff;
}

/*.hamburger-inner::before,*/
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--elastic .hamburger-inner {
    top: 6px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
    top: 10px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(135deg);
    transition-delay: 0.075s;
    top: 2px;
}

.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s;
    top: 20px;
}

#mainnav {
    position: fixed;
    top: 225.7px;
    left: 0;
    width: 100%;
    height: calc(100% - 225.7px);
    background: #000;
    z-index: 999;
    transform: translate3d(0, 0, 0);
    transition: transform 0.5s cubic-bezier(.19, 1, .22, 1);
    display: none;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
}

html body.menu-active #mainnav {
    display: block;
}

html body.menu-active {
    overflow: hidden !important;
}

#mainnav a {
    color: #fff;
    font-size: 1.4rem;
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
}

#mainnav .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 0rem;
}

#mainnav ul li ul li a {
    font-size: 1rem;
}

#mainnav a.small {
    font-size: 1rem;
}

#mainnav .active a,
#mainnav a:hover {
    color: #c68d3a;

}

.cart-content-count {
    background-color: #c68d3a;
    color: #000;
    position: absolute;
    right: -4px;
    bottom: -4px;
    font-size: .8rem;
    width: 16px;
    height: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
}

#searchtrigger {
    cursor: pointer;
}

#searchbox {
    background: #000;
    transition: all 700ms ease;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.search-active #searchbox {
    transition: height 500ms cubic-bezier(0, 0.5, 0.2, 1.4);
    height: 142px;
    opacity: 1;
}

#searchbox .form-control {
    border: none;
    background: none;
    font-size: 2.5rem;
    border-bottom: 1px solid #fff;
    background: #fff;
    height: 3rem;
    padding: 0;
    border-radius: 0;
    color: #000;
    flex: 1;
}

#searchbox .btn {
    color: #fff;
    border: none;
    background: none;
}

#searchbox .btn i {
    font-size: 2.5rem;
}


/*------------------------------------*\
    HOMEPAGE
\*------------------------------------*/

@keyframes anim-dash {
    0% {
        stroke-dasharray: 0;
    }

    100% {
        stroke-dasharray: 2000;
    }
}

@-webkit-keyframes anim-dash {
    0% {
        stroke-dasharray: 0;
    }

    100% {
        stroke-dasharray: 2000;
    }
}

#logoshape {
    display: block;
    width: 100%;
}

#logoshape .st0 {
    fill: #000;
    stroke: #c68d3a;
    stroke-width: 3;
    stroke-linecap: square;
    stroke-linejoin: bevel;
    stroke-miterlimit: 10;
    stroke-dasharray: 0;
    transition: fill .5s ease;
}

/*
body:not(.loading) #logoshape .st0 {
    animation: anim-dash 3s forwards;
    animation-delay: .2s;
}
*/
#logoshape .st0:hover {
    fill: #c68d3a;
}

#home_categories {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
}

#home_categories span {
    position: absolute;
    font-size: 1rem;
    pointer-events: none;
}

/*
#home_categories a:hover {
    color: #c68d3a !important;
}
*/
#home_categories #coffrets {
    left: 7%;
    top: 42.6%;
    max-width: 150px;
}

#home_categories #mac {
    left: 23%;
    top: 54%;
}

#home_categories #tablettes {
    left: 41.2%;
    top: 25%;
}

#home_categories #confiseries {
    left: 43%;
    top: 56%;
}

#home_categories #grignotage {
        left: 62%;
        top: 65%;
        max-width: 160px;
    }

#home_categories #biscuiterie {
    left: 81%;
    top: 53%;
}


.carousel-caption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: inherit;
    color: #fff;
    text-align: right;

}

.carousel-caption * {
    position: relative;
    z-index: 99;
}

.carousel-caption:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -2rem;
    right: -7rem;
    width: calc(100% + 9rem);
    height: calc(100% + 2rem);
    z-index: 0;
    background: rgba(0, 0, 0, .55);
    transform: skewX(30deg) rotate(-9deg);

}

.product-card h3 {
    justify-self: flex-start;
    flex-grow: 1;
}

.add_to_cart_button svg {
    margin-top: -4px;
}

.add_to_cart_button .spinner-border {
    display: none;
}

.add_to_cart_button.loading .spinner-border {
    display: block;
}

.add_to_cart_button.loading svg {
    display: none;
}

.add_to_cart_button.added {}

.separator {
    display: block;
    width: 100%;
    position: relative;
}

.separatorbloc {
    display: block;
    width: 100%;
    overflow-x: hidden;
}

.img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
}

.img-holder:before {
    content: "";
    padding-top: 52.33%;
    display: block;
}

.img-holder img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

a.img-holder:hover img {
    transform: translate(-50%, -50%) scale(1.05);
}


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


.pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pagination>span,
.pagination>a {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.pagination .current {
    color: #bbb;
    background-color: #f8f8f8;
}


.wp-block-quote {
    background: #f8f9fa;
    padding: 3rem;
    color: #66c9ee;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2em;
}

.wp-block-quote p:before {
    content: '\e019';
    display: inline-block;
    font: normal normal normal 24px/1 'iconmonstr-iconic-font';
    text-rendering: auto;
    margin-right: 1rem;
}

.wp-block-quote p:after {
    content: '\e01a';
    display: inline-block;
    font: normal normal normal 24px/1 'iconmonstr-iconic-font';
    text-rendering: auto;
    margin-left: 1rem;
}

.wp-block-quote p {
    margin: 0;
}


.wp-block-image {
    max-width: 100%;
    margin-bottom: 2em;
}


/*------------------------------------*\
     POST
\*------------------------------------*/


.plantation {
    position: relative;
    display: block;
    clear: both;
    width: 100%;
    margin: 1.5rem auto 6rem;
}

.plantation:before {
    content: "";
    padding-top: 75%;
    display: block;
}

.plantation .background img,
.plantation .background {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.plantation .description {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translate(0, -50%);
    width: 80%;
    height: auto;
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    padding: 2rem;
}

.plantation .image_pays {
    position: absolute;
    right: -5%;
    bottom: -5%;
    max-width: 28%;
}

.plantation .image_planteur {
    position: absolute;
    left: 0;
    bottom: -5%;
    max-width: 20%;
}


@media only screen and (max-width : 991px) {
    .plantation .description p {
        font-size: 1rem;
    }

    .plantation .description {
        left: 5%;
        width: 90%;
        height: 90%;
        overflow: auto;
    }

    .plantation:before {
        padding-top: 100%;
    }

    .plantation .image_pays,
    .plantation .image_planteur {

        max-width: 28%;
    }
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.gform_description {
    color: #6c757d;
    margin-bottom: 1rem;
    display: block;
}

#input_1_4 {
    text-align: center;
}

#footer img {
    max-width: 180px;
}

#footer .nav a {
    color: #fff;
    font-size: .9rem;
    display: block;
    padding: .25rem 0;
}

/*------------------------------------*\
     FORMS
\*------------------------------------ */
.btn {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 80%;
    padding: .5rem 1rem;
    min-height: 2.25rem;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.no-border {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.btn-rounded {
    width: 56px;
    height: 56px;
    padding: 1rem;
    border-radius: 50%;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary {
    color: #000;
    background-color: #c68d3a;
    border-color: #c68d3a;
}

.form-control {
    border-radius: 0;
    min-height: 2.25rem;
    padding: 0.3rem 1rem;
    font-size: 1rem;
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #6c757d;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

}

::-webkit-input-placeholder {
    color: #999999;
}

::-moz-placeholder {
    color: #999999;
}

:-ms-input-placeholder {
    color: #999999;
}

:-moz-placeholder {
    color: #999999;
}

.ginput_container .screen-reader-text,
.no-label>label,
.nolabel>label {
    display: none;
}

.gfield_description,
.ginput_container_fileupload .screen-reader-text {
    font-size: 0.85rem;
    color: #999999;
}

ul.gform_fields {
    margin: 0;
    padding: 0;
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x)/ -2);
    margin-left: calc(var(--bs-gutter-x)/ -2);
    list-style: none;
}

ul.gform_fields>li {
    position: relative;
    min-height: 1px;
    padding-right: calc(var(--bs-gutter-x)/ 2);
    padding-left: calc(var(--bs-gutter-x)/ 2);
}

.gfield:not([class*=col]) {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.gform_footer img {
    max-width: 30px;
}

.gform_body {
    overflow-x: hidden;
}

.ginput_container_date select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    min-height: calc(1.5em + 1rem + 8px);
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ginput_container_date {
    margin-right: 1rem;
}


.gform_drop_area {
    padding: 2rem;
    border: .125em dashed #b7b7b7;
    border-radius: .125em;
}


.gform_button_select_files {
    border: none;
    background: none;
    color: #018ad8;
}

.validation_message {
    color: #e50046;
    font-size: 80%;
    font-weight: 400;
}

.validation_error {
    color: #e50046;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.gform_page_footer {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.clear-multi {
    display: flex;
    flex-wrap: wrap;
}

.ginput_container_date .clear-multi {
    display: flex;
    flex-direction: row;
}

.ginput_container_date .clear-multi .ginput_container_date {
    margin-right: 1rem;
}

.gfield_required {
    color: #d12229;
    font-size: 80%;
    vertical-align: super;
}


/*------------------------------------*\
    TOOLS
\*------------------------------------*/
a.skip-main {
    left: -999px;
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}

a.skip-main:focus,
a.skip-main:active {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    left: auto;
    top: auto;
    width: 30%;
    height: auto;
    overflow: auto;
    margin: 10px 35%;
    padding: 5px;
    text-align: center;
    font-size: 1.2em;
    z-index: 999;
}

#backtotop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: all .1s cubic-bezier(.25, .46, .45, .94);
    z-index: 9999;
}

.grayscale {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.mobile-only {
    display: none !important;
}

@media only screen and (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

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

    .mobile-only.nav,
    .mobile-only.d-flex {
        display: flex !important;
    }

    .tablet-hide {
        display: none !important;
    }
}


/*--------------------------------------------------------------
    ## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: calc(1.5 * 1rem);
}

@media only screen and (min-width: 768px) {
    .wp-caption.aligncenter {
        position: relative;
        left: calc(calc(8 * (100vw / 12) - 28px) / 2);
        transform: translateX(-50%);
    }
}

@media only screen and (min-width: 1168px) {
    .wp-caption.aligncenter {
        left: calc(calc(6 * (100vw / 12) - 28px) / 2);
    }
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption-text {
    color: #767676;
    font-size: 0.71111em;
    line-height: 1.6;
    margin: 0;
    padding: 0.5rem;
    text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-bottom: calc(1.5 * 1rem);
}

.gallery-item {
    display: inline-block;
    margin-right: 16px;
    margin-bottom: 16px;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: calc((100% - 16px * 1) / 2);
}

.gallery-columns-2 .gallery-item:nth-of-type(2n+2) {
    margin-right: 0;
}

.gallery-columns-3 .gallery-item {
    max-width: calc((100% - 16px * 2) / 3);
}

.gallery-columns-3 .gallery-item:nth-of-type(3n+3) {
    margin-right: 0;
}

.gallery-columns-4 .gallery-item {
    max-width: calc((100% - 16px * 3) / 4);
}

.gallery-columns-4 .gallery-item:nth-of-type(4n+4) {
    margin-right: 0;
}

.gallery-columns-5 .gallery-item {
    max-width: calc((100% - 16px * 4) / 5);
}

.gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
    margin-right: 0;
}

.gallery-columns-6 .gallery-item {
    max-width: calc((100% - 16px * 5) / 6);
}

.gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
    margin-right: 0;
}

.gallery-columns-7 .gallery-item {
    max-width: calc((100% - 16px * 6) / 7);
}

.gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
    margin-right: 0;
}

.gallery-columns-8 .gallery-item {
    max-width: calc((100% - 16px * 7) / 8);
}

.gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
    margin-right: 0;
}

.gallery-columns-9 .gallery-item {
    max-width: calc((100% - 16px * 8) / 9);
}

.gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
    margin-right: 0;
}

.gallery-item:last-of-type {
    padding-right: 0;
}

.gallery-caption {
    display: block;
    font-size: 0.71111em;
    line-height: 1.6;
    margin: 0;
    padding: 0.5rem;
}

.gallery-item>div>a {
    display: block;
    line-height: 0;
    box-shadow: 0 0 0 0 transparent;
}

.gallery-item>div>a:focus {
    box-shadow: 0 0 0 2px #0073aa;
}

.wp-block-embed {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.wp-block-embed::before {
    padding-top: 56.25%;
}

.wp-block-embed::before {
    display: block;
    content: "";
}

.wp-block-embed embed,
.wp-block-embed iframe,
.wp-block-embed object,
.wp-block-embed video,
.wp-block-embed__wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.wp-block-image img,
.wp-block-media-text__media img {
    height: auto;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width: 1200px) {

    #home_categories #coffrets {
        left: 9%;
        top: 47.6%;
    }

    #home_categories #mac {
        left: 24.8%;
        top: 52%;
    }

    #home_categories #tablettes {
        left: 42.2%;
        top: 25%;
    }

    #home_categories #confiseries {
        left: 45.5%;
        top: 59%;
    }

    #home_categories #grignotage {
        left: 63%;
        top: 68%;
    }

    #home_categories #biscuiterie {
        left: 82%;
        top: 53%;
    }
}

@media only screen and (min-width: 992px) {
    .logo img {
        max-width: 260px;
    }
}

@media only screen and (max-width: 992px) {

    html body .gform_wrapper ul.gform_fields>li.gfield {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #home_categories span {
        position: absolute;
        font-size: 0.8rem;
    }

}

@media only screen and (max-width: 768px) {
    .logo img {
        min-width: 125px;
    }

    .logo span {
        font-size: 0.6rem;

    }

    #home_categories span {
        font-size: 0.6rem;
    }

    #home_categories #coffrets {
        left: 5.5%;
        top: 40.8%;
        max-width: 80px;
    }

    #home_categories #mac {
        left: 22.4%;
        top: 54.5%;
    }

    #home_categories #tablettes {
        left: 40%;
        top: 26%;
    }

    #home_categories #grignotage {
        left: 59.4%;
        top: 69%;
    }

    #home_categories #biscuiterie {
        left: 79.5%;
        top: 53%;
    }

    .home #main .btn {
        font-size: 0.6rem;
    }

    .bg-triangles {
        background-size: auto 100%;
    }

    #banner {
        font-size: 0.75rem;
    }

    #mainnav .catnav {
        width: 100%;
    }

    #mainnav .catnav a {
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    }

}

@media only screen and (max-width: 479px) {
    #home_categories span {
        font-size: 0.5rem;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {}

