/* #region Carousel / Banner */
.wp-block-columns.is-layout-flex.wp-container-core-columns-is-layout-1ec2ec05.wp-block-columns-is-layout-flex, .homepage-content
{
    overflow: hidden;
}
.banner-homepage
{
    height: 609px;
    margin: 0 30px;
}
.carousel-homepage
{
    --duration: 50s;
    --peek: 63px;
    --gap: 3%;
    --radius: 24px;
    --slidewidth: 100%;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --smalldot: 8px;
    --bigdot: 12px;
    height: 609px;
    padding-inline: var(--peek);
    border-radius: var(--radius);
    position: relative;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: hidden;
}

/* IMPORTANT: ton .slide a une width fixe, on la force à rester dans le carousel */
.carousel-homepage .slide {
    width: 100%;
    max-width: 100%;
}

/* Tes contrôles ont une largeur fixe (1152px) : on les rend fluides */
.carousel-homepage-controls-container,
.carousel-homepage-controls {
    width: 100%;
}

.carousel-homepage::after

/* Right fade */
{
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: var(--peek);
    pointer-events: none;
}
.carousel-homepage::before /* Left fade */
{
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--peek);
    pointer-events: none;
}
.carousel-homepage.is-gliding .dots .dot
{
    animation-play-state: paused;
}
.carousel-homepage.is-gliding .track
{
    animation: none !important;
    transition: transform var(--glide, 4650ms) var(--ease);
}
.track /* Div qui contient toutes les images */
{
    height: 100%;
    display: flex;
    will-change: transform;
    animation: glide var(--duration) infinite;
}
.slide /* Figure qui contient chaque image */
{
    flex: 0 0 100%;
    box-sizing: border-box;
    padding-inline: calc(var(--gap) / 2);
    margin: 0;
    /* width: var(--slidewidth);
    max-width: var(--slidewidth); */
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
}
.slide_img
{
    height: 100%;
    border-radius: calc(var(--radius) - 2px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide_overlay
{
    height: 100%;
    background-image: linear-gradient(to top right, rgb(1, 1, 1, 1) 0%, rgb(0, 0, 0, 0) 70%);
    border-radius: inherit;
}
.slide_content
{
    color: #fff;
    position: relative;
    top: 0;
    margin-left: 80px;
    margin-right: 80px;
    height: calc(100% - 98px);
}
.slide_content_left_column
{
    bottom: 32px;
    position: absolute;
    width: 640px;
    left: 0;
}
.slide_content .slide_content_left_column h3
{
    color: #fff;
    font-size: 52px;
    line-height: 54px;
}
.slide_content .slide_content_left_column p
{
    font-family: 'Inter';
    font-size: 20px;
    line-height: 25px;
    font-style: normal;
    width: 530px;
}
.slide_content_right_column
{
    bottom: 47px;
    position: absolute;
    width: 275px;
    right: 0;
}
.second_link
{
    margin-left: 10px;
    border: 1px #343537 solid;
    border-radius: 24px;
    text-decoration: none !important;
    font-family: 'Inter';
    font-size: 18px;
    line-height: 24px;
    padding: 8px 24px;
    font-weight: 400;
}
a.second_link, a.second_link:visited
{
    color: #343537;
}
@keyframes glide /* Animation des images */
{
    0%    {transform: translateX(calc((-2)*(var(--slidewidth))));}
    19% {transform: translateX(calc((-2)*(var(--slidewidth))));}
    /* 1 -> 2 */
    33.3% {transform: translateX(calc((-3)*(var(--slidewidth)))); animation-timing-function: cubic-bezier(.16, 1, .3, 1);}
    52.3% {transform: translateX(calc((-3)*(var(--slidewidth))));}
    /* 2 -> 3 */
    66.6% {transform: translateX(calc((-4)*(var(--slidewidth)))); animation-timing-function: cubic-bezier(.16, 1, .3, 1);}
    85.6% {transform: translateX(calc((-4)*(var(--slidewidth))));}
    /* 4 -> clone(1); clone(2) peeks on the right; leading clone peeks on the left on reset */
    100% {transform: translateX(calc((-5)*(var(--slidewidth)))); animation-timing-function: cubic-bezier(.16, 1, .3, 1);}
}
.carousel-homepage:active .track,
.carousel-homepage:has(:active) .track {  /* works when any descendant is being pressed (e.g., buttons) */
  animation-play-state: paused;
}
.carousel-homepage-controls-container
{
    position: absolute;
    inset: auto 0 40px 0;
    /* width: 1152px; */
    width: calc(100% - (2 * var(--peek)) - 80px);
    height: 58px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-homepage-controls {
    /* width: 1152px; */
    width: 100%;
    height: 58px;
    position: relative;
    border-top: rgba(147, 141, 135, 0.4) 1px solid;
}
.carousel-homepage-left-arrow-button
{
    width: 36px;
    height: 30px;
    position: absolute;
    /* left: 0; */
    left: 5px;
    right: 5px;
    top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.carousel-homepage-right-arrow-button
{
    width: 36px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.dots /* Div qui contient les points */
{
    position: absolute;
    inset: auto 0 40px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 !important;
    pointer-events: none;
    align-items: center;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.dots .dot /* Chaque point */
{
    border-radius: 50%;
    background: #666666;  /* inactive */
    display: block;
}
/* Animation des points, changement entre chaque point exactement au bon % pour correspondre à l'image */
.dots li:nth-child(1) .dot {animation: dot1 var(--duration) linear infinite;}
.dots li:nth-child(2) .dot {animation: dot2 var(--duration) linear infinite;}
.dots li:nth-child(3) .dot {animation: dot3 var(--duration) linear infinite;}
@keyframes dot1 {
    0%, 33.332%  {background: #fff; width: var(--bigdot); height: var(--bigdot);}
    33.333%, 100%  {background: #666666; width: var(--smalldot); height: var(--smalldot);}
}
@keyframes dot2 {
    0%, 33.332%  {background: #666666; width: var(--smalldot); height: var(--smalldot);}
    33.333%, 66.665% {background: #fff; width: var(--bigdot); height: var(--bigdot);}
    66.666%, 100%  {background: #666666; width: var(--smalldot); height: var(--smalldot);}
}
@keyframes dot3 {
    0%, 66.665%  {background: #666666; width: var(--smalldot); height: var(--smalldot);}
    66.666%, 100%  {background: #fff; width: var(--bigdot); height: var(--bigdot);}
}
.carousel-homepage:active .dots .dot, .carousel-homepage:has(:active) .dots .dot /* Met l'animation des points en pause quand l'animation des images est en pause */
{
    animation-play-state: paused;
}



/* ########################### CODE CAROUSEL ENTREPRISES ############################## */

.col-slider-section {
    width: 1380px;
    margin: auto;
}

.fixed_banner {
    display: none;
}
.slider-section
{
    margin: 0;
    display: flex;
    justify-content: center;
    background: #f6f6f6;
    padding: 18px 0;
}

.slider-homepage {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.slider-homepage .slider-track {
    --speed: 90s;
    display: flex;
    height: 80px;
    gap: 20px;
    animation: scroll var(--speed) linear infinite;
    width: max-content;
    will-change: transform;
    flex-wrap: nowrap;
}

.slider-slide {
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Boîte logo */
    width: 140px;
    height: 80px;
}
.slider-homepage .slider-track .slider-slide img
{
    height: 60px;
    width: 130px;
    z-index: 3;
}

.slider-homepage::before,
.slider-homepage::after {
    content: "";
    position: absolute;
    top: 0;
    width: 70px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider-homepage::before {
    left: 0;
    background: linear-gradient(to right, #f6f6f6, rgba(246, 246, 246, 0));
}

.slider-homepage::after {
    right: 0;
    background: linear-gradient(to left, #f6f6f6, rgba(246, 246, 246, 0));
}

@keyframes scroll {
    from {
        transform: translateX(-30.5%);
    }

    to {
        transform: translateX(-80%);
    }
}

@media (max-width: 992px) {

    .slider-section {
        display: flex;

    }

    .slider-homepage {
        border-radius: 10px;
    }

    .slider-homepage .slider-track {
        height: 48px;
        gap: 14px;
        --speed: 55s;
        /* plus lent sur mobile */
    }

    .slider-slide {
        width: 110px;
        height: 48px;
        padding: 8px 12px;
    }

    .slider-homepage::before,
    .slider-homepage::after {
        width: 40px;
        /* fade plus discret */
    }

    .slider-homepage .slider-track .slider-slide img {
        width: auto !important;
        height: auto !important;
        max-width: 90px !important;
        max-height: 32px !important;
        object-fit: contain;
        display: block;
    }

    .col-slider-section {
        width: calc(100% - 60px);
        margin: 0 auto;
    }
}

/* ########################### FIN CODE CAROUSEL ENTREPRISES ############################## */

/* #endregion */

/* #region Products Showcase */
.products_showcase
{
    padding-bottom: 90px;
    height: fit-content;
}
.products_showcase_title
{
    margin-left: auto;
    margin-right: auto;
    width: 840px;
    height: 94px;
    text-align: center;
}
.products_showcase_title h3
{
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 17px;
}
.products_showcase_title p
{
    line-height: 140%;
    letter-spacing: 0;
    color: rgba(1, 1, 1, 0.8);
    margin-top: 0;
    margin-bottom: 0;
}
.products_showcase_actualproducts
{
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}
.woocommerce.columns-5 ul.products
{
    display: flex;
    border-top: 1px #D3D2D2 dashed;
    border-left: 1px #D3D2D2 dashed;
    background-color: white;
    margin: 0;
    overflow: hidden;
    flex-wrap: wrap;
}
.woocommerce.columns-5 ul.products li.product
{
    width: 20%;
    margin: 0;
    display: block;
    min-height: 100%;
    float: none;
    border-right: 1px #D3D2D2 dashed;
    border-bottom: 1px #D3D2D2 dashed;
    transition: box-shadow 220ms ease;
    padding: 20px;
    padding-bottom: 28px;
}
.woocommerce.columns-5 ul.products li.product:hover
{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 3;
}
.woocommerce.columns-5 ul.products a
{
    padding: 20px;
}
.product-badges
{
    position: absolute;
    top: 6px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    flex-wrap: wrap;
}
.product-badge
{
    border-radius: 4px;
    height: fit-content;
}
.badge-heart
{
    background-color: #bf0a86;
}
.badge-out
{
    background-color: #bd0404;
}
.badge-recycle
{
    background-color: #0A9F45;
}
.badge-eu
{
    background-color: #1310c9;
}
.product-badge p
{
    color: white;
    font-size: 12px;
    letter-spacing: -1px;
    margin: 0;
    padding: 4px;
    line-height: 1;
}
.attachment-woocommerce_thumbnail
{
    margin-top: 20px;
    margin-bottom: 20px;
}
a.button.wp-element-button.product_type_variable
{
    display: none !important;
}
.woocommerce-loop-product__title
{
    font-size: 16px !important;
    color: black;
    font-family: 'Inter';
    font-weight: 400;
        overflow: hidden;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 64px;
    padding: 0 !important;
    margin-bottom: 20px !important;
}
.woocommerce ul.products li.product .price
{
    color: #ff6400;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    position: absolute;
    bottom: 20px;
    line-height: normal;
}
.products_showcase_showmore
{
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
/* #endregion */

/* #region Four Columns (commentée pour l'instant parce que pas encore implémentée)
.four_columns
{
    display: flex;
    margin-left: 22.5px;
    margin-right: 22.5px;
    height: 738px;
    align-items: center;
}
.column_image
{
    width: 318px;
}
.column_image img
{
    width: 100%;
}
/* #endregion */

/* #region Reviews */
.reviews-section
{
    width: 100%;
    height: 368px;
    display: inline-block;
}
.reviews-content
{
    display: flex;
    justify-content: flex-end;
    --transition: 450ms cubic-bezier(.22, .61, .36, 1);
    max-width: 1380px;
    margin: 40px auto;
    width: 100%;
    height: 170px;
}
/* Colonne de gauche avec carousel de review */
.reviews-carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1 1 0;
    min-width: 0;
}

.reviews-viewport {
	overflow: hidden;
    height: 100%;
    width: 100%;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

/* .reviews-cards
{
    display:flex;
    margin-left:auto;
    will-change: transform;
    transform: translateX(0);
    transition: transform var(--transition);
	gap: 24px;
    height: 100%;
} */
.reviews-cards {
    display: flex;
    margin-left: auto;
    /* AVANT: auto */
    margin-right: 0;
    will-change: transform;
    transform: translateX(0);
    transition: transform var(--transition);
	gap: 24px;
    height: 100%;
}

/* .reviews-card
{
    width: 414px;
    background: #343537;
	color: #f1f1f1;
    border-radius: 14px;
	padding: 24px;
    transition: transform var(--transition), opacity 360ms ease;
} */
.reviews-card {
    width: 414px;
    flex: 0 0 414px;
    /* NEW */
    position: relative;
    /* conseillé pour .reviews-meta */
    background: #343537;
	color: #f1f1f1;
    border-radius: 14px;
	padding: 24px;
    transition: transform var(--transition), opacity 360ms ease;
}
.reviews-card p
{
    font-family: 'Inter';
    font-size: 14px;
    line-height: 140%;
    margin-top: 0;
	margin-bottom: 16px;
	color: #e8e8e8;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 60px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE / Edge legacy */
}

.reviews-card p::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.reviews-card p:hover {
    display: block;
    position: relative;
    -webkit-line-clamp: none;
    line-clamp: none;
    background-color: #343537;
    z-index: 6;
    overflow-y: auto;
    max-height: 120px;
    padding-bottom: 20px;
}

/* .reviews-meta
{
    position: absolute;
	display: flex;
	align-items: center;
	justify-content: space-between;
    height: 56px;
    width: 366px;
    bottom: 24px;
} */
.reviews-meta {
    position: absolute;
    left: 24px;
    right: 24px;
    width: auto;
    /* au lieu de 366px */
    bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.reviews-person {
	display: flex;
	align-items: center;
    width: 145px;
    height: 56px;
}
.reviews-name
{
	font-family: 'Inter';
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    line-height: 100%;
}
.reviews-stars
{
	display: flex;
    gap: 4px;
}
.reviews-stars svg
{
    width: 24px;
}
.reviews-controls
{
	display: flex;
	gap: 16px;
	margin-top: 16px;
    height: 48px;
    margin-left: 30px !important;
}
.reviews-btn
{
	border:0;
	background:#343537;
	color:#fff;
	width:48px;
	height:48px;
	border-radius:50%;
    display:flex;
	cursor:pointer;
	justify-content: center;
    align-items: center;
    padding: 0;
}
.reviews-btn:hover, .reviews-btn:focus
{
    background: #474b52;
}
.fade-out
{
	opacity:0 !important;
}
.fade-in-start
{
	opacity:0;
}
/* Colonne droite */
.reviews-aside
{
	margin-left: 96px !important;
    margin-top: 23.5px;
    margin-bottom: 23.5px;
    margin-right: 64px;
    width: 482px;
    height: 153px;
}
.reviews-quote-mark
{
	width: 58px;
    transform: translate(-35px, -62px);
    position: absolute;
}
.reviews-aside h3
{
	font-family: 'Grifter';
    font-size: 32px;
    font-weight: 700;
    line-height: 125%;
    margin-bottom: 16px;
    width: 482px;
}
.reviews-aside p
{
	color: rgba(0, 0, 0, 0.8);
    margin: 8px 0 28px;
    margin-top: 0;
    margin-bottom: 32px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}
/* #endregion */

/* #region Banner Pack */
.pack_banner_section
{
    width: 100%;
    height: 497px;
    margin-top: 97px;
    margin-bottom: 102px;
}
.pack_banner
{
    width: 1381px;
    height: 497px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
}
.pack_banner .circle_1
{
    width: 985px;
    height: 985px;
    border: 5px #FFFFFF solid;
    border-radius: 50%;
    position: absolute;
    top: 68px;
    left: -196px;
}
.pack_banner .circle_2
{
    width: 644px;
    height: 644px;
    border: 5px #FFFFFF solid;
    border-radius: 50%;
    position: absolute;
    top: 139px;
    right: -151px;
}
.pack_banner_text
{
    position: absolute;
    width: 654px;
    left: 73px;
    bottom: 111px;
    color: white;
}
.pack_banner_text h3
{
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 18px;
}
.pack_banner_text p
{
    margin: 0;
    line-height: 140%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.8);
}
.pack_banner_button
{
    width: fit-content;
    position: absolute;
    right: 142px;
    bottom: 111px;
}

/* #endregion */

/* #region FAQ */
#faq,
section#faq,
.wp-block-group#faq,
[id="faq"] {
    box-sizing: border-box;
}
/* #endregion */

/* #region Notebooks */
@media (min-width: 993px) and (max-width: 1439px)
{
    .carousel-homepage
    {
        --slidewidth: 100%;
        height: 40vw;
        margin-left: 16px;
        /* marge externe du site */
        margin-right: 16px;
        max-width: calc(100% - 60px);
    }
    .carousel-homepage-controls-container
    {
        width: 100%;
        height: 7%;
        padding: 0 11%;
    }
    .carousel-homepage-controls
    {
        width: auto;
    }
    .dots
    {
        bottom: 10px;
    }
    .banner-homepage
    {
        height: 40vw;
        margin: 0 15px;
    }
    .slide_content
    {
        margin-left: 15px;
        margin-right: 15px;
        height: 90%;
    }
    .slide_content_left_column
    {
        top: 20px;
        width: 100%;
    }
    .slide_content .slide_content_left_column h3
    {
        font-size: 4vw;
        line-height: 5vw;
        margin: 0;
    }
    .slide_content .slide_content_left_column p
    {
        width: 100%;
        font-size: 1.8vw;
        line-height: 2.4vw;
    }
    .wp-block-columns.has-white-background-color.has-background.is-layout-flex.wp-container-core-columns-is-layout-095fd6cd.wp-block-columns-is-layout-flex
    {
        margin-top: 24px !important;
        margin-bottom: 24px !important;
    }
    .products_showcase
    {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 60px;
        height: fit-content;
    }
    .products_showcase_actualproducts
    {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .reviews-section
    {
        height: fit-content;
    }

    /* Reviews – laptop */
    .reviews-content {
        max-width: calc(100% - 60px);
        /* comme le reste du site */
    }

    .reviews-card {
        width: 360px;
        flex: 0 0 360px;
    }

    .reviews-aside {
        width: 420px;
        margin-left: 64px !important;
        margin-right: 0;
    }

    .reviews-controls {
        margin-left: 30px !important;
    }

    .pack_banner_section {
        width: auto;
        height: fit-content;
        margin: 50px 30px;
    }
    .pack_banner
    {
        width: 100%;
        height: 40vw;
    }
    .pack_banner .circle_1
    {
        width: 60vw;
        height: 60vw;
    }
    .pack_banner .circle_2
    {
        width: 47vw;
        height: 47vw;
    }
    .pack_banner_text
    {
        position: absolute;
        width: 37vw;
        left: 2vw;
        bottom: 4vw;
        color: white;
    }
    .pack_banner_button
    {
        width: fit-content;
        position: absolute;
        right: 3vw;
        bottom: 6vw;
    }

    .col-slider-section {
        width: calc(100% - 60px);
        margin: 0 auto;
    }

    #faq,
    section#faq,
    .wp-block-group#faq,
    [id="faq"] {
        width: auto !important;
        margin: 50px 30px !important;
    }
}

/* #endregion */

/* #region Mobile */
@media (max-width: 992px)
{
    .col-slider-section {
        display: none !important;
    }
    .carousel-homepage
    {
        --slidewidth: 100%;
        height: 40vw;
        margin-top: 30px !important;

        --peek: 16px;
        /* marge interne */
        border-radius: 16px;

        margin-left: 16px;
        /* marge externe du site */
        margin-right: 16px;
        max-width: calc(100% - 60px);
    }

    .banner-homepage {
        height: 50vw;
        margin: 0 5px;
    }
    .carousel-homepage-controls-container
    {
        width: 100%;
        inset: auto 0 0 0;
        height: 14px;
    }
    .carousel-homepage-controls
    {
        width: auto;
        height: auto;
        border-top: none;
    }
    .carousel-homepage-left-arrow-button, .carousel-homepage-right-arrow-button
    {
        display: none;
    }
    .slide_content
    {
        margin-left: 0;
        margin-right: 0;
        height: 100%;
    }
    .slide_content_left_column
    {
        bottom: 38%;
        width: 96%;
        left: 2%;
        height: 60%;
    }
    .slide_content .slide_content_left_column h3
    {
        font-size: 4vw;
        line-height: normal;
        margin: 2%;
    }
    .slide_content .slide_content_left_column p
    {
        font-size: 3vw;
        line-height: normal;
        width: 98%;
        margin: 2%;
    }
    .slide_content_right_column
    {
        bottom: 17%;
        width: 96%;
        right: 2%;
    }
    .black_btn_green_pill button
    {
        padding: 1vw 3vw;
    }
    .black_btn_green_pill button div
    {
        gap: 2vw;
    }
    .black_btn_green_pill button div span
    {
        font-size: 2.8vw;
    }
    .black_btn_green_pill button div
    {
        gap: 2vw;
    }
    .second_link
    {
        margin-left: 3vw;
        font-size: 2.8vw;
        padding: 2vw 3vw;
    }

    figure.wp-block-image.size-full.is-resized {
        display: none;
    }
    .wp-block-columns.has-white-background-color.has-background.is-layout-flex.wp-container-core-columns-is-layout-095fd6cd.wp-block-columns-is-layout-flex
    {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }
    .fixed_banner {
        display: block;
    }
    .slider-section {
        display: none;
    }
    .products_showcase
    {
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 30px;
        height: auto;
    }
    .products_showcase_title
    {
        width: 100%;
        height: auto;
    }
    .products_showcase_title h3
    {
        font-size: 5vw;
        margin-bottom: 4vw;
    }
    .products_showcase_title p
    {
        line-height: normal;
        font-size: 3vw;
    }
    .products_showcase_actualproducts
    {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .woocommerce.columns-5 ul.products li.product
    {
        flex: 0 0 calc(50% - 1px);
        padding: 2vw;
    }
    .woocommerce.columns-5 ul.products a
    {
        padding: 0;
    }
    .woocommerce-loop-product__title
    {
        margin-bottom: 40px !important;
    }

    .reviews-section {
        width: calc(100% - 60px);
        height: auto;
        margin: 0 30px;
    }
    .reviews-content
    {
        flex-direction: column-reverse;
        height: auto;
        margin-bottom: 0;
        margin-top: 75px;
    }

    .reviews-carousel {
        margin-right: 0;
        margin-top: 4vw;
    }
    .reviews-cards
    {
        gap: 2vw;
    }

    .reviews-card {
        width: 80vw;
        flex: 0 0 80vw;
        padding: 4vw;
        padding-bottom: 7vw;
        min-height: 30vw;
    }
    .reviews-card p
    {
        font-size: 2.5vw;
        margin-bottom: 3vw;
    }
    .reviews-card p:hover
    {
        padding-bottom: 20px;
    }
    .reviews-meta
    {
        height: 10vw;
        width: 67vw;
        bottom: 0;
    }
    .reviews-name
    {
        font-size: 3vw;
    }
    .reviews-aside
    {
        margin-left: 10% !important;
        margin-top: 0;
        margin-bottom: 4%;
        margin-right: 10%;
        width: 80%;
        height: auto;
    }
    .reviews-quote-mark
    {
        width: 12vw;
        transform: translate(-6vw, -14vw);
    }
    .reviews-aside h3
    {
        font-size: 5vw;
        width: auto;
        margin: 0;
    }
    .reviews-aside p
    {
        margin: 0;
        margin-bottom: 2vw;
        font-size: 3vw;
    }
    .reviews-controls
    {
        gap: 4vw;
        margin-top: 13px;
        height: auto;
        margin-left: 0 !important;
        justify-content: center;
    }

    .pack_banner_section {
        width: auto;
        height: 50vw;
        margin-top: 60px;
        margin-bottom: 60px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .pack_banner
    {
        width: 100%;
        height: 100%;
    }
    .pack_banner .circle_1
    {
        display: none;
    }
    .pack_banner .circle_2
    {
        width: 100vw;
        height: 100vw;
        border: 3px #FFFFFF solid;
        top: 28vw;
        right: -25vw;
    }
    .pack_banner_text
    {
        width: 89vw;
        left: 4vw;
        bottom: 27vw;
    }
    .pack_banner_text h3
    {
        font-size: 5vw;
        margin-bottom: 2vw;
    }
    .pack_banner_text p
    {
        font-size: 3vw;
    }
    .pack_banner_button
    {
        right: 7vw;
        bottom: 4vw;
    }

    #contact {
        width: auto;
        margin: 40px 30px;
        padding-top: 20px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    #contact .wp-block-columns.border_bottom.is-layout-flex.wp-container-core-columns-is-layout-ec7e174a.wp-block-columns-is-layout-flex
    {
        width: 100%;
        gap: 2vw;
        padding-bottom: 100px !important;
    }
    #contact .wp-block-columns.border_bottom.is-layout-flex.wp-container-core-columns-is-layout-ec7e174a.wp-block-columns-is-layout-flex p
    {
        width: 100%;
        font-size: 3vw !important;
    }
    .newsletter_form
    {
        margin-top: 10px !important;
        width: 100%;
    }
    .newsletter_form .wpcf7-form-control-wrap input
    {
        width: 100% !important;
        border-radius: 10px !important;
        margin-bottom: 10px;
    }
    .newsletter_form .wpcf7-submit
    {
        border-radius: 10px !important;
    }
    .wpcf7-response-output
    {
        margin-top: 90px !important;
        margin-bottom: 0 !important;
    }

    #faq,
    section#faq,
    .wp-block-group#faq,
    [id="faq"] {
        width: auto !important;
        margin: 40px 30px !important;
    }
}

/* #endregion */