/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Reset and Variables
# Plugins
# Helpers
# Bootstrap
# WooCommerce
# Base
# Main
# Parts
# Components / Templates
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Reset and Variables
--------------------------------------------------------------*/
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
2. Remove default margin
 */
* {
  margin: 0;
}

/*
Typographic tweaks!
3. Add accessible line-height
4. Improve text rendering
 */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
5. Improve media defaults
 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
6. Remove built-in form typography styles
 */
input, button, textarea, select {
  font: inherit;
}

/*
7. Avoid text overflows
 */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
8. Create a root stacking context
 */
#root, #__next {
  isolation: isolate;
}

/*--------------------------------------------------------------
## Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: "PP Object Sans";
  src: url("PPObjectSans-Heavy.woff2") format("woff2"), url("PPObjectSans-Heavy.woff") format("woff"), url("PPObjectSans-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Object Sans";
  src: url("PPObjectSans-Regular.woff2") format("woff2"), url("PPObjectSans-Regular.woff") format("woff"), url("PPObjectSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Object Sans";
  src: url("PPObjectSans-Bold.woff2") format("woff2"), url("PPObjectSans-Bold.woff") format("woff"), url("PPObjectSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*--------------------------------------------------------------
## Main Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Bootstrap Variables
--------------------------------------------------------------*/
/*
	Breakpoints for max-width.

	These variables are mapped with $grid-breakpoints SCSS map variable which is used for bootstrap.
	The reason for this setup is that it is needed to have variables that reflect bootstrap's breakpoints.
	Bootstrap is using min-with and this starter max-with approach, so bootstrap's breakpoint at 992px (min-width)
	is reflected as 991px (max-width), thus the mapped variables bellow.
 */
/*--------------------------------------------------------------
# Helpers
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Mixins
--------------------------------------------------------------*/
/*
Media Query
Example:

@include mq($sm) 			 		Will render: @media screen and (max-width: 575px)
@include mq(991px) 			 	 	Will render: @media screen and (max-width: 991px)
@include mq($sm + 1, min) 	 		Will render: @media screen and (min-width: 576px)
@include mq(992px, min) 			Will render: @media screen and (min-width: 992px)
@include mq(400, min, height) 	 	Will render: @media screen and (min-height: 400px)
@include mq(992px) {				Will render: @media screen and (max-width: 992px) and (min-width: 767px)
	@include mq(767px, min) {

	}
}
 */
/*
Insert SVG Icon DataUri as Background
The mixing takes three arguments:

First argument is a name of a file.
Second argument is a color of an icon.
Third argument is whether psuedo element should be `::before` or `::after`. The default value is `::before`.

Example:

@include svg-icon-data(ico-happy, $red, after);


Will render:
&::after {
	...
	background: url("data:image/svg+xml...") no-repeat center
	...
}
 */
/*--------------------------------------------------------------
## Helpers
--------------------------------------------------------------*/
.clear::after,
.entry-content::after,
.comment-content::after,
.site-content::after,
.site-footer::after {
  content: "";
  display: table;
  clear: both;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.centered {
  text-align: center;
}

.is-disabled {
  pointer-events: none;
  opacity: 0.7;
}

.bg-white {
  background-color: #fff;
}

.color-white {
  color: #fff;
}

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

.color-black {
  color: #000;
}

.bg-gray {
  background-color: #707070;
}

.color-gray {
  color: #707070;
}

.bg-red {
  background-color: #cf1414;
}

.color-red {
  color: #cf1414;
}

.bg-black-olive {
  background-color: #322e22;
}

.color-black-olive {
  color: #322e22;
}

.bg-alice-blue {
  background-color: #eef5fb;
}

.color-alice-blue {
  color: #eef5fb;
}

.bg-columbia-blue {
  background-color: #c6dff1;
}

.color-columbia-blue {
  color: #c6dff1;
}

.bg-raisin-black {
  background-color: #231f20;
}

.color-raisin-black {
  color: #231f20;
}

.bg-black-matte {
  background-color: #2d2a1f;
}

.color-black-matte {
  color: #2d2a1f;
}

.bg-davys-grey {
  background-color: #5e5e5e;
}

.color-davys-grey {
  color: #5e5e5e;
}

.bg-light-blue {
  background-color: #f4fbff;
}

.color-light-blue {
  color: #f4fbff;
}

.bg-silver {
  background-color: #a2a2a2;
}

.color-silver {
  color: #a2a2a2;
}

.bg-battleship {
  background-color: #a5a4a0;
}

.color-battleship {
  color: #a5a4a0;
}

.bg-tropical-indigo {
  background-color: #6765b4;
}

.color-tropical-indigo {
  color: #6765b4;
}

.bg-lavender {
  background-color: #dcdcff;
}

.color-lavender {
  color: #dcdcff;
}

.bg-purple {
  background-color: #817ee1;
}

.color-purple {
  color: #817ee1;
}

.bg-auburn {
  background-color: #aa1d28;
}

.color-auburn {
  color: #aa1d28;
}

.bg-seasalt {
  background-color: #fafafa;
}

.color-seasalt {
  color: #fafafa;
}

.bg-dodger-blue {
  background-color: #4797f8;
}

.color-dodger-blue {
  color: #4797f8;
}

.bg-pastel-purple {
  background-color: #9393d8;
}

.color-pastel-purple {
  color: #9393d8;
}

.bg-eerie-black {
  background-color: #1a1a1a;
}

.color-eerie-black {
  color: #1a1a1a;
}

.font-font-main {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.container--large {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (min-width: 576px) {
  .container--large {
    max-width: 540px;
  }
}
@media only screen and (min-width: 768px) {
  .container--large {
    max-width: 720px;
  }
}
@media only screen and (min-width: 992px) {
  .container--large {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1100px) {
  .container--large {
    max-width: 1384px;
  }
}
.container--mega {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (min-width: 576px) {
  .container--mega {
    max-width: 540px;
  }
}
@media only screen and (min-width: 768px) {
  .container--mega {
    max-width: 920px;
  }
}
@media only screen and (min-width: 992px) {
  .container--mega {
    max-width: 1300px;
  }
}
@media only screen and (min-width: 1100px) {
  .container--mega {
    max-width: 1510px;
  }
}
.prevent-scroll {
  overflow: hidden;
  position: relative;
  height: unset;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

.splide__arrows {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100%;
  width: 100%;
}
.splide__arrows .splide__arrow {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  -webkit-transform: translate(0);
          transform: translate(0);
  background: transparent;
  width: 41px;
  height: 40px;
  opacity: 1;
}
.splide__arrows .splide__arrow svg {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splide__arrows .splide__arrow--next::before {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml,%3Csvg width="41" height="41" viewBox="0 0 41 41" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Crect x="1" y="0.522949" width="39" height="39" rx="19.5" stroke="%23322E22"/%3E%3Cpath d="M14.5 19.5229C14.2239 19.5229 14 19.7468 14 20.0229C14 20.2991 14.2239 20.5229 14.5 20.5229L14.5 19.5229ZM26.8536 20.3765C27.0488 20.1812 27.0488 19.8647 26.8536 19.6694L23.6716 16.4874C23.4763 16.2922 23.1597 16.2922 22.9645 16.4874C22.7692 16.6827 22.7692 16.9993 22.9645 17.1945L25.7929 20.0229L22.9645 22.8514C22.7692 23.0466 22.7692 23.3632 22.9645 23.5585C23.1597 23.7537 23.4763 23.7537 23.6716 23.5585L26.8536 20.3765ZM14.5 20.5229L26.5 20.5229V19.5229L14.5 19.5229L14.5 20.5229Z" fill="%23322E22"/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.splide__arrows .splide__arrow--prev::before {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml,%3Csvg width="41" height="41" viewBox="0 0 41 41" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Crect x="40" y="39.5229" width="39" height="39" rx="19.5" transform="rotate(-180 40 39.5229)" stroke="%23322E22"/%3E%3Cpath d="M26.5 20.5229C26.7761 20.5229 27 20.2991 27 20.0229C27 19.7468 26.7761 19.5229 26.5 19.5229L26.5 20.5229ZM14.1464 19.6694C13.9512 19.8647 13.9512 20.1812 14.1464 20.3765L17.3284 23.5585C17.5237 23.7537 17.8403 23.7537 18.0355 23.5585C18.2308 23.3632 18.2308 23.0466 18.0355 22.8514L15.2071 20.0229L18.0355 17.1945C18.2308 16.9993 18.2308 16.6827 18.0355 16.4874C17.8403 16.2922 17.5237 16.2922 17.3284 16.4874L14.1464 19.6694ZM26.5 19.5229L14.5 19.5229L14.5 20.5229L26.5 20.5229L26.5 19.5229Z" fill="%23322E22"/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.splide__arrows .splide__arrow svg {
  width: 22px;
  height: 22px;
}
.splide__arrows .splide__arrow:disabled {
  opacity: 1;
  pointer-events: none;
}
.splide__arrows .splide__arrow:disabled svg {
  opacity: 0.5;
}

.splide .splide__pagination {
  padding: 0;
  bottom: 14px;
  left: 50%;
  right: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.splide .splide__pagination li button {
  background-color: transparent;
  border: 1px solid #322e22;
  margin: 0 9px;
  opacity: 1;
}
.splide .splide__pagination li button.is-active {
  background-color: #322e22;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 767px) {
  .product-grid__products-upper,
  .product-grid__filter-inner {
    -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
  }
}

@media screen and (max-width: 767px) {
  .product-grid__products-upper::-webkit-scrollbar,
  .product-grid__filter-inner::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
}

/*--------------------------------------------------------------
# Bootstrap
--------------------------------------------------------------*/
/*!
 * Bootstrap Grid v5.3.8 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1294px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
}

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0;
      -ms-flex: 1 0;
          flex: 1 0;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0;
        -ms-flex: 1 0;
            flex: 1 0;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0;
        -ms-flex: 1 0;
            flex: 1 0;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0;
        -ms-flex: 1 0;
            flex: 1 0;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0;
        -ms-flex: 1 0;
            flex: 1 0;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

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

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

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

.flex-fill {
  -webkit-box-flex: 1 !important;
  -webkit-flex: 1 1 auto !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: row-reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: column-reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -webkit-flex-grow: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -webkit-flex-grow: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -webkit-flex-shrink: 0 !important;
      -ms-flex-negative: 0 !important;
          flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -webkit-flex-shrink: 1 !important;
      -ms-flex-negative: 1 !important;
          flex-shrink: 1 !important;
}

.flex-wrap {
  -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
      -ms-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
      -ms-flex-wrap: wrap-reverse !important;
          flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -webkit-justify-content: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -webkit-align-content: flex-start !important;
      -ms-flex-line-pack: start !important;
          align-content: flex-start !important;
}

.align-content-end {
  -webkit-align-content: flex-end !important;
      -ms-flex-line-pack: end !important;
          align-content: flex-end !important;
}

.align-content-center {
  -webkit-align-content: center !important;
      -ms-flex-line-pack: center !important;
          align-content: center !important;
}

.align-content-between {
  -webkit-align-content: space-between !important;
      -ms-flex-line-pack: justify !important;
          align-content: space-between !important;
}

.align-content-around {
  -webkit-align-content: space-around !important;
      -ms-flex-line-pack: distribute !important;
          align-content: space-around !important;
}

.align-content-stretch {
  -webkit-align-content: stretch !important;
      -ms-flex-line-pack: stretch !important;
          align-content: stretch !important;
}

.align-self-auto {
  -webkit-align-self: auto !important;
      -ms-flex-item-align: auto !important;
          align-self: auto !important;
}

.align-self-start {
  -webkit-align-self: flex-start !important;
      -ms-flex-item-align: start !important;
          align-self: flex-start !important;
}

.align-self-end {
  -webkit-align-self: flex-end !important;
      -ms-flex-item-align: end !important;
          align-self: flex-end !important;
}

.align-self-center {
  -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
          align-self: center !important;
}

.align-self-baseline {
  -webkit-align-self: baseline !important;
      -ms-flex-item-align: baseline !important;
          align-self: baseline !important;
}

.align-self-stretch {
  -webkit-align-self: stretch !important;
      -ms-flex-item-align: stretch !important;
          align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -webkit-order: -1 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -webkit-order: 0 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -webkit-order: 1 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -webkit-order: 2 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -webkit-order: 3 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -webkit-order: 4 !important;
      -ms-flex-order: 4 !important;
          order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -webkit-order: 5 !important;
      -ms-flex-order: 5 !important;
          order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
  -webkit-order: 6 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -webkit-justify-content: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-sm-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-sm-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-sm-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-sm-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-sm-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -webkit-justify-content: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-md-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-md-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-md-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-md-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-md-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-md-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-md-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-md-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -webkit-justify-content: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-lg-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-lg-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-lg-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-lg-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-lg-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -webkit-justify-content: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-xl-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-xl-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-xl-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-xl-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-xl-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-xl-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-xl-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-xl-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-xl-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
}

pre {
  background: #ededed;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
  font-size: 12px;
  margin-bottom: 30px;
}

.pretitle {
  position: relative;
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.12px;
  line-height: 1.3;
  color: #322e22;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  z-index: 10;
}
.pretitle p {
  font-size: inherit;
}

.page-title {
  display: block;
  font-size: 40px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03px;
  line-height: 1.23;
  color: #322e22;
}
.page-title strong {
  font-weight: bold;
}
@media screen and (max-width: 1199px) {
  .page-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .page-title {
    font-size: 22px;
  }
}

.section-title {
  display: block;
  font-size: 36px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03px;
  line-height: 1.23;
  color: #322e22;
}
.section-title strong {
  font-weight: bold;
}
@media screen and (max-width: 1199px) {
  .section-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .section-title {
    font-size: 24px;
  }
}

.section-title--mid {
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1.32;
}
@media screen and (max-width: 1199px) {
  .section-title--mid {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .section-title--mid {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .section-title--mid {
    font-size: 24px;
  }
}

.section-title--small {
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.32;
}
@media screen and (max-width: 575px) {
  .section-title--small {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
## Entry Content
--------------------------------------------------------------*/
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 48px;
}
.entry-content h1:first-of-type,
.entry-content h2:first-of-type,
.entry-content h3:first-of-type,
.entry-content h4:first-of-type,
.entry-content h5:first-of-type,
.entry-content h6:first-of-type {
  margin-top: 0;
}
.entry-content h1 {
  font-size: 40px;
}
@media screen and (max-width: 991px) {
  .entry-content h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 575px) {
  .entry-content h1 {
    font-size: 28px;
  }
}
.entry-content h2 {
  font-size: 38px;
}
@media screen and (max-width: 991px) {
  .entry-content h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .entry-content h2 {
    font-size: 26px;
  }
}
.entry-content h3 {
  font-size: 36px;
  margin-top: 48px;
  margin-bottom: 26px;
}
@media screen and (max-width: 991px) {
  .entry-content h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .entry-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 23px;
  }
}
.entry-content h3:first-of-type {
  margin-top: 0;
}
.entry-content h4 {
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 23px;
}
@media screen and (max-width: 991px) {
  .entry-content h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .entry-content h4 {
    font-size: 18px;
    margin-top: 23px;
    margin-bottom: 26px;
  }
}
.entry-content h4:first-of-type {
  margin-top: 0;
}
.entry-content h5 {
  font-size: 18px;
}
.entry-content h6 {
  font-size: 10px;
}
.entry-content p {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-bottom: 26px;
}
@media screen and (max-width: 575px) {
  .entry-content p {
    font-size: 16px;
    margin-bottom: 23px;
  }
}
.entry-content a {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}
.entry-content a:not(.btn) {
  color: #322e22;
}
.entry-content a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 1px;
  width: 100%;
  background: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .entry-content a:hover::before {
    width: 0;
  }
}
@media screen and (max-width: 575px) {
  .entry-content a {
    font-size: 16px;
  }
}
.entry-content ul {
  margin-bottom: 28px;
}
.entry-content ul li {
  position: relative;
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  padding-left: 27px;
}
.entry-content ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #322e22;
  position: absolute;
  top: 12px;
  left: 12px;
}
@media screen and (max-width: 575px) {
  .entry-content ul li::before {
    top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .entry-content ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .entry-content ul {
    margin-bottom: 20px;
  }
}
.entry-content ol {
  margin-left: 23px;
  margin-top: 24px;
}
.entry-content ol li {
  position: relative;
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  list-style: decimal;
  margin-bottom: 20px;
}
.entry-content ol li::before {
  display: none;
}
@media screen and (max-width: 575px) {
  .entry-content ol li {
    font-size: 16px;
  }
}

h1 sup,
h2 sup {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  h1 sup,
  h2 sup {
    font-size: 15px;
  }
}

p sup,
a sup,
li sup,
span sup {
  font-size: 8px;
}

ul,
ol {
  padding: 0;
}
ul li,
ol li {
  list-style-type: none;
}

ul.section-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding: 0;
  padding-left: 10px;
  margin-top: 22px;
}
ul.section-ul li {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 15px;
}
ul.section-ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #c6dff1;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}
ul.section-ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  ul.section-ul li {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 575px) {
  ul.section-ul {
    margin-top: 21px;
  }
}

ol.section-ol li {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
## Base Layout
--------------------------------------------------------------*/
html, body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  height: 100%;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-padding: 60px;
  scroll-behavior: smooth;
}

body {
  padding-top: 102px;
}

.site-main {
  min-height: calc(100vh - 170px);
}
@media screen and (max-width: 1199px) {
  .site-main {
    min-height: calc(100vh - 130px);
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

a,
button {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Parts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Buttons
--------------------------------------------------------------*/
input[type=submit],
.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  border-radius: 30px;
  background-color: #322e22;
  border: 1px solid #322e22;
  color: #fff;
  padding: 14px 15px;
  outline: none;
  cursor: pointer;
  min-width: 191px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  input[type=submit]:hover,
  .btn:hover {
    color: #322e22;
    background-color: transparent;
  }
}
input[type=submit].disabled,
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
input[type=submit]::before,
.btn::before {
  display: none;
}

.btn--white {
  background-color: #fff;
  color: #322e22;
}
@media only screen and (min-width: 1199px) {
  .btn--white:hover {
    color: #fff;
    background-color: #322e22;
  }
}

/*--------------------------------------------------------------
## Forms
--------------------------------------------------------------*/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  display: block;
  width: 100%;
  height: 48px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  outline: none;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=month]::-webkit-input-placeholder, input[type=week]::-webkit-input-placeholder, input[type=time]::-webkit-input-placeholder, input[type=datetime]::-webkit-input-placeholder, input[type=datetime-local]::-webkit-input-placeholder, input[type=color]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #707070;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=color]::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #707070;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=month]:-ms-input-placeholder, input[type=week]:-ms-input-placeholder, input[type=time]:-ms-input-placeholder, input[type=datetime]:-ms-input-placeholder, input[type=datetime-local]:-ms-input-placeholder, input[type=color]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #707070;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, input[type=month]::-ms-input-placeholder, input[type=week]::-ms-input-placeholder, input[type=time]::-ms-input-placeholder, input[type=datetime]::-ms-input-placeholder, input[type=datetime-local]::-ms-input-placeholder, input[type=color]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #707070;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
textarea::placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #707070;
}
@media screen and (max-width: 500px) {
  input[type=text],
  input[type=email],
  input[type=url],
  input[type=password],
  input[type=search],
  input[type=number],
  input[type=tel],
  input[type=date],
  input[type=month],
  input[type=week],
  input[type=time],
  input[type=datetime],
  input[type=datetime-local],
  input[type=color],
  textarea {
    height: 40px;
  }
}

.form-pass-icon {
  width: 19px;
  height: 19px;
  position: absolute;
  bottom: 15px;
  right: 20px;
  cursor: pointer;
}
.form-pass-icon span {
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.form-pass-icon svg {
  width: 100%;
  height: 100%;
  color: #322e22;
  fill: #322e22;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.form-pass-icon .form-pass-icon--closed {
  opacity: 0;
}
.form-pass-icon.is-active .form-pass-icon--open {
  opacity: 0;
}
.form-pass-icon.is-active .form-pass-icon--closed {
  opacity: 1;
}
@media screen and (max-width: 500px) {
  .form-pass-icon {
    bottom: 10px;
    right: 20px;
  }
}
@media only screen and (min-width: 1199px) {
  .form-pass-icon:hover svg {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
            transform: translate(-50%, -50%) scale(1.2);
  }
}

.error-message {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: #aa1d28;
  position: absolute;
  bottom: -17px;
  left: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.error-message.is-visible {
  opacity: 1;
  visibility: visible;
}

.js-feedback-message {
  position: absolute;
  bottom: -16px;
  left: 19px;
  margin: 0;
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.js-feedback-message.error {
  color: #cf1414;
}
.js-feedback-message.success {
  color: rgb(0, 128, 0);
}
@media screen and (max-width: 500px) {
  .js-feedback-message {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
}

.pagination {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 84px;
}
@media screen and (max-width: 500px) {
  .pagination {
    margin-top: 37px;
  }
}
.pagination__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.pagination__arrow svg {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 49%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 575px) {
  .pagination__arrow {
    top: 48px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.pagination__arrow--prev {
  left: 0;
  padding-left: 21px;
}
.pagination__arrow--prev svg {
  left: 1px;
}
@media only screen and (min-width: 1199px) {
  .pagination__arrow--prev:hover svg {
    left: -5px;
  }
}
@media screen and (max-width: 575px) {
  .pagination__arrow--prev {
    left: 9px;
  }
}
.pagination__arrow--next {
  right: 0;
  padding-right: 21px;
}
.pagination__arrow--next svg {
  right: 1px;
}
@media only screen and (min-width: 1199px) {
  .pagination__arrow--next:hover svg {
    right: -5px;
  }
}
@media screen and (max-width: 575px) {
  .pagination__arrow--next {
    right: 9px;
  }
}
.pagination__parts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination__parts * {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  margin: 0 9px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .pagination__parts a:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.pagination__parts .active {
  font-weight: bold;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.pagination__parts .dots {
  letter-spacing: 3px;
}

.hamburger {
  display: block;
  cursor: pointer;
  width: 24px;
  height: 17px;
  position: relative;
}
.hamburger::after, .hamburger::before,
.hamburger span {
  width: 100%;
  height: 1px;
  position: absolute;
  display: block;
  background-color: #322e22;
  pointer-events: none;
}
.hamburger::after, .hamburger::before {
  content: "";
  -webkit-transition: 350ms width 350ms ease;
  transition: 350ms width 350ms ease;
}
.hamburger::after {
  top: 0;
  left: 0;
}
.hamburger::before {
  bottom: 0;
  right: 0;
}
.hamburger span {
  top: 50%;
  -webkit-transition: -webkit-transform 350ms ease;
  transition: -webkit-transform 350ms ease;
  transition: transform 350ms ease;
  transition: transform 350ms ease, -webkit-transform 350ms ease;
}
.hamburger span::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-transition: -webkit-transform 350ms ease;
  transition: -webkit-transform 350ms ease;
  transition: transform 350ms ease;
  transition: transform 350ms ease, -webkit-transform 350ms ease;
}
@media screen and (max-width: 1199px) {
  .hamburger span {
    margin-top: -1px;
  }
}
.hamburger.is-active::after, .hamburger.is-active::before {
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
  width: 0;
}
.hamburger.is-active::after {
  left: 0;
}
.hamburger.is-active::before {
  right: 0;
}
.hamburger.is-active span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 350ms -webkit-transform 350ms ease;
  transition: 350ms -webkit-transform 350ms ease;
  transition: 350ms transform 350ms ease;
  transition: 350ms transform 350ms ease, 350ms -webkit-transform 350ms ease;
}
.hamburger.is-active span::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 350ms -webkit-transform 350ms ease;
  transition: 350ms -webkit-transform 350ms ease;
  transition: 350ms transform 350ms ease;
  transition: 350ms transform 350ms ease, 350ms -webkit-transform 350ms ease;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
a {
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: none;
  outline: 0;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
  will-change: transform;
}
.header-main.hidden-when-sticky-cta {
  opacity: 0;
  visibility: hidden;
}
.header-main.is-sticky {
  -webkit-box-shadow: 0 4px 30px rgba(63, 63, 63, 0.05);
          box-shadow: 0 4px 30px rgba(63, 63, 63, 0.05);
}
.header-main.no-promo-bar .mega-menu__holder {
  top: 41px;
}

.promo-bar {
  background-color: #c6dff1;
  height: 32px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.promo-bar.is-hidden {
  height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.promo-bar__container {
  position: relative;
  height: 100%;
}

.promo-bar__text {
  display: block;
  font-size: 13px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  width: 100%;
  padding: 0 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.promo-bar__text a {
  position: relative;
  color: #322e22;
}
.promo-bar__text a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .promo-bar__text a:hover::before {
    width: 0;
  }
}
.promo-bar__text.active {
  opacity: 1;
  z-index: 10;
}
@media screen and (max-width: 575px) {
  .promo-bar__text {
    font-size: 10px;
  }
}

.promo-bar-close {
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.promo-bar-close svg {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1199px) {
  .promo-bar-close:hover {
    -webkit-transform: translateY(-50%) scale(1.2);
            transform: translateY(-50%) scale(1.2);
  }
}
@media screen and (max-width: 400px) {
  .promo-bar-close {
    right: 26px;
  }
}

.site-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
}

.site-header__container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17px 0 17px 73px;
}
@media screen and (max-width: 991px) {
  .site-header__container {
    padding: 17px 0 17px 50px;
  }
}
@media screen and (max-width: 500px) {
  .site-header__container {
    padding: 13px 9px 14px 49px;
  }
}

.site-header__hamburger {
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1100;
}
@media screen and (max-width: 575px) {
  .site-header__hamburger {
    left: 9px;
  }
}

.site-header__branding {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-header__logo {
  color: #fff;
  display: block;
  max-width: 168px;
}
@media screen and (max-width: 500px) {
  .site-header__logo {
    max-width: 146px;
  }
}

.site-header__logo-img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.site-header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 23px;
}
@media screen and (max-width: 1199px) {
  .site-header__nav-list {
    display: none;
  }
}

.site-header__nav-item {
  margin-right: 38px;
}
.site-header__nav-item:last-child {
  margin-right: 0;
}

.site-header__nav-item--has-megamenu .site-header__nav-link {
  padding-right: 16px;
}
.site-header__nav-item--has-megamenu .site-header__nav-link::after {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml,%3Csvg width="15" height="9" viewBox="0 0 15 9" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M7.88897 8.5C7.72364 8.5 7.55814 8.43484 7.43192 8.30467L0.967286 1.63804C0.71468 1.37754 0.714681 0.955706 0.967286 0.695374C1.21989 0.435042 1.62894 0.434875 1.88139 0.695374L7.88897 6.89068L13.8966 0.695376C14.1492 0.434878 14.5582 0.434878 14.8107 0.695376C15.0631 0.955875 15.0633 1.37771 14.8107 1.63804L8.34602 8.30467C8.2198 8.43484 8.0543 8.5 7.88897 8.5Z" fill="%23322E22"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__nav-item--has-megamenu .site-header__nav-link:hover::before {
    width: 100%;
  }
}
@media only screen and (min-width: 1199px) {
  .site-header__nav-item--has-megamenu:hover .site-header__nav-link::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
  .site-header__nav-item--has-megamenu:hover .mega-menu__holder {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}

.site-header__nav-link {
  position: relative;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__nav-link::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 3px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 1199px) {
  .site-header__nav-link::before {
    bottom: -3px;
  }
}
@media only screen and (min-width: 1199px) {
  .site-header__nav-link:hover::before {
    width: 100%;
  }
}

.site-header__nav-link--phone::before {
  width: 100%;
}
@media only screen and (min-width: 1199px) {
  .site-header__nav-link--phone:hover::before {
    width: 0;
  }
}

.site-header__btn {
  font-size: 13px;
  min-width: 126px;
  padding: 9px 10px;
  margin-right: 46px;
}
@media screen and (max-width: 1199px) {
  .site-header__btn {
    display: none;
  }
}

.site-header__nav-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.site-header__nav-icon {
  position: relative;
  width: 27px;
  height: 27px;
  margin: 0 5px;
}
.site-header__nav-icon svg {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__nav-icon:hover svg {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
            transform: translate(-50%, -50%) scale(1.2);
  }
}

.site-header__nav-icon--search {
  cursor: pointer;
}

.site-header__nav-icon--account {
  position: relative;
  cursor: pointer;
}
.site-header__nav-icon--account.logged-in svg {
  display: none;
}
.site-header__nav-icon--account.logged-in .site-header__nav-icon--account-name {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 1.2;
  color: #fff;
  background-color: #322e22;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.site-header__nav-icon--account.logged-in:hover .site-header__nav-icon-account-dropdown-holder--logged-in {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.site-header__nav-icon--account.not-logged-in .site-header__nav-icon--account-name {
  display: none;
}
.site-header__nav-icon--account.not-logged-in:hover .site-header__nav-icon-account-dropdown-holder--not-logged-in {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.site-header__nav-icon-account-dropdown-holder {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 126px;
  opacity: 0;
  padding-top: 18px;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__nav-icon-account-dropdown-holder.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.site-header__nav-icon-account-dropdown {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #c6dff1;
  border-radius: 8px;
  padding: 17px 8px;
  width: 100%;
}
.site-header__nav-icon-account-dropdown::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #c6dff1;
  position: absolute;
  top: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.site-header__nav-icon-account-link {
  position: relative;
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  margin-top: 10px;
}
.site-header__nav-icon-account-link:first-child {
  margin-top: 0;
}
.site-header__nav-icon-account-link::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__nav-icon-account-link:hover::before {
    width: 100%;
  }
}

.site-header__nav-icon--cart {
  position: relative;
  cursor: pointer;
}

.site-header__nav-icon-cart-num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #322e22;
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  color: #fff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  top: -6px;
  right: -9px;
  pointer-events: none;
}
@media screen and (max-width: 500px) {
  .site-header__nav-icon-cart-num {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: -3px;
    right: -8px;
  }
}

.mega-menu__holder {
  position: fixed;
  top: 73px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  will-change: transform;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 1199px) {
  .mega-menu__holder {
    display: none;
  }
}

.mega-menu {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, color-stop(54.4%, #eef5fb), color-stop(50%, #fff));
  background: linear-gradient(to right, #eef5fb 54.4%, #fff 50%);
  border-top: 1px solid #eef5fb;
  border-bottom: 1px solid #eef5fb;
  pointer-events: all;
  margin-top: 28px;
}
.mega-menu::before {
  content: "";
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 2000px) {
  .mega-menu {
    background: -webkit-gradient(linear, left top, right top, color-stop(52%, #eef5fb), color-stop(50%, #fff));
    background: linear-gradient(to right, #eef5fb 52%, #fff 50%);
  }
}

.mega-menu__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.mega-menu__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 54.4%;
  width: 100%;
  padding: 2px 15px 72px 0;
}

.mega-menu__left-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-width: 200px;
  max-width: 30%;
  width: 100%;
  margin-right: 30px;
  margin-top: 30px;
}
.mega-menu__left-column:last-child {
  margin-right: 0;
  max-width: 64%;
  width: 100%;
}
.mega-menu__left-column:last-child .mega-menu__left-column-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media screen and (max-width: 1100px) {
  .mega-menu__left-column:last-child .mega-menu__left-column-lists {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
}
.mega-menu__left-column:first-child .mega-menu__left-column-link {
  max-width: unset;
}
.mega-menu__left-column:first-child .mega-menu__left-column-lists {
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .mega-menu__left-column {
    margin-right: 20px;
  }
}

.mega-menu__left-column-title {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}

.mega-menu__left-column-lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  margin-top: 7px;
  width: 100%;
}

.mega-menu__left-column-lists-ul {
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1;
      -ms-flex: 1 1;
          flex: 1 1;
}

.mega-menu__left-column-list {
  margin-top: 9px;
}

.mega-menu__left-column-link {
  position: relative;
  display: inline-block;
  max-width: unset;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.mega-menu__left-column-link::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 1px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .mega-menu__left-column-link:hover::before {
    width: 100%;
  }
}

.mega-menu__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 45.6%;
  width: 100%;
  padding: 32px 15px 38px 60px;
}
@media screen and (max-width: 1400px) {
  .mega-menu__right {
    padding: 30px 15px 20px 20px;
  }
}

.mega-menu__right-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 124px;
  margin-top: 37px;
}
.mega-menu__right-box:first-child {
  margin-top: 0;
}

.mega-menu__right-box-image {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #eef5fb;
  border-radius: 4px;
  overflow: hidden;
}
.mega-menu__right-box-image img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.mega-menu__right-box-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.mega-menu__right-box-info-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
}

.mega-menu__right-box-info-title-tag {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  padding: 5px 8px;
  background-color: #eef5fb;
  border-radius: 4px;
  margin-left: 17px;
}

.mega-menu__right-box-info-desc {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  margin-top: 10px;
}

.mega-menu__right-box-info-link {
  position: relative;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  margin-top: 29px;
}
.mega-menu__right-box-info-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: -4px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .mega-menu__right-box-info-link:hover::before {
    width: 0;
  }
}

.site-header__hamburger-menu {
  display: block;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform;
  z-index: 10000;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__hamburger-menu.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.site-header__hamburger-menu.is-visible .site-header__hamburger-menu-inner {
  left: 0;
}

.site-header__hamburger-menu-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 460px;
  width: 100%;
  height: 100%;
  background-color: #eef5fb;
  padding: 105px 32px 10px;
  overflow-y: auto;
  left: -100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}
@media screen and (max-width: 575px) {
  .site-header__hamburger-menu-inner {
    padding: 97px 24px 60px;
  }
}

.site-header__hamburger-menu-inner-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.site-header__hamburger-menu-inner-top-link {
  position: relative;
  font-size: 32px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  width: 100%;
  margin-top: 20px;
}
.site-header__hamburger-menu-inner-top-link::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #322e22;
  position: absolute;
  bottom: -3px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__hamburger-menu-inner-top-link:hover::before {
    width: 100%;
  }
}
.site-header__hamburger-menu-inner-top-link:first-child {
  margin-top: 0;
}

.site-header__hamburger-menu-inner-top-link--has-menu {
  padding-right: 20px;
}
.site-header__hamburger-menu-inner-top-link--has-menu::after {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml,%3Csvg width="15" height="9" viewBox="0 0 15 9" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M7.88897 8.5C7.72364 8.5 7.55814 8.43484 7.43192 8.30467L0.967286 1.63804C0.71468 1.37754 0.714681 0.955706 0.967286 0.695374C1.21989 0.435042 1.62894 0.434875 1.88139 0.695374L7.88897 6.89068L13.8966 0.695376C14.1492 0.434878 14.5582 0.434878 14.8107 0.695376C15.0631 0.955875 15.0633 1.37771 14.8107 1.63804L8.34602 8.30467C8.2198 8.43484 8.0543 8.5 7.88897 8.5Z" fill="%23322E22"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}

.site-header__hamburger-menu-inner-middle {
  display: block;
  width: 100%;
  margin-top: 40px;
}

.site-header__hamburger-menu-inner-middle-lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.site-header__hamburger-menu-inner-middle-list {
  display: block;
  margin-top: 13px;
}
.site-header__hamburger-menu-inner-middle-list:first-child {
  margin-top: 0;
}

.site-header__hamburger-menu-inner-middle-link {
  position: relative;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  width: 100%;
}
.site-header__hamburger-menu-inner-middle-link::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 1px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__hamburger-menu-inner-middle-link:hover::before {
    width: 100%;
  }
}

.site-header__hamburger-menu-inner-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 39px;
}
.site-header__hamburger-menu-inner-bottom .btn {
  min-width: 100%;
}
@media screen and (max-width: 1199px) {
  .site-header__hamburger-menu-inner-bottom .btn {
    margin-top: 23px;
  }
}

.site-header__hamburger-menu-inner-close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 32px;
  right: 32px;
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__hamburger-menu-inner-close svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1199px) {
  .site-header__hamburger-menu-inner-close:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media screen and (max-width: 575px) {
  .site-header__hamburger-menu-inner-close {
    top: 24px;
    right: 24px;
  }
}

.site-header__hamburger-menu-sub-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 460px;
  width: 100%;
  height: 100%;
  background-color: #eef5fb;
  padding: 33px 32px 10px;
  position: absolute;
  top: 0;
  left: -100%;
  overflow-y: auto;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
  z-index: 2;
}
.site-header__hamburger-menu-sub-menu.is-visible {
  left: 0;
}
@media screen and (max-width: 575px) {
  .site-header__hamburger-menu-sub-menu {
    padding: 25px 24px 60px;
  }
}

.site-header__hamburger-menu-sub-menu-top {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 50px;
}

.site-header__hamburger-menu-sub-menu-top-back {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__hamburger-menu-sub-menu-top-back svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1199px) {
  .site-header__hamburger-menu-sub-menu-top-back:hover {
    -webkit-transform: translateY(-50%) scale(1.2);
            transform: translateY(-50%) scale(1.2);
  }
}

.site-header__hamburger-menu-sub-menu-top-close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__hamburger-menu-sub-menu-top-close svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1199px) {
  .site-header__hamburger-menu-sub-menu-top-close:hover {
    -webkit-transform: translateY(-50%) scale(1.2);
            transform: translateY(-50%) scale(1.2);
  }
}

.site-header__hamburger-menu-sub-menu-top-title {
  display: block;
  font-size: 20px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  text-align: center;
}

.site-header__hamburger-menu-sub-menu-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 48px;
}

.site-header__hamburger-menu-sub-menu-bottom-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 47.5%;
  width: 100%;
}
@media screen and (max-width: 575px) {
  .site-header__hamburger-menu-sub-menu-bottom-box {
    max-width: 46.3%;
  }
}

.site-header__hamburger-menu-sub-menu-bottom-lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.site-header__hamburger-menu-sub-menu-bottom-list {
  margin-top: 13px;
}
.site-header__hamburger-menu-sub-menu-bottom-list:first-child {
  margin-top: 0;
}

.site-header__hamburger-menu-sub-menu-bottom-link {
  position: relative;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__hamburger-menu-sub-menu-bottom-link::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 1px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__hamburger-menu-sub-menu-bottom-link:hover::before {
    width: 100%;
  }
}

.site-header__hamburger-menu-sub-menu-bottom-box-title {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  margin-top: 1px;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
## Header Cart
--------------------------------------------------------------*/
.site-header__cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  right: -100%;
  will-change: transform;
  z-index: 1000000;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__cart.is-visible {
  right: 0;
}

.rebuy-cart__background {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.site-header__cart-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 400px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 24px 24px 10px;
  margin-left: 0;
}
@media screen and (max-width: 575px) {
  .site-header__cart-inner {
    padding: 24px;
  }
}

#rebuy-cart .rebuy-cart__flyout {
  max-width: 400px;
  width: 100%;
}

.site-header__cart-inner-top {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.site-header__cart-inner-title,
#rebuy-cart .rebuy-cart__flyout-header .rebuy-cart__flyout-title {
  font-size: 20px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  text-transform: capitalize;
  text-align: center;
}

.site-header__cart-close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__cart-close svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1199px) {
  .site-header__cart-close:hover {
    -webkit-transform: translateY(-50%) scale(1.2);
            transform: translateY(-50%) scale(1.2);
  }
}

.site-header__cart-inner-holder {
  width: 100%;
  height: 100%;
  margin-top: 24px;
}
.site-header__cart-inner-holder.is-full .site-header__cart-empty {
  display: none;
}
.site-header__cart-inner-holder.is-full .site-header__cart-full {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.site-header__cart-empty {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding-bottom: 24px;
}
@media screen and (max-width: 500px) {
  .site-header__cart-empty {
    padding-bottom: 5px;
  }
}

.site-header__cart-empty-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 94px 0 50px;
}
@media screen and (max-width: 500px) {
  .site-header__cart-empty-info {
    padding: 108px 0 40px;
  }
}

#rebuy-cart .rebuy-cart__flyout-empty-cart h4 {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  text-align: center;
  margin-bottom: 10px;
}

#rebuy-cart .rebuy-cart__flyout-empty-cart p.ql-align-center:first-of-type {
  display: none;
}

.site-header__cart-empty-info-title,
.rebuy-cart__flyout-empty-cart p {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  text-align: center;
}

.rebuy-cart__flyout-empty-cart p > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  border-radius: 30px;
  background-color: #322e22;
  border: 1px solid #322e22;
  color: #fff;
  padding: 15px 0;
  outline: none;
  cursor: pointer;
  min-width: 214px;
  max-width: 214px;
  margin: 18px auto 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .rebuy-cart__flyout-empty-cart p > a:hover {
    color: #322e22;
    background-color: transparent;
  }
}

.rebuy-widget .primary-title, .rebuy-recommended-products .primary-title {
  font-size: 13px !important;
  letter-spacing: 0;
  font-weight: 400;
  text-align: left !important;
}

.site-header__cart-empty-info-btn {
  min-width: 214px;
  padding: 15px 0;
  margin-top: 18px;
}

.site-header__cart-empty-favorites {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: auto;
  border-top: 1px solid #eef5fb;
  padding-top: 17px;
}

.site-header__cart-empty-favorites-title {
  display: block;
  font-size: 13px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  width: 100%;
}

.site-header__cart-empty-favorites-box {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 80px 0 105px;
  margin-top: 39px;
}
.site-header__cart-empty-favorites-box:first-of-type {
  margin-top: 31px;
}
@media screen and (max-width: 500px) {
  .site-header__cart-empty-favorites-box:first-of-type {
    margin-top: 19px;
  }
}
@media screen and (max-width: 500px) {
  .site-header__cart-empty-favorites-box {
    padding: 0 60px 0 92px;
    margin-top: 22px;
  }
}

.site-header__cart-empty-favorites-box-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 93px;
  height: 93px;
  position: absolute;
  top: -13px;
  left: 0;
}
.site-header__cart-empty-favorites-box-image img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 500px) {
  .site-header__cart-empty-favorites-box-image {
    width: 80px;
    height: 80px;
    top: -1px;
  }
}

.site-header__cart-empty-favorites-box-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

#rebuy-cart .rebuy-cart__flyout-header {
  padding-top: 25px;
  border: none;
}

#rebuy-cart .rebuy-cart__flyout-close {
  top: 62%;
  right: 17px;
}
#rebuy-cart .rebuy-cart__flyout-close i::before {
  font-size: 30px;
}

#rebuy-cart .rebuy-cart__flyout-announcement-bar-message {
  font-size: 14px;
  padding: 16px 0;
}

#rebuy-cart .rebuy-cart__flyout-announcement-bar, [data-rebuy-component=announcement-bar] {
  background-color: transparent;
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: #322e22;
}

#rebuy-cart .rebuy-product-info {
  width: calc(100% - 220px);
  padding-right: 10px;
}

#rebuy-cart .rebuy-product-actions {
  width: 99px;
}

.site-header__cart-empty-favorites-box-info-title,
#rebuy-cart .rebuy-product-info a,
#rebuy-cart .rebuy-cart__flyout-item-product-title {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__cart-empty-favorites-box-info-title:hover,
  #rebuy-cart .rebuy-product-info a:hover,
  #rebuy-cart .rebuy-cart__flyout-item-product-title:hover {
    color: #6765b4;
  }
}

#rebuy-cart .rebuy-cart__flyout-item-variant-title {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 18px;
  text-align: left;
  color: #322e22;
  margin-top: 7px;
}

#rebuy-cart .rebuy-cart__flyout-recommendations {
  background-color: #fff;
  padding-left: 0;
  padding-right: 0;
  margin-top: auto;
}

#rebuy-cart .rebuy-cart__flyout-empty-cart {
  margin-top: 35px;
}

#rebuy-cart .rebuy-cart__flyout-item {
  width: 100%;
  padding: 25px 0 13px;
  margin-left: 0;
}

#rebuy-cart .rebuy-cart__flyout-item-info {
  padding-left: 15px;
}

#rebuy-cart .no-items .rebuy-cart__flyout-recommendations {
  height: auto;
}

.site-header__cart-empty-favorites-box-info-btn,
#rebuy-cart .rebuy-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  border-radius: 30px;
  background-color: #322e22;
  border: 1px solid #322e22;
  color: #fff;
  padding: 8px 10px;
  outline: none;
  cursor: pointer;
  min-width: 99px !important;
  margin-top: 15px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__cart-empty-favorites-box-info-btn:hover,
  #rebuy-cart .rebuy-button:hover {
    color: #322e22;
    background-color: transparent;
  }
}
@media screen and (max-width: 500px) {
  .site-header__cart-empty-favorites-box-info-btn,
  #rebuy-cart .rebuy-button {
    margin-top: 17px;
  }
}

#rebuy-cart .rebuy-cart__flyout-item-subscription button {
  font-size: 12px;
  letter-spacing: 0.6px;
  padding: 10px;
}

#rebuy-cart .rebuy-product-options select {
  border: 1px solid #322e22;
  outline: none !important;
  border-radius: 30px;
  font-size: 15px;
  padding: 8px 17px 6px;
}

#rebuy-cart .rebuy-cart__flyout-item-quantity {
  margin-top: 12px;
}

#rebuy-cart .rebuy-cart__flyout-footer {
  padding: 13px 20px 24px;
}

.rebuy-cart__flyout-content {
  /* stylelint-disable */
  scrollbar-width: thin;
  scrollbar-color: #322e22 #fff;
}
.rebuy-cart__flyout-content::-webkit-scrollbar {
  width: 0.6vw;
}
.rebuy-cart__flyout-content::-webkit-scrollbar-thumb {
  background-color: #322e22;
  border-radius: 0.3vw;
  border: 1px solid #fff;
}
.rebuy-cart__flyout-content::-webkit-scrollbar-track {
  background-color: #fff;
}
.rebuy-cart__flyout-content {
  /* stylelint-enable */
  overflow-y: auto !important;
  padding: 0 24px !important;
}

.site-header__cart-empty-favorites-box-prices {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 100px;
  width: 100%;
  position: absolute;
  top: -6px;
  right: 0;
}
@media screen and (max-width: 500px) {
  .site-header__cart-empty-favorites-box-prices {
    top: -3px;
  }
}

.site-header__cart-empty-favorites-box-price-old {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #aa1d28;
  text-decoration: line-through;
  margin-bottom: -2px;
}

.site-header__cart-empty-favorites-box-price,
.rebuy-money {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}

.site-header__cart-full {
  position: relative;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
  margin-top: 4px;
}
.site-header__cart-full .site-header__cart-empty-favorites {
  margin-top: 23px;
}
@media screen and (max-width: 500px) {
  .site-header__cart-full {
    padding-bottom: 5px;
  }
}

.site-header__cart-full-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding-bottom: 188px;
  overflow-y: auto;
}

.site-header__cart-full-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.site-header__cart-full-top-text {
  font-size: 13px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: #322e22;
  text-align: center;
}

.site-header__cart-full-top-range {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #eef5fb;
  margin-top: 14px;
}
.site-header__cart-full-top-range span {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #322e22;
}

.site-header__cart-full-products {
  width: 100%;
  padding-top: 15px;
}

.site-header__cart-full-product {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 105px;
  margin-top: 20px;
}
.site-header__cart-full-product .quick-buy-modal__buy-input {
  max-width: 90px;
  height: 36px;
}
.site-header__cart-full-product .quick-buy-modal__buy-input input {
  font-size: 14px;
  padding: 10px 25px;
}
.site-header__cart-full-product .quick-buy-modal__buy-input-indicator {
  width: 12px;
}
.site-header__cart-full-product .quick-buy-modal__buy-input-indicator--minus {
  left: 11px;
}
.site-header__cart-full-product .quick-buy-modal__buy-input-indicator--plus {
  right: 11px;
}
.site-header__cart-full-product:first-of-type {
  margin-top: 10px;
}
@media screen and (max-width: 500px) {
  .site-header__cart-full-product {
    padding-left: 92px;
  }
}

.rebuy-cart__flyout-item-quantity-widget {
  position: relative;
  max-width: 90px;
  width: 100% !important;
  height: 36px;
  border-radius: 100px;
  border: 1px solid #322e22;
}
.rebuy-cart__flyout-item-quantity-widget .rebuy-cart__flyout-item-quantity-widget-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #322e22;
  text-align: center;
  border: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  padding: 10px 20px;
}

#rebuy-cart .rebuy-cart__flyout-item-quantity-widget-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: transparent !important;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}

.rebuy-cart__flyout-item-quantity-widget-button:first-of-type {
  left: 7px;
  height: auto;
  width: auto;
}

.rebuy-cart__flyout-item-quantity-widget-button:last-of-type {
  right: 7px;
}

.site-header__cart-full-product-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 93px;
  height: 93px;
  position: absolute;
  top: -1px;
  left: 0;
}
.site-header__cart-full-product-image img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 500px) {
  .site-header__cart-full-product-image {
    width: 80px;
    height: 80px;
    top: -1px;
  }
}

.site-header__cart-full-product-info {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding-right: 55px;
}

.site-header__cart-full-product-info-title {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
}

.site-header__cart-full-product-info-desc {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  margin-top: 8px;
}

.site-header__cart-full-product-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 14px;
}

.site-header__cart-full-product-prices {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 100px;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .site-header__cart-full-product-prices {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

.site-header__cart-full-product-price-old {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #aa1d28;
  text-decoration: line-through;
  margin-bottom: -2px;
}

.site-header__cart-full-product-price {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}

.site-header__cart-full-product-remove {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  position: absolute;
  top: 15px;
  right: 0;
}
.site-header__cart-full-product-remove::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 1px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__cart-full-product-remove:hover::before {
    width: 0;
  }
}
@media screen and (max-width: 500px) {
  .site-header__cart-full-product-remove {
    top: 0;
  }
}

.site-header__cart-full-total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 400px;
  width: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  border-top: 1px solid #eef5fb;
  background-color: #fff;
  padding: 17px 24px 24px;
  will-change: transform;
}
.site-header__cart-full-total::before {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background-image: url("white-shadow.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -40px;
  left: 0;
  pointer-events: none;
}

.site-header__cart-full-total-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.site-header__cart-full-total-top-text,
#rebuy-cart .rebuy-cart__flyout-subtotal-label span {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}

#rebuy-cart .rebuy-cart__flyout-subtotal-amount {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}

#rebuy-cart .rebuy-cart__checkout-button {
  height: 51px;
}

.site-header__cart-full-total-top-price {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}

.site-header__cart-full-total-bottom {
  width: 100%;
  margin-top: 16px;
}

.site-header__cart-full-total-bottom-btn {
  min-width: 100%;
  padding: 16px 10px 15px;
}

/*--------------------------------------------------------------
## Header Search
--------------------------------------------------------------*/
.site-header__search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  right: -100%;
  will-change: transform;
  z-index: 1000000;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__search.is-visible {
  right: 0;
}

.site-header__search-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 460px;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  background-color: #fff;
  padding: 24px 24px 10px;
  margin-left: 0;
}
.site-header__search-inner::before {
  content: "";
  display: block;
  max-width: 460px;
  width: 100%;
  height: 40px;
  background-image: url("white-shadow.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 575px) {
  .site-header__search-inner {
    padding: 24px 24px 15px;
  }
}

.site-header__search-inner-top {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.site-header__search-inner-title {
  font-size: 20px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  text-align: center;
}

.site-header__search-close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__search-close svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1199px) {
  .site-header__search-close:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.site-header__search-inner-top-input {
  position: relative;
  display: block;
  width: 100%;
  height: 48px;
  border-bottom: 1px solid #322e22;
  margin-top: 50px;
}
.site-header__search-inner-top-input input {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  padding: 10px 65px 10px 52px;
  border: 0;
}
.site-header__search-inner-top-input input:focus {
  padding-left: 52px;
}
.site-header__search-inner-top-input input::-webkit-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.site-header__search-inner-top-input input::-moz-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.site-header__search-inner-top-input input:-ms-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.site-header__search-inner-top-input input::-ms-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.site-header__search-inner-top-input input::placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}

.site-header__search-inner-top-input-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-header__search-inner-top-input-icon svg {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1199px) {
  .site-header__search-inner-top-input-icon:hover {
    -webkit-transform: translateY(-50%) scale(1.2);
            transform: translateY(-50%) scale(1.2);
  }
}

.site-header__search-inner-top-remove {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-header__search-inner-top-remove.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.site-header__search-inner-top-remove::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 1px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__search-inner-top-remove:hover::before {
    width: 0;
  }
}

.site-header__search-inner-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  overflow-y: auto;
  padding-bottom: 40px;
  margin-top: 24px;
  /* stylelint-disable */
  scrollbar-width: thin;
  scrollbar-color: #322e22 #fff;
}
.site-header__search-inner-holder::-webkit-scrollbar {
  width: 0.6vw;
}
.site-header__search-inner-holder::-webkit-scrollbar-thumb {
  background-color: #322e22;
  border-radius: 0.3vw;
  border: 1px solid #fff;
}
.site-header__search-inner-holder::-webkit-scrollbar-track {
  background-color: #fff;
}
.site-header__search-inner-holder {
  /* stylelint-enable */
}

.site-header__search-inner-top-search-terms {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 24px;
}
.site-header__search-inner-top-search-terms.is-visible {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.site-header__search-inner-top-search-terms-title {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}

.site-header__search-inner-top-search-terms-lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 7px;
}

.site-header__search-inner-top-search-terms-list {
  margin-top: 9px;
}

.site-header__search-inner-top-search-terms-link {
  position: relative;
  display: inline-block;
  max-width: 145px;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.site-header__search-inner-top-search-terms-link::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 1px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__search-inner-top-search-terms-link:hover::before {
    width: 100%;
  }
}

.site-header__search-inner-top-no-results {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 2px;
}
.site-header__search-inner-top-no-results.is-visible {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.site-header__search-inner-top-no-results-text {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
}

.site-header__search-inner-top-search-results-holder {
  display: none;
  width: 100%;
  padding-top: 1px;
}
.site-header__search-inner-top-search-results-holder.is-visible {
  display: block;
}

.site-header__search-inner-top-search-results-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #322e22;
}

.site-header__search-inner-top-search-results-tab {
  position: relative;
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1;
      -ms-flex: 1 1;
          flex: 1 1;
  text-align: center;
  cursor: pointer;
  padding: 0 5px 12px;
}
.site-header__search-inner-top-search-results-tab::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #322e22;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
.site-header__search-inner-top-search-results-tab.is-active {
  font-weight: bold;
}
.site-header__search-inner-top-search-results-tab.is-active::before {
  width: 100%;
}
@media screen and (max-width: 575px) {
  .site-header__search-inner-top-search-results-tab {
    font-size: 15px;
    padding: 0 5px 14px;
  }
}
@media screen and (max-width: 370px) {
  .site-header__search-inner-top-search-results-tab {
    font-size: 14px;
    letter-spacing: -0.3px;
  }
}

.site-header__search-inner-top-search-results-tab-boxes {
  margin-top: 30px;
}

.site-header__cart-empty-favorites-box-info-desc {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  color: #322e22;
  margin-top: 9px;
}

.site-header__cart-empty-favorites-box-info-desc p span {
  font-size: 12px;
}

.site-header__search-inner-top-search-results-tab-boxes:not(.is-active) {
  display: none;
}

.site-header__search-inner-top-search-results-tab-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.site-header__search-inner-top-search-results-tab-box-product {
  position: relative;
  width: 100%;
  padding: 10px 92px;
  margin-top: 30px;
}
.site-header__search-inner-top-search-results-tab-box-product:first-child {
  margin-top: 0;
}
.site-header__search-inner-top-search-results-tab-box-product .site-header__cart-empty-favorites-box-image {
  width: 80px;
  height: 80px;
  top: -7px;
}
.site-header__search-inner-top-search-results-tab-box-product .site-header__cart-empty-favorites-box-prices {
  top: 6px;
}
.site-header__search-inner-top-search-results-tab-box-product .site-header__cart-empty-favorites-box-price-old {
  margin-bottom: 5px;
}
@media only screen and (min-width: 1199px) {
  .site-header__search-inner-top-search-results-tab-box-product:hover .site-header__cart-empty-favorites-box-info-title {
    color: #6765b4;
  }
}

.site-header__search-inner-top-search-results-tab-box-blog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 16px;
}
.site-header__search-inner-top-search-results-tab-box-blog:first-child {
  margin-top: -7px;
}

.site-header__search-inner-top-search-results-tab-box-blog-image {
  max-width: 120px;
  width: 100%;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
}
.site-header__search-inner-top-search-results-tab-box-blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.site-header__search-inner-top-search-results-tab-box-blog-desc {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  max-width: 68%;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .site-header__search-inner-top-search-results-tab-box-blog-desc {
    max-width: 60%;
  }
}
@media screen and (max-width: 370px) {
  .site-header__search-inner-top-search-results-tab-box-blog-desc {
    max-width: 52%;
  }
}

.site-header__search-inner-top-search-results-tab-page-link {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  margin-top: 10px;
}
.site-header__search-inner-top-search-results-tab-page-link::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-header__search-inner-top-search-results-tab-page-link:hover::before {
    width: 100%;
  }
}

.site-header__search-inner-top-suggestions {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: -3px;
}
.site-header__search-inner-top-suggestions.is-visible {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-header__search-inner-top-suggestions .site-header__search-inner-top-search-terms-lists {
  margin-top: 5px;
}
.site-header__search-inner-top-suggestions .site-header__search-inner-top-search-results {
  width: 100%;
  margin-top: 49px;
}
@media screen and (max-width: 575px) {
  .site-header__search-inner-top-suggestions .site-header__search-inner-top-search-results {
    margin-top: 27px;
  }
}

.site-header__search-inner-top-suggestions-top {
  width: 100%;
  border-bottom: 1px solid #322e22;
  padding: 0 24px 21px;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  background-color: #eef5fb;
  padding-top: 80px;
  overflow: hidden;
}
.site-footer .container {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .site-footer {
    padding: 40px 9px 0;
  }
}

.site-footer__newsletter {
  position: relative;
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 54px 15px 55px 76px;
  margin-bottom: 71px;
}
@media screen and (max-width: 1199px) {
  .site-footer__newsletter {
    padding: 50px 15px 50px 35px;
  }
}
@media screen and (max-width: 991px) {
  .site-footer__newsletter {
    padding: 35px 15px 35px 35px;
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__newsletter {
    padding: 24px 20px 200px;
  }
}

.site-footer__newsletter-texts {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 630px;
  width: 100%;
  z-index: 10;
}
.site-footer__newsletter-texts form {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 600px;
  width: 100%;
  margin-top: 40px;
}
.site-footer__newsletter-texts form input[type=email] {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  border: 1px solid #322e22;
  padding: 10px 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 100px;
  max-width: 68.1%;
  width: 100%;
  height: 48px;
}
.site-footer__newsletter-texts form input[type=email]::-webkit-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.site-footer__newsletter-texts form input[type=email]::-moz-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.site-footer__newsletter-texts form input[type=email]:-ms-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.site-footer__newsletter-texts form input[type=email]::-ms-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.site-footer__newsletter-texts form input[type=email]::placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
@media screen and (max-width: 575px) {
  .site-footer__newsletter-texts form input[type=email]::-webkit-input-placeholder {
    letter-spacing: -1px;
  }
  .site-footer__newsletter-texts form input[type=email]::-moz-placeholder {
    letter-spacing: -1px;
  }
  .site-footer__newsletter-texts form input[type=email]:-ms-input-placeholder {
    letter-spacing: -1px;
  }
  .site-footer__newsletter-texts form input[type=email]::-ms-input-placeholder {
    letter-spacing: -1px;
  }
  .site-footer__newsletter-texts form input[type=email]::placeholder {
    letter-spacing: -1px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__newsletter-texts form input[type=email] {
    height: 45px;
    max-width: 62%;
  }
}
@media screen and (max-width: 500px) {
  .site-footer__newsletter-texts form input[type=email] {
    max-width: 100%;
    width: 100%;
  }
}
.site-footer__newsletter-texts form input[type=submit] {
  min-width: auto;
  max-width: 30%;
  width: 100%;
  height: 48px;
}
@media screen and (max-width: 767px) {
  .site-footer__newsletter-texts form input[type=submit] {
    height: 47px;
    max-width: 35%;
  }
}
@media screen and (max-width: 500px) {
  .site-footer__newsletter-texts form input[type=submit] {
    min-width: auto;
    max-width: 100%;
    width: 100%;
    margin-top: 8px;
  }
}
@media screen and (max-width: 991px) {
  .site-footer__newsletter-texts form {
    margin-top: 23px;
  }
}
@media screen and (max-width: 991px) {
  .site-footer__newsletter-texts {
    max-width: 440px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__newsletter-texts {
    max-width: 100%;
  }
}

.site-footer__newsletter-title {
  font-size: 32px;
}
@media screen and (max-width: 1199px) {
  .site-footer__newsletter-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__newsletter-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .site-footer__newsletter-title {
    font-size: 22px;
  }
}

.site-footer__newsletter-desc {
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  margin-top: 12px;
}
@media screen and (max-width: 1199px) {
  .site-footer__newsletter-desc {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__newsletter-desc {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .site-footer__newsletter-desc {
    font-size: 18px;
    line-height: 1.5;
    padding-right: 5px;
    margin-top: 13px;
  }
}

.site-footer__newsletter-notice {
  font-size: 11px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #5e5e5e;
  margin-top: 16px;
}
.site-footer__newsletter-notice a {
  position: relative;
  color: #5e5e5e;
}
.site-footer__newsletter-notice a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #5e5e5e;
  position: absolute;
  bottom: 2px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-footer__newsletter-notice a:hover::before {
    width: 0;
  }
}
@media screen and (max-width: 575px) {
  .site-footer__newsletter-notice {
    margin-top: 13px;
  }
}

.site-footer__newsletter-image-decor {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 457px;
  width: 100%;
}
.site-footer__newsletter-image-decor picture {
  width: 100%;
  height: 100%;
}
.site-footer__newsletter-image-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .site-footer__newsletter-image-decor {
    right: -170px;
  }
}
@media screen and (max-width: 991px) {
  .site-footer__newsletter-image-decor {
    max-width: 437px;
    right: -200px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__newsletter-image-decor {
    right: 0;
    max-width: 100%;
    max-height: 180px;
  }
}
@media screen and (max-width: 400px) {
  .site-footer__newsletter-image-decor {
    max-height: 200px;
  }
}

.site-footer__middle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  gap: 32px;
}
@media screen and (max-width: 1199px) {
  .site-footer__middle {
    gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .site-footer__middle {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__middle {
    gap: 0;
  }
}

.site-footer__middle-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 216px;
  width: 100%;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 1199px) {
  .site-footer__middle-box {
    max-width: 190px;
  }
}
@media screen and (max-width: 991px) {
  .site-footer__middle-box {
    max-width: 22%;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__middle-box {
    max-width: 100%;
    border-bottom: 2px solid #322e22;
  }
}

.site-footer__middle-box--large {
  max-width: initial;
  width: auto;
}
.site-footer__middle-box--large .site-footer__middle-box-links {
  display: block;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: 113px;
     -moz-column-gap: 113px;
          column-gap: 113px;
  margin-right: 81px;
}
@media screen and (max-width: 1400px) {
  .site-footer__middle-box--large .site-footer__middle-box-links {
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .site-footer__middle-box--large .site-footer__middle-box-links {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .site-footer__middle-box--large .site-footer__middle-box-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media screen and (max-width: 991px) {
  .site-footer__middle-box--large {
    max-width: 22%;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__middle-box--large {
    max-width: 100%;
    width: 100%;
  }
}

.site-footer__middle-box-title {
  position: relative;
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.3px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  margin-bottom: 31px;
}
.site-footer__middle-box-title.is-active svg {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.site-footer__middle-box-title svg {
  display: none;
  width: 16px;
  height: 16px;
  color: #322e22;
  fill: #322e22;
  position: absolute;
  top: 50%;
  right: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 767px) {
  .site-footer__middle-box-title svg {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__middle-box-title {
    width: 100%;
    margin-bottom: 0;
    padding: 17px 8px 14px;
  }
}

.site-footer__middle-box-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .site-footer__middle-box-links {
    height: 0;
    overflow: hidden;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
    -webkit-transition: 350ms ease;
    transition: 350ms ease;
  }
}
.site-footer__middle-box-links.is-open {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  height: auto;
  opacity: 1;
  padding: 2px 8px 0;
}

.site-footer__middle-box-link-wrap {
  margin-bottom: 16px;
  list-style-type: none;
}

.site-footer__middle-box-link {
  position: relative;
  display: block;
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 21px;
  color: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.site-footer__middle-box-link span {
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 1px), #322e22 1px);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size 0.5s;
  transition: background-size 0.5s;
  display: block;
  max-width: 184px;
}
@media screen and (max-width: 767px) {
  .site-footer__middle-box-link span {
    max-width: unset;
  }
}
.site-footer__middle-box-link sup {
  font-size: 9px;
  line-height: 1.2;
}
@media only screen and (min-width: 1199px) {
  .site-footer__middle-box-link:hover span {
    background-size: 100% 100%;
  }
}

.site-footer__logo-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 7px 0 40px;
}
@media screen and (max-width: 767px) {
  .site-footer__logo-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 35px 0 33px;
  }
}

.site-footer__logo-block-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 75%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .site-footer__logo-block-left {
    max-width: 65%;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__logo-block-left {
    max-width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.site-footer__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 60px;
  width: 100%;
  margin-right: 64px;
}
.site-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .site-footer__logo {
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__logo {
    margin-right: 0;
    margin-top: 33px;
  }
}

.site-footer__desc {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  max-width: 500px;
}
@media screen and (max-width: 991px) {
  .site-footer__desc {
    max-width: 340px;
  }
  .site-footer__desc br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__desc {
    max-width: 100%;
    text-align: center;
    margin-top: 31px;
  }
}

.site-footer__logo-block-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 25%;
  width: 100%;
  padding-right: 2px;
}
@media screen and (max-width: 991px) {
  .site-footer__logo-block-right {
    max-width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__logo-block-right {
    max-width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.site-footer__social {
  width: 20px;
  height: 20px;
  margin-left: 20px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.site-footer__social:first-child {
  margin-left: 0;
}
.site-footer__social svg {
  width: 20px;
  height: 20px;
  color: #322e22;
  fill: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-footer__social:hover svg {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.site-footer__bottom {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid #c6dff1;
  padding: 11px 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .site-footer__bottom {
    padding: 17px 0 43px;
  }
}

.site-footer__bottom-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.site-footer__bottom-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 60%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .site-footer__bottom-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
  }
}

.site-footer__bottom-left-text {
  font-size: 10px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-right: 310px;
}
.site-footer__bottom-left-text sup {
  font-size: 6px;
}
@media screen and (max-width: 1199px) {
  .site-footer__bottom-left-text {
    margin-right: 80px;
  }
}
@media screen and (max-width: 991px) {
  .site-footer__bottom-left-text {
    margin-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__bottom-left-text {
    font-size: 12px;
    text-align: center;
    margin-right: 0;
    margin-top: 11px;
  }
}

.site-footer__bottom-left-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .site-footer__bottom-left-links {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.site-footer__bottom-left-link {
  position: relative;
  font-size: 10px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-right: 35px;
}
.site-footer__bottom-left-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #5e5e5e;
  position: absolute;
  bottom: 2px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-footer__bottom-left-link:hover::before {
    width: 0;
  }
}
.site-footer__bottom-left-link:last-child {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .site-footer__bottom-left-link {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__bottom-left-link {
    font-size: 12px;
    text-align: center;
    margin-right: 35px;
  }
}

.site-footer__bottom-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 30%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .site-footer__bottom-right {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
    margin-top: 10px;
  }
}

.site-footer__bottom-right-text {
  font-size: 10px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
}
.site-footer__bottom-right-text a {
  position: relative;
  color: #322e22;
}
.site-footer__bottom-right-text a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #5e5e5e;
  position: absolute;
  bottom: 1px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .site-footer__bottom-right-text a:hover::before {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__bottom-right-text {
    font-size: 12px;
    text-align: center;
  }
}

.site-footer__image-decor {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.site-footer__image-decor picture {
  width: 100%;
  height: 100%;
}
.site-footer__image-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .site-footer__image-decor {
    bottom: 0;
  }
}

/*--------------------------------------------------------------
## 404
--------------------------------------------------------------*/
.page-404 {
  background-color: #fff;
  padding: 108px 0 107px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .page-404 {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .page-404 {
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .page-404 {
    padding: 26px 9px 38px;
  }
}

.page-404__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.page-404__left {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 464px;
  width: 100%;
  z-index: 20;
}
@media screen and (max-width: 1400px) {
  .page-404__left {
    max-width: 40%;
  }
}
@media screen and (max-width: 1199px) {
  .page-404__left {
    max-width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .page-404__left {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .page-404__title {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .page-404__title {
    font-size: 24px;
  }
}

.page-404__desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .page-404__desc {
    font-size: 16px;
    text-align: center;
  }
}

.page-404__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 17px;
}

.page-404__btn {
  min-width: auto;
  max-width: 48.2%;
  width: 100%;
  margin-top: 15px;
}
@media screen and (max-width: 1199px) {
  .page-404__btn {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-404__btn {
    max-width: 48.2%;
  }
}
@media screen and (max-width: 575px) {
  .page-404__btn {
    max-width: 100%;
  }
}

.page-404__right {
  position: relative;
  max-width: 555px;
  width: 100%;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media screen and (max-width: 1400px) {
  .page-404__right {
    max-width: 50%;
  }
}
@media screen and (max-width: 1199px) {
  .page-404__right {
    max-width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .page-404__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
    margin-top: 50px;
  }
}

.page-404__num {
  position: relative;
  font-size: 300px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  .page-404__num {
    font-size: 270px;
  }
}
@media screen and (max-width: 991px) {
  .page-404__num {
    font-size: 210px;
  }
}
@media screen and (max-width: 767px) {
  .page-404__num {
    font-size: 180px;
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .page-404__num {
    font-size: 161px;
  }
}

.page-404__right-decor-left {
  max-width: 264px;
  width: 100%;
  position: absolute;
  top: -25px;
  left: -196px;
  z-index: 5;
}
.page-404__right-decor-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1400px) {
  .page-404__right-decor-left {
    max-width: 210px;
    top: -15px;
    left: -140px;
  }
}
@media screen and (max-width: 1199px) {
  .page-404__right-decor-left {
    max-width: 190px;
    top: -45px;
    left: -100px;
  }
}
@media screen and (max-width: 991px) {
  .page-404__right-decor-left {
    max-width: 140px;
    top: -35px;
    left: -40px;
  }
}
@media screen and (max-width: 575px) {
  .page-404__right-decor-left {
    max-width: 120px;
    top: -43px;
    left: -49px;
  }
}

.page-404__right-decor-right {
  max-width: 182px;
  width: 100%;
  position: absolute;
  bottom: -126px;
  right: -130px;
  z-index: 15;
}
.page-404__right-decor-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1400px) {
  .page-404__right-decor-right {
    right: -30px;
  }
}
@media screen and (max-width: 1199px) {
  .page-404__right-decor-right {
    max-width: 155px;
    bottom: -137px;
    right: -50px;
  }
}
@media screen and (max-width: 991px) {
  .page-404__right-decor-right {
    max-width: 132px;
    bottom: -122px;
    right: -50px;
  }
}
@media screen and (max-width: 767px) {
  .page-404__right-decor-right {
    bottom: -90px;
  }
}
@media screen and (max-width: 575px) {
  .page-404__right-decor-right {
    max-width: 69px;
    bottom: -36px;
    right: -22px;
  }
}

/*--------------------------------------------------------------
## Login/Register
--------------------------------------------------------------*/
.login-register {
  background-color: #fff;
  padding: 89px 0 90px;
}
@media screen and (max-width: 767px) {
  .login-register {
    padding: 70px 0 90px;
  }
}
@media screen and (max-width: 500px) {
  .login-register {
    padding: 26px 9px 110px;
  }
}

.register {
  padding: 66px 0 67px;
}
.register .login-register__box-link-text {
  margin-top: -3px;
}
.register .login-register__box-link {
  margin-top: 17px;
}
@media screen and (max-width: 500px) {
  .register {
    padding: 26px 9px 43px;
  }
}

.login-register__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 408px;
  width: 100%;
  margin: 0 auto;
}

.login-register__box-title {
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .login-register__box-title {
    font-size: 24px;
  }
}

.login-register__box-desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  .login-register__box-desc {
    font-size: 16px;
  }
}

.login-register__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 17px;
}
@media screen and (max-width: 500px) {
  .login-register__form {
    margin-top: 16px;
  }
}

.login-register__form-input {
  position: relative;
  width: 100%;
  margin-top: 16px;
}

.login-register__form-input--pass input {
  padding-right: 50px;
}

.login-register__form-input--submit {
  margin-top: 32px;
}
.login-register__form-input--submit input {
  min-width: 100%;
}

.login-register__box-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.login-register__box-link {
  position: relative;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.3;
  color: #322e22;
  text-transform: uppercase;
  text-align: center;
}
.login-register__box-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: -3px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .login-register__box-link:hover::before {
    width: 0;
  }
}
@media screen and (max-width: 767px) {
  .login-register__box-link {
    letter-spacing: 0.7px;
  }
}

.login-register__box-link-text {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  text-align: center;
  margin-top: 22px;
}
.login-register__box-link-text .login-register__box-link {
  margin-left: 7px;
}
@media screen and (max-width: 370px) {
  .login-register__box-link-text .login-register__box-link {
    margin-top: 5px;
  }
}
@media screen and (max-width: 500px) {
  .login-register__box-link-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 370px) {
  .login-register__box-link-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.login-register__form-input-checkbox {
  position: relative;
  cursor: pointer;
  margin-top: 21px;
  width: 115%;
  left: -7.5%;
}
@media screen and (max-width: 500px) {
  .login-register__form-input-checkbox {
    width: auto;
    left: auto;
  }
}
.login-register__form-input-checkbox input[type=checkbox] {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  opacity: 0;
  z-index: 10;
}
@media only screen and (min-width: 1199px) {
  .login-register__form-input-checkbox:hover .login-register__form-input-checkbox-label::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.login-register__form-input-checkbox-label {
  position: relative;
  display: block;
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  cursor: pointer;
  padding-left: 20px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.login-register__form-input-checkbox-label::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #322e22;
  border-radius: 2px;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.login-register__form-input-checkbox-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: solid #322e22;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}

.login-register__form-input-checkbox input[type=checkbox]:checked + span.login-register__form-input-checkbox-label::after {
  opacity: 1;
  visibility: visible;
}

.forgot-pass-initial {
  display: none;
}

.forgot-pass {
  padding: 66px 0 165px;
}
.forgot-pass .login-register__box {
  max-width: 450px;
}
.forgot-pass .login-register__form {
  max-width: 408px;
  margin-top: 9px;
}
@media screen and (max-width: 500px) {
  .forgot-pass .login-register__form {
    max-width: 328px;
  }
}
.forgot-pass .login-register__box-links {
  margin-top: 5px;
}
@media screen and (max-width: 575px) {
  .forgot-pass {
    padding: 26px 0 160px;
  }
}

.forgot-pass-check-email {
  display: none;
}

.forgot-pass-email {
  padding: 66px 0 156px;
}
.forgot-pass-email .login-register__box {
  max-width: 570px;
}
.forgot-pass-email .login-register__form {
  max-width: 408px;
  margin-top: 9px;
}
@media screen and (max-width: 500px) {
  .forgot-pass-email .login-register__form {
    max-width: 328px;
  }
}
.forgot-pass-email .login-register__box-links {
  margin-top: 14px;
}
.forgot-pass-email .login-register__box-links .login-register__box-link-text {
  margin-top: 13px;
}
@media screen and (max-width: 575px) {
  .forgot-pass-email {
    padding: 26px 0 126px;
  }
}

.reset-pass {
  padding: 66px 0 152px;
}
.reset-pass .login-register__box {
  max-width: 660px;
}
.reset-pass .login-register__form {
  max-width: 408px;
  margin-top: 9px;
}
@media screen and (max-width: 500px) {
  .reset-pass .login-register__form {
    max-width: 328px;
  }
}
@media screen and (max-width: 575px) {
  .reset-pass {
    padding: 26px 0 103px;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## banner
--------------------------------------------------------------*/
.banner {
  height: 100vh;
  position: relative;
  max-height: 600px;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.banner .background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .banner {
    max-height: 400px;
  }
}

.banner__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
}

.banner__caption-icon {
  color: #fff;
  font-size: 20px;
}

.banner__btn {
  margin-top: 30px;
}

/*--------------------------------------------------------------
## hero-headline
--------------------------------------------------------------*/
.hero-headline {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #c6dff1;
  min-height: 300px;
  padding: 40px 0;
}
.hero-headline.second-bcg {
  background-color: #eef5fb;
  min-height: 306px;
}
.hero-headline.second-bcg .hero-headline__pretitle {
  margin-top: 2px;
}
@media screen and (max-width: 991px) {
  .hero-headline.second-bcg {
    min-height: 250px;
  }
}
@media screen and (max-width: 575px) {
  .hero-headline.second-bcg {
    min-height: 206px;
  }
}
@media screen and (max-width: 991px) {
  .hero-headline {
    min-height: 250px;
  }
}
@media screen and (max-width: 575px) {
  .hero-headline {
    min-height: 176px;
    margin-top: -15px;
  }
}

.hero-headline__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 5;
}

.hero-headline__pretitle {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.12px;
  line-height: 1.3;
  color: #322e22;
  text-align: center;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .hero-headline__pretitle {
    margin-top: 2px;
    margin-bottom: 10px;
  }
}

.hero-headline__title {
  text-align: center;
}
@media screen and (max-width: 575px) {
  .hero-headline__title {
    max-width: 300px;
  }
}

.hero-headline__desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  max-width: 650px;
  margin-top: 16px;
}
@media screen and (max-width: 575px) {
  .hero-headline__desc {
    font-size: 16px;
  }
}

.hero-headline__background {
  display: block;
  max-width: 1600px;
  width: 100%;
  height: 100%;
  padding: 0 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hero-headline__background picture {
  width: 100%;
  height: 100%;
}
.hero-headline__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1600px) {
  .hero-headline__background {
    padding: 0;
  }
}

.hero-headline__search {
  position: relative;
  max-width: 408px;
  width: 100%;
  margin-top: 40px;
}
.hero-headline__search input {
  width: 100%;
  height: 51px;
  padding-right: 50px;
}
.hero-headline__search button {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  outline: none;
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.hero-headline__search button svg {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1199px) {
  .hero-headline__search button:hover {
    -webkit-transform: translateY(-50%) scale(1.1);
            transform: translateY(-50%) scale(1.1);
  }
}
@media screen and (max-width: 575px) {
  .hero-headline__search {
    max-width: 329px;
    margin-top: 32px;
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
## about-microgel
--------------------------------------------------------------*/
.about-microgel {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  padding: 81px 0 80px;
}
@media screen and (max-width: 1199px) {
  .about-microgel {
    padding: 45px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-microgel {
    padding: 41px 0 0;
  }
}

.about-microgel__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 47.5%;
  width: 100%;
  margin-left: auto;
  z-index: 5;
}
@media screen and (max-width: 1199px) {
  .about-microgel__wrap {
    max-width: 43%;
  }
}
@media screen and (max-width: 991px) {
  .about-microgel__wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about-microgel__wrap {
    padding: 0 9px;
  }
}

.about-microgel__title {
  line-height: 1.24;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .about-microgel__title {
    margin-bottom: 0;
  }
}

.about-microgel__desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  max-width: 100%;
  margin-top: 24px;
}
@media screen and (max-width: 1199px) {
  .about-microgel__desc {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .about-microgel__desc {
    margin-top: 24px;
  }
}

.about-microgel__background {
  display: block;
  max-width: 823px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.about-microgel__background picture {
  width: 100%;
  height: 100%;
}
.about-microgel__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (max-width: 1199px) {
  .about-microgel__background {
    max-width: 60%;
  }
}
@media screen and (max-width: 991px) {
  .about-microgel__background {
    max-width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .about-microgel__background {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    margin-top: 14px;
  }
}

/*--------------------------------------------------------------
## how-it-works
--------------------------------------------------------------*/
.how-it-works {
  position: relative;
  background-color: #eef5fb;
  padding: 64px 0;
}
@media screen and (max-width: 575px) {
  .how-it-works {
    padding: 40px 9px;
  }
}

.how-it-works__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  padding: 65px 25px 125px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .how-it-works__wrap {
    padding: 50px 20px 60px;
  }
}
@media screen and (max-width: 575px) {
  .how-it-works__wrap {
    padding: 33px 20px;
  }
}

.how-it-works__title {
  max-width: 720px;
  text-align: center;
}

.how-it-works__desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  max-width: 720px;
  margin-top: 15px;
}
@media screen and (max-width: 575px) {
  .how-it-works__desc {
    font-size: 16px;
    margin-top: 16px;
  }
}

.how-it-works__infos {
  position: relative;
  margin-top: 32px;
}
@media screen and (max-width: 1199px) {
  .how-it-works__infos {
    padding: 0;
    margin-top: 35px;
  }
}
@media screen and (max-width: 991px) {
  .how-it-works__infos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.how-it-works__infos-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 160px) minmax(0, 160px) minmax(0, 160px) 100px minmax(0, 160px) 100px minmax(0, 160px);
  grid-template-rows: auto 80px auto;
  grid-template-areas: ". item-2 . . . . ." "item-1 arrow-1 item-4 arrow-2 item-5 arrow-3 item-6" "item-1 item-3 item-4 . item-5 . item-6";
}
@media screen and (max-width: 991px) {
  .how-it-works__infos-wrapper {
    grid-template-columns: minmax(0, 140px) minmax(0, 140px);
    grid-template-rows: repeat(2, auto) 85px repeat(2, auto);
    grid-template-areas: "item-1 item-1" "item-2 item-3" "arrow-1 arrow-1" "item-4 item-4" "item-5 item-5" "item-6 item-6";
  }
}

.how-it-works__two-images-wrapper-image {
  position: relative;
  height: 100%;
}

.how-it-works__two-images-separator {
  grid-area: arrow-1;
}
@media screen and (max-width: 991px) {
  .how-it-works__two-images-separator {
    width: 150px;
    justify-self: center;
    -webkit-align-self: self-end;
        -ms-flex-item-align: self-end;
            align-self: self-end;
  }
}

.how-it-works__info-image-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.how-it-works__info-image-arrow--1 {
  grid-area: arrow-2;
}
.how-it-works__info-image-arrow--2 {
  grid-area: arrow-3;
}
@media screen and (max-width: 991px) {
  .how-it-works__info-image-arrow {
    display: none;
  }
}

.how-it-works__info {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 10;
  gap: 21px;
}
@media screen and (max-width: 1199px) {
  .how-it-works__info {
    gap: 10px;
  }
}
@media screen and (max-width: 991px) {
  .how-it-works__info {
    gap: 16px;
  }
}
.how-it-works__info--reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.how-it-works__info::before {
  content: "";
  display: none;
  width: 1px;
  height: 24px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 991px) {
  .how-it-works__info::before {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .how-it-works__info {
    padding-top: 24px;
    margin-top: 11px;
  }
}
.how-it-works__info--1 {
  grid-area: item-1;
}
.how-it-works__info--2 {
  grid-area: item-2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.how-it-works__info--3 {
  grid-area: item-3;
}
.how-it-works__info--4 {
  grid-area: item-4;
}
.how-it-works__info--5 {
  grid-area: item-5;
}
.how-it-works__info--6 {
  grid-area: item-6;
}
@media screen and (max-width: 991px) {
  .how-it-works__info--1 {
    grid-area: item-1;
    padding-top: unset;
    margin-top: unset;
    padding-bottom: 32px;
    margin-bottom: 4px;
  }
  .how-it-works__info--1::before {
    top: unset;
    bottom: 0;
    height: 32px;
  }
  .how-it-works__info--2 {
    grid-area: item-2;
    padding-top: unset;
    margin-top: unset;
  }
  .how-it-works__info--2::before {
    display: none;
  }
  .how-it-works__info--2 .how-it-works__info-text {
    padding-right: 3px;
  }
  .how-it-works__info--3 {
    grid-area: item-3;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: unset;
    margin-top: unset;
  }
  .how-it-works__info--3::before {
    display: none;
  }
  .how-it-works__info--3 .how-it-works__info-text {
    padding-left: 3px;
  }
  .how-it-works__info--4 {
    grid-area: item-4;
    padding-top: unset;
  }
  .how-it-works__info--4::before {
    display: none;
  }
  .how-it-works__info--5 {
    grid-area: item-5;
  }
  .how-it-works__info--6 {
    grid-area: item-6;
  }
}

.how-it-works__info-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.how-it-works__info-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .how-it-works__info-image {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 991px) {
  .how-it-works__info-image {
    width: 80px;
    height: 80px;
    margin-top: auto;
  }
}

.how-it-works__info-text {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 150%; /* 18px */
  color: #322e22;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .how-it-works__info-text {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .how-it-works__info-text {
    display: block;
    font-size: 13px;
    min-height: initial;
    letter-spacing: -0.25px;
  }
}

/*--------------------------------------------------------------
## about-the-nutrition
--------------------------------------------------------------*/
.about-the-nutrition {
  position: relative;
  background-color: #fff;
  padding: 79px 0 80px;
}
@media screen and (max-width: 767px) {
  .about-the-nutrition {
    padding: 60px 0 50px;
  }
}
@media screen and (max-width: 575px) {
  .about-the-nutrition {
    padding: 48px 9px 40px;
  }
}

.about-the-nutrition__wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 55px;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .about-the-nutrition__wrap {
    grid-gap: 15px;
  }
}
@media screen and (max-width: 575px) {
  .about-the-nutrition__wrap {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
  }
}

.about-the-nutrition__texts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.about-the-nutrition__title {
  font-size: 28px;
  line-height: 1.26;
  max-width: 460px;
}
@media screen and (max-width: 991px) {
  .about-the-nutrition__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .about-the-nutrition__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .about-the-nutrition__title {
    font-size: 24px;
  }
}

.about-the-nutrition__desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 23px;
}
@media screen and (max-width: 991px) {
  .about-the-nutrition__desc {
    font-size: 14px;
    letter-spacing: -0.1px;
  }
}
@media screen and (max-width: 767px) {
  .about-the-nutrition__desc {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .about-the-nutrition__desc {
    font-size: 16px;
    letter-spacing: 0;
    margin-top: 24px;
  }
}

.about-the-nutrition__image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.about-the-nutrition__image img {
  width: auto;
  height: auto;
}
@media screen and (max-width: 575px) {
  .about-the-nutrition__image img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 575px) {
  .about-the-nutrition__image {
    margin-top: 33px;
  }
}

.about-the-nutrition__background {
  display: block;
  max-width: 442px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.about-the-nutrition__background picture {
  width: 100%;
  height: 100%;
}
.about-the-nutrition__background img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 575px) {
  .about-the-nutrition__background img {
    width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .about-the-nutrition__background {
    max-width: 280px;
  }
}
@media screen and (max-width: 991px) {
  .about-the-nutrition__background {
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .about-the-nutrition__background {
    max-width: 150px;
  }
}
@media screen and (max-width: 575px) {
  .about-the-nutrition__background {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
## statistics-block
--------------------------------------------------------------*/
.statistics-block {
  position: relative;
  background-color: #eef5fb;
  padding: 80px 0 78px;
  overflow: hidden;
}
.statistics-block .container {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .statistics-block {
    padding: 60px 0;
  }
}
@media screen and (max-width: 500px) {
  .statistics-block {
    padding: 48px 0 50px;
  }
}

.statistics-block__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.statistics-block__title {
  text-align: center;
  margin-top: 17px;
}
.statistics-block__title strong {
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 500px) {
  .statistics-block__title strong {
    margin-top: 1px;
  }
}
@media screen and (max-width: 1199px) {
  .statistics-block__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-block__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .statistics-block__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .statistics-block__title {
    font-size: 22px;
    margin-top: 26px;
  }
}
@media screen and (max-width: 370px) {
  .statistics-block__title {
    font-size: 21px;
  }
}

.statistics-block__upper-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 166px;
  width: 100%;
}
.statistics-block__upper-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 500px) {
  .statistics-block__upper-image {
    max-width: 146px;
  }
}

.statistics-block__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .statistics-block__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .statistics-block__wrap {
    padding: 0;
    margin-top: 25px;
  }
}

.statistics-block__image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 47.7%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-left: -17px;
}
.statistics-block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 400px) {
  .statistics-block__image img {
    min-height: 247px;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
@media screen and (max-width: 350px) {
  .statistics-block__image img {
    min-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 1199px) {
  .statistics-block__image {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .statistics-block__image {
    max-width: initial;
    margin-top: 0;
    margin-bottom: 25px;
    min-height: 247px;
  }
}

.statistics-block__texts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 52.3%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .statistics-block__texts {
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .statistics-block__texts {
    padding: 0 9px;
  }
}

.statistics-block__texts-titles {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.statistics-block__texts-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 63px;
}
.statistics-block__texts-title:last-child {
  margin-right: 0;
}
.statistics-block__texts-title span {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  line-height: 1.3;
  color: #322e22;
}
@media screen and (max-width: 1199px) {
  .statistics-block__texts-title {
    max-width: 48%;
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-block__texts-title {
    margin-right: 53px;
  }
}
@media screen and (max-width: 370px) {
  .statistics-block__texts-title {
    margin-right: 15px;
  }
}

.statistics-block__texts-title-upper {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .statistics-block__texts-title-upper {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-block__texts-title-upper {
    font-size: 14px;
  }
}

.statistics-block__texts-title-middle {
  font-size: 64px;
  font-weight: bold;
  letter-spacing: 0.4px;
  margin-top: 2px;
}
@media screen and (max-width: 1199px) {
  .statistics-block__texts-title-middle {
    font-size: 55px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-block__texts-title-middle {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-block__texts-title-middle {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.2px;
    margin-top: 2px;
  }
}

.statistics-block__texts-title-bottom {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.15px;
  margin-top: 2px;
}
@media screen and (max-width: 1199px) {
  .statistics-block__texts-title-bottom {
    font-size: 12px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .statistics-block__texts-title-bottom {
    font-size: 14px;
    letter-spacing: -0.2px;
    margin-top: 1px;
  }
}

.statistics-block__texts-desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 41px;
}
@media screen and (max-width: 1199px) {
  .statistics-block__texts-desc {
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-block__texts-desc {
    font-size: 14px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-block__texts-desc {
    font-size: 16px;
    margin-top: 23px;
  }
}

.statistics-block__texts-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 27px;
}
@media screen and (max-width: 991px) {
  .statistics-block__texts-buttons {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .statistics-block__texts-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32px;
  }
}

.statistics-block__texts-btn {
  margin-right: 6px;
  margin-top: 12px;
}
@media screen and (max-width: 1199px) {
  .statistics-block__texts-btn {
    padding: 14px 10px;
    min-width: 170px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-block__texts-btn {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .statistics-block__texts-btn {
    margin-right: 6px;
  }
}
@media screen and (max-width: 500px) {
  .statistics-block__texts-btn {
    min-width: 100%;
    margin-top: 0;
    margin-right: 0;
  }
}

.statistics-block__texts-btn-link {
  position: relative;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  margin-top: 10px;
  margin-left: 36px;
}
.statistics-block__texts-btn-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: -3px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.statistics-block__texts-btn-link svg {
  position: absolute;
  top: 0;
  left: -26px;
}
@media screen and (max-width: 1199px) {
  .statistics-block__texts-btn-link svg {
    left: -20px;
  }
}
@media screen and (max-width: 500px) {
  .statistics-block__texts-btn-link svg {
    left: -26px;
  }
}
@media only screen and (min-width: 1199px) {
  .statistics-block__texts-btn-link:hover::after {
    width: 0;
  }
}
@media screen and (max-width: 1199px) {
  .statistics-block__texts-btn-link {
    font-size: 14px;
    letter-spacing: 0;
    margin-left: 20px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-block__texts-btn-link {
    margin-top: 20px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-block__texts-btn-link {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .statistics-block__texts-btn-link {
    font-size: 15px;
    margin-left: 0;
    letter-spacing: 1.5px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 370px) {
  .statistics-block__texts-btn-link {
    font-size: 13px;
    letter-spacing: 1px;
  }
}

.statistics-block__background {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 670px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.statistics-block__background img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1400px) {
  .statistics-block__background {
    max-width: 540px;
  }
}
@media screen and (max-width: 1199px) {
  .statistics-block__background {
    max-width: 430px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-block__background {
    max-width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-block__background {
    max-width: 260px;
  }
}
@media screen and (max-width: 500px) {
  .statistics-block__background {
    max-width: 174px;
    right: -12px;
  }
}

/*--------------------------------------------------------------
## usps-block
--------------------------------------------------------------*/
.usps-block {
  position: relative;
  background-color: #fff;
  padding: 64px 0 0;
  overflow: hidden;
}
.usps-block .container {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .usps-block {
    padding: 41px 0 0;
  }
}

.usps-block__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

.usps-block__title {
  text-align: center;
}
@media screen and (max-width: 370px) {
  .usps-block__title strong {
    display: block;
  }
}

.usps-block__desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  max-width: 640px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .usps-block__desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .usps-block__desc {
    padding: 0 3px;
    margin-top: 11px;
  }
}

.usps-block__bottom {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 149px;
  padding: 0 126px 101px;
}
@media screen and (max-width: 1199px) {
  .usps-block__bottom {
    margin-top: 100px;
    padding: 0 0 110px;
  }
}
@media screen and (max-width: 991px) {
  .usps-block__bottom {
    padding: 0 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .usps-block__bottom {
    margin-top: 40px;
    padding: 0 0 50px;
  }
}
@media screen and (max-width: 575px) {
  .usps-block__bottom {
    margin-top: 37px;
    padding: 0 0 214px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.usps-block__bottom-boxes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 30%;
  width: 100%;
}
.usps-block__bottom-boxes .usps-block__bottom-box {
  margin-top: 49px;
}
.usps-block__bottom-boxes .usps-block__bottom-box:first-child {
  margin-top: 0;
}
@media screen and (max-width: 991px) {
  .usps-block__bottom-boxes .usps-block__bottom-box {
    margin-top: 35px;
  }
}
@media screen and (max-width: 575px) {
  .usps-block__bottom-boxes .usps-block__bottom-box {
    margin-top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .usps-block__bottom-boxes {
    max-width: 33%;
  }
}
@media screen and (max-width: 767px) {
  .usps-block__bottom-boxes {
    max-width: 36.5%;
  }
}
@media screen and (max-width: 575px) {
  .usps-block__bottom-boxes {
    max-width: 50%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 370px) {
  .usps-block__bottom-boxes {
    max-width: 100%;
  }
}

.usps-block__bottom-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.usps-block__bottom-box-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 49px;
  height: 49px;
}
.usps-block__bottom-box-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .usps-block__bottom-box-image {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 575px) {
  .usps-block__bottom-box-image {
    width: 49px;
    height: 49px;
  }
}

.usps-block__bottom-box-title {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0.8px;
  line-height: 1.2;
  color: #322e22;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 991px) {
  .usps-block__bottom-box-title {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-top: 18px;
  }
}
@media screen and (max-width: 575px) {
  .usps-block__bottom-box-title {
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-top: 24px;
  }
}

.usps-block__bottom-box-desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  padding: 0 4px;
  margin-top: 9px;
}
@media screen and (max-width: 991px) {
  .usps-block__bottom-box-desc {
    font-size: 14px;
    padding: 0 17px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .usps-block__bottom-box-desc {
    font-size: 13px;
    padding: 0 3px;
  }
}
@media screen and (max-width: 575px) {
  .usps-block__bottom-box-desc {
    font-size: 14px;
    padding: 0 2px;
    margin-top: 9px;
  }
}

.usps-block__animation-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 232px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .usps-block__animation-box {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 575px) {
  .usps-block__animation-box {
    left: 29px;
    -webkit-transform: translateY(29.2%) rotate(57deg);
            transform: translateY(29.2%) rotate(57deg);
  }
}

.usps-block__animation-gel {
  max-width: 100px;
}
.usps-block__animation-gel img {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .usps-block__animation-gel {
    max-width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .usps-block__animation-gel {
    max-width: 70px;
  }
}

.usps-block__bottom-image {
  z-index: 5;
  overflow: hidden;
  background: #fff;
}
.usps-block__bottom-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .usps-block__bottom-image {
    max-width: 190px;
  }
}
@media screen and (max-width: 767px) {
  .usps-block__bottom-image {
    max-width: 135px;
  }
}
@media screen and (max-width: 575px) {
  .usps-block__bottom-image {
    max-width: 144px;
    bottom: -99px;
    left: 70px;
    -webkit-transform: translate(0) rotate(0);
            transform: translate(0) rotate(0);
  }
}

/*--------------------------------------------------------------
## step-by-step  
--------------------------------------------------------------*/
.step-by-step {
  position: relative;
  background-color: #eef5fb;
  padding: 94px 0;
}
@media screen and (max-width: 767px) {
  .step-by-step .container {
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .step-by-step {
    padding: 70px 0;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step {
    padding: 70px 0 0;
  }
}
@media screen and (max-width: 575px) {
  .step-by-step {
    padding: 53px 0 0;
  }
}

.step-by-step__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .step-by-step__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.step-by-step__left {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 48%;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .step-by-step__left {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step__left {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
    padding: 0 15px;
  }
}

.step-by-step__left-background {
  position: absolute;
  width: 100%;
  max-width: 507px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}
@media screen and (max-width: 991px) {
  .step-by-step__left-background {
    max-width: 300px;
    left: 40%;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step__left-background {
    max-width: 275px;
    left: 50%;
  }
}

.step-by-step__image-wrap {
  position: relative;
  width: 376px;
  height: 376px;
  border-radius: 50%;
}
@media screen and (max-width: 1199px) {
  .step-by-step__image-wrap {
    width: 310px;
    height: 310px;
  }
}
@media screen and (max-width: 991px) {
  .step-by-step__image-wrap {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step__image-wrap {
    width: 204px;
    height: 204px;
  }
}

.step-by-step__bubble-icons {
  width: 100%;
  height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  z-index: 20;
}

.step-by-step__bubble-icon {
  position: absolute;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
.step-by-step__bubble-icon.active {
  width: 162px;
  height: 162px;
  background-color: #2d2a1f;
}
.step-by-step__bubble-icon.active .step-by-step__bubble-text {
  font-size: 17px;
  color: #fff;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media screen and (max-width: 1199px) {
  .step-by-step__bubble-icon.active .step-by-step__bubble-text {
    font-size: 14px;
  }
}
.step-by-step__bubble-icon.active .step-by-step__bubble-image img {
  -webkit-filter: brightness(1) invert(1);
          filter: brightness(1) invert(1);
  max-height: 68px;
}
@media screen and (max-width: 767px) {
  .step-by-step__bubble-icon.active .step-by-step__bubble-image img {
    max-height: 51px;
  }
}
@media screen and (max-width: 1199px) {
  .step-by-step__bubble-icon.active {
    width: 114px;
    height: 114px;
  }
}
@media screen and (max-width: 1199px) {
  .step-by-step__bubble-icon {
    width: 98px;
    height: 98px;
  }
}

.step-by-step__bubble-icon1 {
  left: -44px;
  top: 8px;
}
.step-by-step__bubble-icon1.active {
  left: -67px;
  top: -15px;
}
@media screen and (max-width: 1199px) {
  .step-by-step__bubble-icon1.active {
    left: -34px;
    top: 18px;
  }
}
@media screen and (max-width: 991px) {
  .step-by-step__bubble-icon1.active {
    left: -25px;
    top: -22px;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step__bubble-icon1.active {
    left: -49px;
    top: -23px;
  }
}
@media screen and (max-width: 1199px) {
  .step-by-step__bubble-icon1 {
    left: -34px;
    top: 18px;
  }
}
@media screen and (max-width: 991px) {
  .step-by-step__bubble-icon1 {
    left: -25px;
    top: -22px;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step__bubble-icon1 {
    left: -49px;
    top: -23px;
  }
}

.step-by-step__bubble-icon2 {
  right: -49px;
  top: 130px;
}
@media screen and (max-width: 991px) {
  .step-by-step__bubble-icon2 {
    right: -35px;
    top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step__bubble-icon2 {
    right: -61px;
    top: 46px;
  }
}

.step-by-step__bubble-icon3 {
  bottom: -17px;
  left: -4px;
  width: 140px;
  height: 140px;
}
@media screen and (max-width: 1199px) {
  .step-by-step__bubble-icon3 {
    width: 98px;
    height: 98px;
  }
}
@media screen and (max-width: 991px) {
  .step-by-step__bubble-icon3 {
    bottom: -57px;
    left: 36px;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step__bubble-icon3 {
    bottom: -35px;
    left: -46px;
  }
}

.step-by-step__bubble-image {
  max-width: 37px;
}
.step-by-step__bubble-image img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 52px;
}
@media screen and (max-width: 767px) {
  .step-by-step__bubble-image img {
    max-height: 42px;
  }
}
@media screen and (max-width: 1199px) {
  .step-by-step__bubble-image {
    max-width: 19px;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step__bubble-image {
    max-width: 26px;
  }
}

.step-by-step__bubble-text {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.9px;
  line-height: 1.2;
  color: #231f20;
  text-align: center;
  margin-top: 8px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 1199px) {
  .step-by-step__bubble-text {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step__bubble-text {
    font-size: 12px;
    letter-spacing: 0.1px;
  }
}

.step-by-step__bubble-main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.step-by-step__bubble-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.step-by-step__bubble-main-image.active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.step-by-step__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 49%;
}
@media screen and (max-width: 767px) {
  .step-by-step__right {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin-top: 110px;
    padding: 0 15px 40px;
  }
}

.step-by-step__title {
  position: relative;
  color: #fff;
  text-align: center;
  margin-top: 1px;
  margin-bottom: 9px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .step-by-step__title {
    max-width: 540px;
    margin-bottom: 8px;
  }
}

.step-by-step__desc {
  position: relative;
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 27px;
  color: #fff;
  text-align: center;
  max-width: 100%;
  margin-top: 24px;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  .step-by-step__desc {
    font-size: 14px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step__desc {
    font-size: 18px;
    padding: 0 10px;
    margin-top: 24px;
    max-width: 460px;
  }
}

.step-by-step__btn {
  position: relative;
  background-color: #fff;
  color: #322e22;
  border-color: #fff;
  min-width: 160px;
  margin-top: 32px;
  z-index: 10;
}
@media only screen and (min-width: 1199px) {
  .step-by-step__btn:hover {
    background-color: #322e22;
    border-color: #322e22;
    color: #fff;
  }
}
@media screen and (max-width: 400px) {
  .step-by-step__btn {
    min-width: 95%;
  }
}

.step-by-step__background {
  display: block;
  max-width: 53%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.step-by-step__background picture {
  width: 100%;
  height: 100%;
}
.step-by-step__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (max-width: 1199px) {
  .step-by-step__background {
    max-width: 52%;
  }
}
@media screen and (max-width: 991px) {
  .step-by-step__background {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .step-by-step__background {
    min-height: 121%;
    top: auto;
    bottom: 0;
  }
}

.circle-anim {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 400px;
  height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: scaleIn 5s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32, 0.11);
          animation: scaleIn 5s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32, 0.11);
}

@-webkit-keyframes scaleIn {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.8, 0.8);
            transform: translate(-50%, -50%) scale(0.8, 0.8);
    opacity: 0.5;
  }
  to {
    -webkit-transform: translate(-50%, -50%) scale(1.5, 1.5);
            transform: translate(-50%, -50%) scale(1.5, 1.5);
    opacity: 0;
  }
}

@keyframes scaleIn {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.8, 0.8);
            transform: translate(-50%, -50%) scale(0.8, 0.8);
    opacity: 0.5;
  }
  to {
    -webkit-transform: translate(-50%, -50%) scale(1.5, 1.5);
            transform: translate(-50%, -50%) scale(1.5, 1.5);
    opacity: 0;
  }
}
@-webkit-keyframes pulseCircle {
  0% {
    -webkit-transform: scale(0.95) translate(-50%, -50%);
            transform: scale(0.95) translate(-50%, -50%);
    -webkit-box-shadow: 0 0 0 10px transparent;
            box-shadow: 0 0 0 10px transparent;
  }
  70% {
    -webkit-transform: scale(0.97) translate(-50%, -50%);
            transform: scale(0.97) translate(-50%, -50%);
    -webkit-box-shadow: 0 0 0 10px var(--color-1);
            box-shadow: 0 0 0 10px var(--color-1);
  }
  100% {
    -webkit-transform: scale(0.97) translate(-50%, -50%);
            transform: scale(0.97) translate(-50%, -50%);
    -webkit-box-shadow: 0 0 0 10px transparent;
            box-shadow: 0 0 0 10px transparent;
  }
}
@keyframes pulseCircle {
  0% {
    -webkit-transform: scale(0.95) translate(-50%, -50%);
            transform: scale(0.95) translate(-50%, -50%);
    -webkit-box-shadow: 0 0 0 10px transparent;
            box-shadow: 0 0 0 10px transparent;
  }
  70% {
    -webkit-transform: scale(0.97) translate(-50%, -50%);
            transform: scale(0.97) translate(-50%, -50%);
    -webkit-box-shadow: 0 0 0 10px var(--color-1);
            box-shadow: 0 0 0 10px var(--color-1);
  }
  100% {
    -webkit-transform: scale(0.97) translate(-50%, -50%);
            transform: scale(0.97) translate(-50%, -50%);
    -webkit-box-shadow: 0 0 0 10px transparent;
            box-shadow: 0 0 0 10px transparent;
  }
}
@-webkit-keyframes appear {
  0%, 100% {
    opacity: 0;
  }
  10%, 45% {
    opacity: 1;
  }
  55%, 90% {
    opacity: 0;
  }
}
@keyframes appear {
  0%, 100% {
    opacity: 0;
  }
  10%, 45% {
    opacity: 1;
  }
  55%, 90% {
    opacity: 0;
  }
}
.circle {
  opacity: 0;
  -webkit-transition: opacity 0.125s ease-in-out;
  transition: opacity 0.125s ease-in-out;
}

.circle1 {
  -webkit-animation: appear 1.25s infinite;
          animation: appear 1.25s infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.circle2 {
  -webkit-animation: appear 1.25s infinite;
          animation: appear 1.25s infinite;
  -webkit-animation-delay: 0.125s;
          animation-delay: 0.125s;
}

.circle3 {
  -webkit-animation: appear 1.25s infinite;
          animation: appear 1.25s infinite;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

.circle4 {
  -webkit-animation: appear 1.25s infinite;
          animation: appear 1.25s infinite;
  -webkit-animation-delay: 0.375s;
          animation-delay: 0.375s;
}

.circle5 {
  -webkit-animation: appear 1.25s infinite;
          animation: appear 1.25s infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.circle6 {
  -webkit-animation: appear 1.25s infinite;
          animation: appear 1.25s infinite;
  -webkit-animation-delay: 0.625s;
          animation-delay: 0.625s;
}

.circle7 {
  -webkit-animation: appear 1.25s infinite;
          animation: appear 1.25s infinite;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.circle8 {
  -webkit-animation: appear 1.25s infinite;
          animation: appear 1.25s infinite;
  -webkit-animation-delay: 0.875s;
          animation-delay: 0.875s;
}

.circle9 {
  -webkit-animation: appear 1.25s infinite;
          animation: appear 1.25s infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.circle10 {
  -webkit-animation: appear 1.25s infinite;
          animation: appear 1.25s infinite;
  -webkit-animation-delay: 1.125s;
          animation-delay: 1.125s;
}

.circle11 {
  -webkit-animation: appear 1.25s infinite;
          animation: appear 1.25s infinite;
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}

/*--------------------------------------------------------------
## team-block
--------------------------------------------------------------*/
.team-block {
  background-color: #fff;
  padding: 65px 0 50px;
}
@media screen and (max-width: 991px) {
  .team-block {
    padding: 50px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .team-block {
    padding: 33px 0 30px;
  }
}

.dekstop-visible {
  visibility: visible !important;
}

.team-block__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .team-block__upper {
    max-width: 320px;
  }
}

.team-block__title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .team-block__title {
    display: block;
    max-width: 270px;
  }
}

.team-block__desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 991px) {
  .team-block__desc {
    font-size: 16px;
    margin-top: 17px;
  }
}

.team-block__boxes {
  position: relative;
  margin-top: 48px;
}
.team-block__boxes .splide__arrows {
  display: none;
}
@media screen and (max-width: 767px) {
  .team-block__boxes .splide__arrows {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .team-block__boxes .splide__arrows {
    max-width: 69.5%;
  }
}
@media screen and (max-width: 767px) {
  .team-block__boxes .splide__track {
    margin-left: 9px;
  }
}
@media (min-width: 768px) {
  .team-block__boxes .splide__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 32px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .team-block__boxes {
    padding-bottom: 72px;
  }
}
@media screen and (max-width: 400px) {
  .team-block__boxes {
    margin-top: 32px;
  }
}

.team-block__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 768px) {
  .team-block__box {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .team-block__box {
    width: 292px !important;
  }
}

.team-block__box-image {
  position: relative;
  width: 100%;
  height: 277px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #eef5fb;
}
.team-block__box-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1199px) {
  .team-block__box-image {
    height: 200px;
  }
}
@media screen and (max-width: 991px) {
  .team-block__box-image {
    height: 140px;
  }
}
@media screen and (max-width: 767px) {
  .team-block__box-image {
    height: 276px;
  }
}

.team-block__box-title {
  display: block;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 1.3;
  color: #322e22;
  text-transform: uppercase;
  margin-top: 33px;
}
@media screen and (max-width: 991px) {
  .team-block__box-title {
    font-size: 12px;
    letter-spacing: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .team-block__box-title {
    font-size: 15px;
    letter-spacing: 1.2px;
    margin-top: 33px;
  }
}
@media screen and (max-width: 500px) {
  .team-block__box-title {
    font-size: 12px;
    letter-spacing: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 400px) {
  .team-block__box-title {
    font-size: 15px;
    letter-spacing: 1.2px;
    margin-top: 34px;
  }
}

.team-block__box-subtitle {
  display: block;
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  margin-top: 8px;
}
@media screen and (max-width: 991px) {
  .team-block__box-subtitle {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .team-block__box-subtitle {
    font-size: 14px;
    margin-top: 7px;
  }
}
@media screen and (max-width: 500px) {
  .team-block__box-subtitle {
    font-size: 12px;
  }
}
@media screen and (max-width: 400px) {
  .team-block__box-subtitle {
    font-size: 14px;
  }
}

.team-block__box-desc {
  display: block;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 16px;
}
@media screen and (max-width: 1199px) {
  .team-block__box-desc {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .team-block__box-desc {
    font-size: 13px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .team-block__box-desc {
    font-size: 16px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 500px) {
  .team-block__box-desc {
    font-size: 13px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 400px) {
  .team-block__box-desc {
    font-size: 16px;
    margin-top: 17px;
  }
}

/*--------------------------------------------------------------
## cta-shop-now
--------------------------------------------------------------*/
.cta-shop-now {
  padding: 80px 0;
}
@media screen and (max-width: 991px) {
  .cta-shop-now {
    padding: 70px 0;
  }
}
@media screen and (max-width: 575px) {
  .cta-shop-now {
    padding: 49px 9px 40px;
  }
}

.cta-shop-now .cta-shop-now__box {
  position: relative;
  display: block;
  background-color: #c6dff1;
  border-radius: 8px;
  padding: 61px 20px 60px 76px;
}
@media screen and (max-width: 1199px) {
  .cta-shop-now .cta-shop-now__box {
    padding: 40px 10px 40px 35px;
  }
}
@media screen and (max-width: 767px) {
  .cta-shop-now .cta-shop-now__box {
    padding: 30px 30px 220px;
  }
}
@media screen and (max-width: 575px) {
  .cta-shop-now .cta-shop-now__box {
    padding: 34px 20px 325px;
  }
}

.cta-shop-now__box-left {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 470px;
  width: 100%;
  z-index: 20;
}
@media screen and (max-width: 1199px) {
  .cta-shop-now__box-left {
    max-width: 350px;
  }
}
@media screen and (max-width: 991px) {
  .cta-shop-now__box-left {
    max-width: 270px;
  }
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box-left {
    max-width: 100%;
  }
}

.cta-shop-now__box-pretitle {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.12px;
  line-height: 1.3;
  color: #322e22;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .cta-shop-now__box-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .cta-shop-now__box-title {
    font-size: 24px;
  }
}

.cta-shop-now__box-desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 18px;
}
@media screen and (max-width: 991px) {
  .cta-shop-now__box-desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .cta-shop-now__box-desc {
    font-size: 15px;
  }
}

.cta-shop-now__box-btn {
  min-width: 160px;
  margin-top: 48px;
}
@media screen and (max-width: 1400px) {
  .cta-shop-now__box-btn {
    margin-top: 25px;
  }
}
@media screen and (max-width: 400px) {
  .cta-shop-now__box-btn {
    min-width: 100%;
    padding: 18px 15px;
    margin-top: 24px;
  }
}

.cta-shop-now__box-image {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 650px;
  width: 100%;
  z-index: 10;
}
.cta-shop-now__box-image picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.cta-shop-now__box-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box-image img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .cta-shop-now__box-image {
    max-width: 50%;
  }
}
@media screen and (max-width: 1199px) {
  .cta-shop-now__box-image {
    max-width: 56%;
  }
}
@media screen and (max-width: 991px) {
  .cta-shop-now__box-image {
    max-width: 53%;
  }
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box-image {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 100%;
    width: 100%;
    max-height: 200px;
    height: 100%;
  }
}
@media screen and (max-width: 400px) {
  .cta-shop-now__box-image {
    max-height: 290px;
    height: auto;
  }
}

.cta-shop-now__box-image-decor {
  display: block;
  max-width: 656px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 8px;
  overflow: hidden;
}
.cta-shop-now__box-image-decor picture {
  width: 100%;
  height: 100%;
}
.cta-shop-now__box-image-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .cta-shop-now__box-image--desk {
    display: none;
  }
}

.cta-shop-now__box-image--mob {
  display: none;
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box-image--mob {
    display: block;
  }
}

.cta-shop-now__box--alt .cta-shop-now__box {
  padding: 48px 20px 47px 88px;
}
@media screen and (max-width: 1199px) {
  .cta-shop-now__box--alt .cta-shop-now__box {
    padding: 40px 10px 40px 35px;
  }
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box--alt .cta-shop-now__box {
    padding: 30px 30px 220px;
  }
}
@media screen and (max-width: 575px) {
  .cta-shop-now__box--alt .cta-shop-now__box {
    padding: 33px 20px 205px;
  }
}
@media screen and (max-width: 400px) {
  .cta-shop-now__box--alt .cta-shop-now__box {
    padding: 34px 20px 256px;
  }
}
.cta-shop-now__box--alt .cta-shop-now__box-desc {
  margin-top: 8px;
}
.cta-shop-now__box--alt .cta-shop-now__box-btn {
  min-width: 180px;
  margin-top: 35px;
}
@media screen and (max-width: 400px) {
  .cta-shop-now__box--alt .cta-shop-now__box-btn {
    min-width: 100%;
    margin-top: 25px;
  }
}
.cta-shop-now__box--alt .cta-shop-now__box-image {
  max-width: 570px;
}
.cta-shop-now__box--alt .cta-shop-now__box-image img {
  width: auto;
}
@media screen and (max-width: 400px) {
  .cta-shop-now__box--alt .cta-shop-now__box-image {
    max-height: 230px;
  }
}
@media screen and (max-width: 575px) {
  .cta-shop-now__box--alt {
    padding: 40px 9px;
  }
}

@media screen and (max-width: 575px) {
  .cta-shop-now__box--bundle-and-save {
    padding: 48px 9px;
  }
}
@media screen and (max-width: 575px) {
  .cta-shop-now__box--bundle-and-save .cta-shop-now__box {
    padding: 34px 20px 285px;
  }
}
.cta-shop-now__box--bundle-and-save .cta-shop-now__box-left {
  max-width: 540px;
}
@media screen and (max-width: 1199px) {
  .cta-shop-now__box--bundle-and-save .cta-shop-now__box-left {
    max-width: 48%;
  }
}
@media screen and (max-width: 1199px) {
  .cta-shop-now__box--bundle-and-save .cta-shop-now__box-left {
    max-width: 350px;
  }
}
@media screen and (max-width: 991px) {
  .cta-shop-now__box--bundle-and-save .cta-shop-now__box-left {
    max-width: 270px;
  }
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box--bundle-and-save .cta-shop-now__box-left {
    max-width: 100%;
  }
}
.cta-shop-now__box--bundle-and-save .cta-shop-now__box-desc {
  margin-top: 17px;
}
.cta-shop-now__box--bundle-and-save .cta-shop-now__box-btn {
  min-width: 201px;
}
@media screen and (max-width: 400px) {
  .cta-shop-now__box--bundle-and-save .cta-shop-now__box-btn {
    min-width: 100%;
  }
}
.cta-shop-now__box--bundle-and-save .cta-shop-now__box-image {
  right: 0;
  max-width: 429px;
}
@media screen and (max-width: 1400px) {
  .cta-shop-now__box--bundle-and-save .cta-shop-now__box-image {
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box--bundle-and-save .cta-shop-now__box-image {
    right: auto;
    max-width: 100%;
  }
}

.cta-shop-now__box-image-snippet {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 650px;
  width: 100%;
  z-index: 10;
}
.cta-shop-now__box-image-snippet picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.cta-shop-now__box-image-snippet img {
  max-width: 100%;
  max-height: 327px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
@media screen and (max-width: 390px) {
  .cta-shop-now__box-image-snippet img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box-image-snippet img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .cta-shop-now__box-image-snippet {
    max-width: 50%;
  }
}
@media screen and (max-width: 1199px) {
  .cta-shop-now__box-image-snippet {
    max-width: 56%;
  }
}
@media screen and (max-width: 991px) {
  .cta-shop-now__box-image-snippet {
    max-width: 53%;
  }
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box-image-snippet {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 100%;
    width: 100%;
    max-height: 290px;
    height: 100%;
  }
}
@media screen and (max-width: 400px) {
  .cta-shop-now__box-image-snippet {
    max-height: 290px;
  }
}

.cta-shop-now__box-image-decor-snippet {
  display: block;
  max-width: 490px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box-image-decor-snippet {
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .cta-shop-now__box-image-decor-snippet {
    max-width: 100%;
  }
}
.cta-shop-now__box-image-decor-snippet picture {
  width: 100%;
  height: 100%;
}
.cta-shop-now__box-image-decor-snippet img {
  width: 100%;
  height: 100%;
  -o-object-fit: unset;
     object-fit: unset;
}

.cta-shop-now__box-snippet {
  position: relative;
  display: block;
  background-color: #c6dff1;
  border-radius: 8px;
  padding: 52px 10px 45px 36px;
}
@media screen and (max-width: 1199px) {
  .cta-shop-now__box-snippet {
    padding: 40px 10px 40px 35px;
  }
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box-snippet {
    padding: 30px 30px 220px;
  }
}
@media screen and (max-width: 575px) {
  .cta-shop-now__box-snippet {
    padding: 34px 20px 262px;
  }
}

.cta-shop-now__box-left-snippet {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 510px;
  width: 100%;
  z-index: 20;
}
@media screen and (max-width: 1199px) {
  .cta-shop-now__box-left-snippet {
    max-width: 510px;
  }
}
@media screen and (max-width: 991px) {
  .cta-shop-now__box-left-snippet {
    max-width: 510px;
  }
}
@media screen and (max-width: 767px) {
  .cta-shop-now__box-left-snippet {
    max-width: 100%;
  }
}

.cta-shop-now__box-title-snippet {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
  margin: 0;
}
.cta-shop-now__box-title-snippet strong {
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .cta-shop-now__box-title-snippet {
    font-size: 24px;
  }
}

.cta-shop-now__box-desc-snippet {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  letter-spacing: 0;
  color: #322e22;
  margin: 15px 0 0;
}
@media screen and (max-width: 575px) {
  .cta-shop-now__box-desc-snippet {
    font-size: 15px;
    line-height: 22.5px;
  }
}

.cta-shop-now__box-btn-snippet {
  min-width: 180px;
  margin-top: 36px;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
}
@media only screen and (min-width: 1199px) {
  .cta-shop-now__box-btn-snippet:hover {
    color: #000;
  }
}
.cta-shop-now__box-btn-snippet::before {
  width: 0;
}
@media screen and (max-width: 1400px) {
  .cta-shop-now__box-btn-snippet {
    margin-top: 25px;
  }
}
@media screen and (max-width: 400px) {
  .cta-shop-now__box-btn-snippet {
    min-width: 100%;
    padding: 18px 15px;
    margin-top: 24px;
  }
}

/*--------------------------------------------------------------
## statistics-and-quote
--------------------------------------------------------------*/
.statistics-and-quote {
  position: relative;
  background-color: #fff;
  padding: 82px 0 80px;
}
.statistics-and-quote .container {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote {
    padding: 75px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-and-quote {
    padding: 60px 0 70px;
  }
}
@media screen and (max-width: 575px) {
  .statistics-and-quote {
    padding: 41px 9px 39px;
  }
}

.statistics-and-quote__title {
  font-size: 30px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .statistics-and-quote__title {
    font-size: 24px;
    max-width: 330px;
    margin: 0 auto;
  }
}

.statistics-and-quote__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background-color: #eef5fb;
  border-radius: 8px;
  padding: 41px 20px 41px 36px;
  margin-top: 65px;
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box {
    padding: 40px 10px 40px 35px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box {
    padding: 30px 30px 50px;
  }
}
@media screen and (max-width: 575px) {
  .statistics-and-quote__box {
    padding: 32px 20px 37px;
    margin-top: 25px;
  }
}

.statistics-and-quote__box-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 44%;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box-left {
    max-width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-left {
    max-width: 100%;
  }
}

.statistics-and-quote__box-left-text {
  font-size: 32px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
}
@media screen and (max-width: 1400px) {
  .statistics-and-quote__box-left-text {
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box-left-text {
    font-size: 23px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-and-quote__box-left-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-left-text {
    font-size: 24px;
  }
  .statistics-and-quote__box-left-text br {
    display: none;
  }
}

.statistics-and-quote__box-left-info {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-left-info {
    margin-top: 19px;
  }
}

.statistics-and-quote__box-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 48.35%;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box-right {
    max-width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-right {
    max-width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .statistics-and-quote__box-right {
    margin-top: 28px;
  }
}

.statistics-and-quote__box-right-info {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 84px;
  margin-top: 36px;
}
.statistics-and-quote__box-right-info:first-of-type {
  margin-top: 0;
}
.statistics-and-quote__box-right-info svg {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box-right-info svg {
    width: 47px;
    height: 47px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-and-quote__box-right-info svg {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-right-info svg {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 575px) {
  .statistics-and-quote__box-right-info svg {
    top: -1px;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box-right-info {
    padding-left: 65px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-and-quote__box-right-info {
    padding-left: 50px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-right-info {
    padding-left: 0;
    margin-top: 36px;
  }
}
@media screen and (max-width: 575px) {
  .statistics-and-quote__box-right-info {
    margin-top: 34px;
  }
}

.statistics-and-quote__box-right-info-num {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.4px;
  line-height: 1.2;
  margin-right: 23px;
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box-right-info-num {
    font-size: 37px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-and-quote__box-right-info-num {
    font-size: 30px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-right-info-num {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.2px;
    margin-top: 3px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-right-info-num {
    font-size: 48px;
    padding-left: 84px;
    margin-right: 23px;
  }
}
@media screen and (max-width: 575px) {
  .statistics-and-quote__box-right-info-num {
    margin-top: 0;
    margin-right: 0;
  }
}

.statistics-and-quote__box-right-info-text {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.12px;
  line-height: 1.4;
  color: #322e22;
  text-transform: uppercase;
  max-width: 210px;
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box-right-info-text {
    font-size: 12px;
    letter-spacing: 0.5px;
    max-width: 140px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-and-quote__box-right-info-text {
    letter-spacing: 0;
    max-width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-right-info-text {
    font-size: 14px;
    max-width: 160px;
  }
}
@media screen and (max-width: 575px) {
  .statistics-and-quote__box-right-info-text {
    letter-spacing: 1.12px;
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
  }
}

.statistics-and-quote__box-right-link {
  position: relative;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  margin-top: 59px;
}
.statistics-and-quote__box-right-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: -3px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .statistics-and-quote__box-right-link:hover::after {
    width: 0;
  }
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box-right-link {
    font-size: 14px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 500px) {
  .statistics-and-quote__box-right-link {
    font-size: 15px;
    letter-spacing: 1.5px;
    margin-top: 32px;
  }
}

.statistics-and-quote__background {
  display: block;
  max-width: 644px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.statistics-and-quote__background picture {
  width: 100%;
  height: 100%;
}
.statistics-and-quote__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .statistics-and-quote__background {
    max-width: 404px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__background {
    max-width: 300px;
  }
}
@media screen and (max-width: 575px) {
  .statistics-and-quote__background {
    max-width: 213px;
  }
}

.statistics-and-quote__box-testimonial {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 63px;
}
@media screen and (max-width: 500px) {
  .statistics-and-quote__box-testimonial {
    margin-top: 24px;
  }
}

.statistics-and-quote__box-testimonial-image {
  position: relative;
  max-width: 408px;
  width: 100%;
  height: 387px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #eef5fb;
}
.statistics-and-quote__box-testimonial-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 400px) {
  .statistics-and-quote__box-testimonial-image img {
    max-width: 306px;
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box-testimonial-image {
    max-width: 265px;
    height: 250px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-and-quote__box-testimonial-image {
    max-width: 220px;
    height: 210px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-testimonial-image {
    max-width: 170px;
    height: 170px;
  }
}
@media screen and (max-width: 500px) {
  .statistics-and-quote__box-testimonial-image {
    max-width: 100%;
    height: 370px;
  }
}
@media screen and (max-width: 450px) {
  .statistics-and-quote__box-testimonial-image {
    height: 300px;
  }
}

.statistics-and-quote__box-testimonial-texts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 64.55%;
  width: 100%;
  padding-right: 30px;
}
@media screen and (max-width: 1400px) {
  .statistics-and-quote__box-testimonial-texts {
    max-width: 59%;
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box-testimonial-texts {
    max-width: 62%;
  }
}
@media screen and (max-width: 575px) {
  .statistics-and-quote__box-testimonial-texts {
    max-width: 56%;
  }
}
@media screen and (max-width: 500px) {
  .statistics-and-quote__box-testimonial-texts {
    max-width: 100%;
    margin-top: 24px;
  }
}

.statistics-and-quote__box-testimonial-title {
  font-size: 28px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
}
@media screen and (max-width: 1400px) {
  .statistics-and-quote__box-testimonial-title br {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .statistics-and-quote__box-testimonial-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .statistics-and-quote__box-testimonial-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-testimonial-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .statistics-and-quote__box-testimonial-title {
    font-size: 18px;
  }
}

.statistics-and-quote__box-testimonial-name {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.175px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  margin-top: 34px;
}
@media screen and (max-width: 991px) {
  .statistics-and-quote__box-testimonial-name {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-testimonial-name {
    font-size: 13px;
    margin-top: 26px;
  }
}
@media screen and (max-width: 500px) {
  .statistics-and-quote__box-testimonial-name {
    font-size: 15px;
  }
}

.statistics-and-quote__box-testimonial-position {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .statistics-and-quote__box-testimonial-position {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  .statistics-and-quote__box-testimonial-position {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
## zigzag-for-every-body
--------------------------------------------------------------*/
.zigzag-for-every-body {
  position: relative;
  background-color: #fff;
  padding: 64px 0;
}
@media screen and (max-width: 991px) {
  .zigzag-for-every-body {
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .zigzag-for-every-body {
    padding: 40px 9px;
  }
}

.zigzag-for-every-body__box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  background-color: #eef5fb;
  border-radius: 8px;
  padding: 84px 30px 82px 56px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .zigzag-for-every-body__box {
    padding: 60px 30px 60px 50px;
  }
}
@media screen and (max-width: 991px) {
  .zigzag-for-every-body__box {
    padding: 50px 20px 50px 35px;
  }
}
@media screen and (max-width: 767px) {
  .zigzag-for-every-body__box {
    padding: 32px 20px 308px;
  }
}
@media screen and (max-width: 767px) {
  .zigzag-for-every-body__box {
    padding: 32px 20px 248px;
  }
}

.zigzag-for-every-body__title {
  position: relative;
  max-width: 580px;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  .zigzag-for-every-body__title {
    max-width: 450px;
  }
}
@media screen and (max-width: 991px) {
  .zigzag-for-every-body__title {
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .zigzag-for-every-body__title {
    max-width: 100%;
  }
}

.zigzag-for-every-body__desc {
  position: relative;
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  max-width: 580px;
  margin-top: 25px;
  z-index: 10;
}
.zigzag-for-every-body__desc sup {
  font-size: 14px;
}
@media screen and (max-width: 575px) {
  .zigzag-for-every-body__desc sup {
    font-size: 11px;
  }
}
@media screen and (max-width: 1199px) {
  .zigzag-for-every-body__desc {
    font-size: 22px;
    max-width: 450px;
  }
}
@media screen and (max-width: 991px) {
  .zigzag-for-every-body__desc {
    font-size: 18px;
    max-width: 400px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .zigzag-for-every-body__desc {
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .zigzag-for-every-body__desc {
    font-size: 16px;
    margin-top: 24px;
  }
}

.zigzag-for-every-body__box-background {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.zigzag-for-every-body__box-background picture {
  width: 100%;
  height: 100%;
}
.zigzag-for-every-body__box-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------
## our-ingredients
--------------------------------------------------------------*/
.our-ingredients {
  position: relative;
  background-color: #eef5fb;
  padding: 71px 0 55px;
}
@media screen and (max-width: 1199px) {
  .our-ingredients {
    padding: 50px 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .our-ingredients {
    padding: 50px 0 0;
  }
}
@media screen and (max-width: 575px) {
  .our-ingredients {
    padding: 41px 0 0;
  }
}
@media screen and (max-width: 400px) {
  .our-ingredients {
    padding: 41px 0 133px;
  }
}

.our-ingredients__info {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 47.8%;
  width: 100%;
  margin-left: auto;
  z-index: 10;
}
.our-ingredients__info ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.our-ingredients__info ul li {
  min-width: 252px;
  max-width: 306px;
}
@media screen and (max-width: 1199px) {
  .our-ingredients__info ul li {
    min-width: auto;
    max-width: 48%;
    width: 100%;
  }
}
@media screen and (max-width: 460px) {
  .our-ingredients__info ul li {
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .our-ingredients__info {
    max-width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .our-ingredients__info {
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .our-ingredients__info {
    padding: 0 9px;
  }
}

.our-ingredients__info-title {
  font-size: 28px;
  margin-bottom: -1px;
}
@media screen and (max-width: 1199px) {
  .our-ingredients__info-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .our-ingredients__info-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 575px) {
  .our-ingredients__info-title {
    font-size: 24px;
    margin-bottom: 1px;
  }
}
@media screen and (max-width: 400px) {
  .our-ingredients__info-title {
    max-width: 220px;
  }
}

.our-ingredients__info-desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  max-width: 100%;
  margin-top: 24px;
}
@media screen and (max-width: 1199px) {
  .our-ingredients__info-desc {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .our-ingredients__info-desc {
    margin-top: 23px;
  }
}
@media screen and (max-width: 575px) {
  .our-ingredients__info-desc {
    font-size: 15px;
    line-height: 1.54;
  }
}

.our-ingredients__info-list-title {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  margin-top: 26px;
}

.our-ingredients__background {
  display: block;
  max-width: 737px;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.our-ingredients__background picture {
  width: 100%;
  height: 100%;
}
.our-ingredients__background img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1400px) {
  .our-ingredients__background {
    max-width: 680px;
  }
}
@media screen and (max-width: 1199px) {
  .our-ingredients__background {
    max-width: 540px;
  }
}
@media screen and (max-width: 991px) {
  .our-ingredients__background {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 400px;
  }
}
@media screen and (max-width: 400px) {
  .our-ingredients__background {
    max-width: 302px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

/*--------------------------------------------------------------
## zigzag-scientific-research
--------------------------------------------------------------*/
.zigzag-scientific-research {
  position: relative;
  background-color: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 991px) {
  .zigzag-scientific-research {
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .zigzag-scientific-research {
    padding: 40px 9px;
  }
}

.zigzag-scientific-research__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.zigzag-scientific-research__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 47.9%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .zigzag-scientific-research__left {
    max-width: 100%;
  }
}

.zigzag-scientific-research__pretitle {
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .zigzag-scientific-research__pretitle {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 1199px) {
  .zigzag-scientific-research__title strong {
    display: block;
  }
}

.zigzag-scientific-research__desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  max-width: 100%;
  margin-top: 24px;
}
@media screen and (max-width: 1199px) {
  .zigzag-scientific-research__desc {
    margin-top: 15px;
  }
}
@media screen and (max-width: 991px) {
  .zigzag-scientific-research__desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .zigzag-scientific-research__desc {
    margin-top: 23px;
  }
}
@media screen and (max-width: 575px) {
  .zigzag-scientific-research__desc {
    font-size: 15px;
    line-height: 1.54;
  }
}

.zigzag-scientific-research__right {
  max-width: 47.785%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .zigzag-scientific-research__right {
    max-width: 100%;
    margin-top: 24px;
  }
}

.zigzag-scientific-research__image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.zigzag-scientific-research__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------
## facilities-and-testing
--------------------------------------------------------------*/
.facilities-and-testing {
  position: relative;
  background-color: #fff;
  border-top: 1px solid #c6dff1;
  padding: 79px 0 80px;
}
@media screen and (max-width: 991px) {
  .facilities-and-testing {
    padding: 70px 0;
  }
}
@media screen and (max-width: 575px) {
  .facilities-and-testing {
    padding: 39px 9px 41px;
  }
}

.facilities-and-testing__box {
  position: relative;
  display: block;
  background-color: #c6dff1;
  border-radius: 8px;
  padding: 94px 50px 92px 30px;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  .facilities-and-testing__box {
    padding: 40px 35px 40px 10px;
  }
}
@media screen and (max-width: 991px) {
  .facilities-and-testing__box {
    padding: 40px 20px 40px 10px;
  }
}
@media screen and (max-width: 767px) {
  .facilities-and-testing__box {
    padding: 30px 30px 270px;
  }
}
@media screen and (max-width: 400px) {
  .facilities-and-testing__box {
    padding: 34px 20px 337px;
  }
}

.facilities-and-testing__box-texts {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 554px;
  width: 100%;
  margin-left: auto;
  z-index: 20;
}
@media screen and (max-width: 1199px) {
  .facilities-and-testing__box-texts {
    max-width: 370px;
  }
}
@media screen and (max-width: 991px) {
  .facilities-and-testing__box-texts {
    max-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .facilities-and-testing__box-texts {
    max-width: 100%;
  }
}

.facilities-and-testing__box-pretitle {
  margin-bottom: 9px;
}
@media screen and (max-width: 767px) {
  .facilities-and-testing__box-pretitle {
    margin-bottom: 8px;
  }
}

.facilities-and-testing__box-title {
  margin-bottom: -2px;
}
@media screen and (max-width: 400px) {
  .facilities-and-testing__box-title strong {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .facilities-and-testing__box-title {
    line-height: 1.3;
    margin-bottom: 0;
  }
}

.facilities-and-testing__box-desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  max-width: 100%;
  margin-top: 24px;
}
@media screen and (max-width: 1199px) {
  .facilities-and-testing__box-desc {
    margin-top: 15px;
  }
}
@media screen and (max-width: 991px) {
  .facilities-and-testing__box-desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .facilities-and-testing__box-desc {
    margin-top: 23px;
  }
}
@media screen and (max-width: 575px) {
  .facilities-and-testing__box-desc {
    font-size: 15px;
    line-height: 1.54;
  }
}

.facilities-and-testing__box-image {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 476px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  z-index: 10;
}
.facilities-and-testing__box-image picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.facilities-and-testing__box-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .facilities-and-testing__box-image img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .facilities-and-testing__box-image {
    max-width: 466px;
  }
}
@media screen and (max-width: 991px) {
  .facilities-and-testing__box-image {
    max-width: 335px;
  }
}
@media screen and (max-width: 767px) {
  .facilities-and-testing__box-image {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 100%;
    width: 100%;
    max-height: 250px;
    height: 100%;
  }
}
@media screen and (max-width: 400px) {
  .facilities-and-testing__box-image {
    left: 49%;
    max-height: 322px;
  }
}

.facilities-and-testing__box-image-decor {
  display: block;
  max-width: 634px;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 8px;
  overflow: hidden;
}
.facilities-and-testing__box-image-decor picture {
  width: 100%;
  height: 100%;
}
.facilities-and-testing__box-image-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facilities-and-testing__image-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 1077px;
  width: 100%;
}
.facilities-and-testing__image-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*--------------------------------------------------------------
## blog-all
--------------------------------------------------------------*/
.blog-all {
  background-color: #fff;
  padding-bottom: 82px;
}

.blog-all__upper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #c6dff1;
  min-height: 300px;
  padding: 30px 0;
}
.blog-all__upper.second-bcg {
  background-color: #eef5fb;
}
@media screen and (max-width: 991px) {
  .blog-all__upper {
    min-height: 250px;
  }
}
@media screen and (max-width: 575px) {
  .blog-all__upper {
    min-height: 225px;
  }
}

.blog-all__upper-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 5;
}

.blog-all__upper-pretitle {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.12px;
  line-height: 1.3;
  color: #322e22;
  text-align: center;
  text-transform: uppercase;
  margin-top: 2px;
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .blog-all__upper-pretitle {
    margin-top: 12px;
  }
}

.blog-all__upper-title {
  text-align: center;
}
@media screen and (max-width: 575px) {
  .blog-all__upper-title {
    max-width: 300px;
  }
}

.blog-all__upper-desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  max-width: 640px;
  margin-top: 16px;
}
@media screen and (max-width: 575px) {
  .blog-all__upper-desc {
    font-size: 16px;
    max-width: 260px;
    margin-top: 15px;
  }
}

.blog-all__upper-background {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.blog-all__upper-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1600px) {
  .blog-all__upper-background {
    padding: 0;
  }
}

.blog-all__bottom {
  background-color: #fff;
  width: 100%;
  padding: 26px 0 0;
}
.blog-all__bottom .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .blog-all__bottom {
    padding: 24px 0 0;
  }
}

.blog-all__pills {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 16px;
}
.blog-all__pills svg {
  display: none;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 12px;
  right: 17px;
  fill: #322e22;
  color: #322e22;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 991px) {
  .blog-all__pills.open span {
    display: block;
  }
}
.blog-all__pills.open svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 991px) {
  .blog-all__pills.open {
    border-radius: 10px;
  }
}
@media screen and (max-width: 991px) {
  .blog-all__pills.open .blog-all__pill {
    display: block;
    pointer-events: fill;
  }
}
@media screen and (max-width: 991px) {
  .blog-all__pills {
    display: inline-block;
    border: 1px solid #c6dff1;
    border-radius: 100px;
    max-width: 327px;
    width: 100%;
    margin: 0 auto 16px;
  }
  .blog-all__pills svg {
    display: block;
  }
}

.blog-all__pill {
  display: inline-block;
  border: 1px solid #c6dff1;
  border-radius: 100px;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  padding: 7px 14px 6px 15px;
  margin: 6px;
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 991px) {
  .blog-all__pill {
    pointer-events: none;
    display: none;
  }
}
.blog-all__pill.is-active {
  background-color: #c6dff1;
}
@media only screen and (min-width: 1199px) {
  .blog-all__pill.is-active:hover {
    background-color: #c6dff1;
  }
}
@media screen and (max-width: 991px) {
  .blog-all__pill.is-active {
    display: block;
    background-color: transparent;
  }
}
@media only screen and (min-width: 1199px) {
  .blog-all__pill:hover {
    background-color: #eef5fb;
  }
}
@media screen and (max-width: 1199px) {
  .blog-all__pill {
    font-size: 13px;
    padding: 7px 8px 6px;
  }
}
@media screen and (max-width: 991px) {
  .blog-all__pill {
    display: none;
    font-size: 16px;
    border: 0;
    margin: 0;
    padding: 10px 50px 10px 17px;
  }
}

.blog-all__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 61px 32px;
  margin-top: 38px;
}
@media screen and (max-width: 991px) {
  .blog-all__cards {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px 25px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .blog-all__cards {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 34px 0;
    padding: 0 9px;
    margin-top: 16px;
  }
}

.blog-all__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.blog-all__card-image {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
}
.blog-all__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .blog-all__card-image:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media screen and (max-width: 767px) {
  .blog-all__card-image {
    height: 230px;
  }
}

.blog-all__card-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  margin-top: 24px;
}
@media screen and (max-width: 500px) {
  .blog-all__card-tags {
    height: auto !important;
  }
}

.blog-all__card-pill {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.2;
  color: #322e22;
  background-color: #c6dff1;
  border: 1px solid #c6dff1;
  border-radius: 100px;
  padding: 4px 11px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .blog-all__card-pill:hover {
    background-color: transparent;
  }
}

.blog-all__card-title {
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.28;
  color: #322e22;
  margin-top: 17px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.blog-all__card-title a {
  color: unset;
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 1px), #322e22 1px);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size 0.5s;
  transition: background-size 0.5s;
}
@media only screen and (min-width: 1199px) {
  .blog-all__card-title:hover a {
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 1199px) {
  .blog-all__card-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .blog-all__card-title {
    font-size: 18px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 500px) {
  .blog-all__card-title {
    height: auto !important;
  }
}

.blog-all__card-desc {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.52;
  color: #322e22;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .blog-all__card-desc {
    line-height: 1.55;
    margin-top: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.blog-all__card-time {
  font-size: 13px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.05px;
  line-height: 1.3;
  color: #322e22;
  text-transform: uppercase;
  margin-top: 18px;
}

.blog-all__card-btn {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  margin-top: 27px;
}
.blog-all__card-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 2px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .blog-all__card-btn:hover::after {
    width: 0;
  }
}

.blog-all__card-spec {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: 8px;
  overflow: hidden;
  padding: 44px 24px;
}
@media screen and (max-width: 1199px) {
  .blog-all__card-spec {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  .blog-all__card-spec {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 575px) {
  .blog-all__card-spec {
    padding: 25px 15px 200px;
  }
}
@media screen and (max-width: 500px) {
  .blog-all__card-spec {
    padding: 36px 15px 194px 20px;
    min-height: 564px;
  }
}

.blog-all__card-spec-title {
  position: relative;
  font-size: 28px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.28;
  color: #322e22;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  .blog-all__card-spec-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .blog-all__card-spec-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .blog-all__card-spec-title {
    font-size: 28px;
  }
}

.blog-all__card-spec-desc {
  position: relative;
  font-size: 20px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.52;
  color: #322e22;
  margin-top: 18px;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  .blog-all__card-spec-desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .blog-all__card-spec-desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .blog-all__card-spec-desc {
    font-size: 20px;
    margin-top: 17px;
  }
}

.blog-all__card-spec-form {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 47px;
  z-index: 10;
}
.blog-all__card-spec-form input {
  width: 100%;
  height: 48px;
}
.blog-all__card-spec-form input:last-of-type {
  margin-top: 12px;
}
@media screen and (max-width: 1199px) {
  .blog-all__card-spec-form {
    margin-top: 35px;
  }
}
@media screen and (max-width: 500px) {
  .blog-all__card-spec-form {
    margin-top: 49px;
    padding-right: 5px;
  }
}

.blog-all__card-spec-notice {
  position: relative;
  font-size: 11px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  color: #5e5e5e;
  margin-top: 12px;
  z-index: 10;
}
.blog-all__card-spec-notice a {
  position: relative;
  color: #5e5e5e;
}
.blog-all__card-spec-notice a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #5e5e5e;
  position: absolute;
  bottom: 2px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .blog-all__card-spec-notice a:hover::after {
    width: 0;
  }
}

.blog-all__card-spec-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blog-all__card-spec-image picture {
  width: 100%;
  height: 100%;
}
.blog-all__card-spec-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------
## our-philosophy
--------------------------------------------------------------*/
.our-philosophy {
  position: relative;
  background-color: #fff;
  padding: 64px 0;
}
@media screen and (max-width: 991px) {
  .our-philosophy {
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .our-philosophy {
    padding: 40px 9px;
  }
}

.our-philosophy__box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  background-color: #eef5fb;
  border-radius: 8px;
  padding: 107px 30px 104px 56px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .our-philosophy__box {
    padding: 70px 30px 70px 50px;
  }
}
@media screen and (max-width: 991px) {
  .our-philosophy__box {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 767px) {
  .our-philosophy__box {
    padding: 34px 16px 197px 20px;
  }
}

@media screen and (max-width: 767px) {
  .our-philosophy__box-pretitle {
    margin-bottom: 9px;
  }
}

.our-philosophy__title {
  position: relative;
  max-width: 580px;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  .our-philosophy__title {
    max-width: 450px;
  }
}
@media screen and (max-width: 991px) {
  .our-philosophy__title {
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .our-philosophy__title {
    max-width: 100%;
  }
}

.our-philosophy__desc {
  position: relative;
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  max-width: 610px;
  margin-top: 24px;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  .our-philosophy__desc {
    max-width: 495px;
  }
}
@media screen and (max-width: 991px) {
  .our-philosophy__desc {
    font-size: 16px;
    max-width: 415px;
  }
}
@media screen and (max-width: 767px) {
  .our-philosophy__desc {
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .our-philosophy__desc {
    margin-top: 24px;
  }
}

.our-philosophy__box-background {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.our-philosophy__box-background picture {
  width: 100%;
  height: 100%;
}
.our-philosophy__box-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .our-philosophy__box-background img {
    min-height: 750px;
    -webkit-transform: translateY(-250px);
            transform: translateY(-250px);
  }
}
@media screen and (max-width: 575px) {
  .our-philosophy__box-background img {
    min-height: 710px;
    -webkit-transform: translateY(-170px);
            transform: translateY(-170px);
  }
}
@media screen and (max-width: 400px) {
  .our-philosophy__box-background img {
    min-height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*--------------------------------------------------------------
## as-seen-in
--------------------------------------------------------------*/
.as-seen-in {
  background-color: #fff;
  border-top: 1px solid #c6dff1;
  border-bottom: 1px solid #c6dff1;
  padding: 39px 0;
}
@media screen and (max-width: 767px) {
  .as-seen-in {
    overflow: hidden;
    padding: 32px 0 24px;
  }
}

.as-seen-in__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .as-seen-in__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
    gap: 5px;
  }
}

.as-seen-in__title {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  max-width: 110px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .as-seen-in__title {
    font-size: 19px;
    text-align: center;
    max-width: 100%;
  }
}

.as-seen-in__boxes {
  max-width: 77.9%;
  width: 100%;
  pointer-events: none;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.as-seen-in__boxes .splide__arrows {
  display: none;
}
@media screen and (max-width: 767px) {
  .as-seen-in__boxes {
    max-width: 100%;
    pointer-events: all;
    margin-top: 16px;
  }
  .as-seen-in__boxes .splide__track {
    overflow: visible;
  }
}
@media (min-width: 768px) {
  .as-seen-in__boxes .splide__track {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .as-seen-in__boxes-wrap {
    visibility: visible !important;
  }
}
.as-seen-in__boxes-wrap .splide__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .as-seen-in__boxes-wrap .splide__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 30px 45px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 991px) {
  .as-seen-in__boxes-wrap .splide__list {
    gap: 30px 63px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 768px) {
  .as-seen-in__box-img {
    width: auto !important;
  }
}
.as-seen-in__box-img img {
  width: auto;
  height: 100%;
  max-height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .as-seen-in__box-img img {
    max-height: 27px;
    vertical-align: middle;
  }
}
@media screen and (max-width: 767px) {
  .as-seen-in__box-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.as-seen-in--alt .as-seen-in__wrap {
  max-width: 1067px;
}
@media screen and (max-width: 767px) {
  .as-seen-in--alt .as-seen-in__wrap {
    max-width: 100%;
  }
}
.as-seen-in--alt .as-seen-in__title {
  max-width: 180px;
}
@media screen and (max-width: 767px) {
  .as-seen-in--alt .as-seen-in__title {
    max-width: 100%;
  }
}
.as-seen-in--alt .as-seen-in__boxes {
  max-width: 76.2%;
}
@media screen and (max-width: 991px) {
  .as-seen-in--alt .as-seen-in__boxes {
    max-width: 72.2%;
  }
}
@media screen and (max-width: 767px) {
  .as-seen-in--alt .as-seen-in__boxes {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
## our-approach
--------------------------------------------------------------*/
.our-approach {
  position: relative;
  background-color: #eef5fb;
  padding: 90px 0 88px;
}
@media screen and (max-width: 1199px) {
  .our-approach {
    padding: 60px 0;
  }
}
@media screen and (max-width: 991px) {
  .our-approach {
    padding: 50px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .our-approach {
    padding: 42px 9px 89px;
  }
}

.our-approach__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 610px;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .our-approach__wrap {
    max-width: 470px;
  }
}
@media screen and (max-width: 767px) {
  .our-approach__wrap {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.our-approach__pretitle {
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .our-approach__pretitle {
    text-align: left;
  }
}

.our-approach__title {
  text-align: center;
  margin-top: 8px;
}
.our-approach__title sup {
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .our-approach__title sup {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .our-approach__title {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .our-approach__title {
    font-size: 24px;
    line-height: 1.28;
    text-align: left;
    margin-top: 10px;
    max-width: 330px;
  }
}

.our-approach__desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  color: #322e22;
  margin-top: 22px;
}
@media screen and (max-width: 1199px) {
  .our-approach__desc {
    margin-top: 15px;
  }
}
@media screen and (max-width: 991px) {
  .our-approach__desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .our-approach__desc {
    text-align: left;
    margin-top: 22px;
  }
}
@media screen and (max-width: 575px) {
  .our-approach__desc {
    font-size: 15px;
    line-height: 1.54;
  }
}

.our-approach__background-left {
  display: block;
  max-width: 420px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.our-approach__background-left picture {
  width: 100%;
  height: 100%;
}
.our-approach__background-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (max-width: 1400px) {
  .our-approach__background-left {
    max-width: 340px;
    height: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .our-approach__background-left {
    max-width: 230px;
  }
}
@media screen and (max-width: 991px) {
  .our-approach__background-left {
    max-width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .our-approach__background-left {
    height: auto;
    left: auto;
    right: 0;
    max-width: 140px;
  }
}

.our-approach__background-right {
  display: block;
  max-width: 463px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.our-approach__background-right picture {
  width: 100%;
  height: 100%;
}
.our-approach__background-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (max-width: 1400px) {
  .our-approach__background-right {
    max-width: 330px;
    height: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .our-approach__background-right {
    max-width: 210px;
  }
}
@media screen and (max-width: 991px) {
  .our-approach__background-right {
    max-width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .our-approach__background-right {
    height: auto;
    top: auto;
    bottom: 0;
    max-width: 134px;
  }
}

/*--------------------------------------------------------------
## our-difference
--------------------------------------------------------------*/
.our-difference {
  position: relative;
  background-color: #fff;
  padding: 82px 0 80px;
}
@media screen and (max-width: 1199px) {
  .our-difference {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .our-difference {
    padding: 42px 9px 40px;
  }
}

.our-difference__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.our-difference__pretitle {
  text-align: center;
  margin-bottom: 9px;
}

.our-difference__title {
  text-align: center;
}

.our-difference__boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  background-color: #eef5fb;
  border-radius: 8px;
  padding: 56px 157px 55px;
  margin-top: 38px;
}
@media screen and (max-width: 1400px) {
  .our-difference__boxes {
    padding: 50px 100px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .our-difference__boxes {
    padding: 50px;
  }
}
@media screen and (max-width: 991px) {
  .our-difference__boxes {
    padding: 40px 20px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .our-difference__boxes {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px 30px;
    padding: 32px 25px;
  }
}
@media screen and (max-width: 575px) {
  .our-difference__boxes {
    grid-gap: 24px 13px;
    padding: 32px 20px;
  }
}
@media screen and (max-width: 370px) {
  .our-difference__boxes {
    grid-template-columns: repeat(1, 1fr);
  }
}

.our-difference__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 400px) {
  .our-difference__box:nth-child(2) .our-difference__box-desc {
    padding: 0 4px;
  }
  .our-difference__box:nth-child(2) .our-difference__box-desc br {
    display: none;
  }
}

.our-difference__box-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
}
.our-difference__box-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .our-difference__box-image {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 575px) {
  .our-difference__box-image {
    width: 49px;
    height: 49px;
  }
}

.our-difference__box-title {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  text-align: center;
  margin-top: 27px;
}
@media screen and (max-width: 991px) {
  .our-difference__box-title {
    font-size: 14px;
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .our-difference__box-title {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 19px;
  }
}

.our-difference__box-desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  padding: 0 25px;
  margin-top: 11px;
}
@media screen and (max-width: 1199px) {
  .our-difference__box-desc {
    padding: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 991px) {
  .our-difference__box-desc {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .our-difference__box-desc {
    font-size: 14px;
    margin-top: 8px;
  }
}

/*--------------------------------------------------------------
## 50-50-image-padding
--------------------------------------------------------------*/
.image-padding-50-50 {
  position: relative;
  background-color: #fff;
  border-top: 1px solid #c6dff1;
  border-bottom: 1px solid #c6dff1;
  padding: 79px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .image-padding-50-50 {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .image-padding-50-50 {
    border-bottom: 0;
    padding: 40px 9px;
  }
}

.image-padding-50-50__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  z-index: 10;
}

.image-padding-50-50__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 48%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .image-padding-50-50__left {
    max-width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .image-padding-50-50__title {
    font-size: 24px;
    line-height: 1.27;
    max-width: 300px;
  }
}

.image-padding-50-50__desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 24px;
}
.image-padding-50-50__desc:first-of-type {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .image-padding-50-50__desc:first-of-type {
    margin-top: 21px;
  }
}
@media screen and (max-width: 767px) {
  .image-padding-50-50__desc {
    padding-right: 1px;
  }
}

.image-padding-50-50__btn {
  margin-top: 36px;
  min-width: 160px;
}
@media screen and (max-width: 767px) {
  .image-padding-50-50__btn {
    margin-top: 33px;
  }
}
@media screen and (max-width: 400px) {
  .image-padding-50-50__btn {
    min-width: 100%;
  }
}

.image-padding-50-50__right {
  max-width: 47.8%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.image-padding-50-50__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .image-padding-50-50__right {
    max-width: 100%;
    margin-top: 32px;
  }
}

.image-padding-50-50__background {
  display: block;
  max-width: 599px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -1px;
  right: 0;
}
.image-padding-50-50__background picture {
  width: 100%;
  height: 100%;
}
.image-padding-50-50__background img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .image-padding-50-50__background img {
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
@media (min-width: 1700px) {
  .image-padding-50-50__background {
    max-width: 46%;
  }
}
@media (min-width: 2800px) {
  .image-padding-50-50__background {
    max-width: 58%;
  }
}
@media screen and (max-width: 1199px) {
  .image-padding-50-50__background {
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .image-padding-50-50__background {
    max-width: 100%;
    height: auto;
    bottom: 0;
    top: auto;
    max-height: 270px;
  }
}
@media screen and (max-width: 500px) {
  .image-padding-50-50__background {
    max-height: initial;
  }
}

/*--------------------------------------------------------------
## our-story
--------------------------------------------------------------*/
.our-story {
  position: relative;
  background-color: #eef5fb;
  padding: 77px 0 80px;
}
@media screen and (max-width: 991px) {
  .our-story {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .our-story {
    padding: 40px 10px 42px;
  }
}

.our-story__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  z-index: 10;
}

.our-story__left {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 48%;
  width: 100%;
  padding: 29px 200px 190px 0;
}
@media screen and (max-width: 1199px) {
  .our-story__left {
    padding: 29px 50px 190px 0;
  }
}
@media screen and (max-width: 991px) {
  .our-story__left {
    max-width: 41%;
    padding: 30px 0 190px;
  }
}
@media screen and (max-width: 767px) {
  .our-story__left {
    max-width: 100%;
    padding: 0;
  }
}

.our-story__quote {
  position: relative;
  line-height: 1.5;
  z-index: 10;
}

.our-story__name {
  position: relative;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  margin-top: 33px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .our-story__name {
    margin-top: 17px;
  }
}

.our-story__position {
  position: relative;
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  margin-top: 12px;
  z-index: 10;
}

.our-story__image-person {
  position: absolute;
  bottom: 0;
  right: 3px;
  width: 360px;
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f4fbff;
}
.our-story__image-person img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 400px) {
  .our-story__image-person img {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .our-story__image-person {
    max-width: 265px;
    height: 250px;
  }
}
@media screen and (max-width: 991px) {
  .our-story__image-person {
    max-width: 220px;
    height: 210px;
  }
}
@media screen and (max-width: 767px) {
  .our-story__image-person {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 327px;
    height: 310px;
    margin-top: -21px;
  }
}

.our-story__right {
  max-width: 47.8%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.our-story__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .our-story__right {
    max-width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .our-story__right {
    max-width: 100%;
    margin-top: 31px;
  }
}

.our-story__title {
  margin-top: 8px;
}

.our-story__desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 24px;
}
.our-story__desc:first-of-type {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .our-story__desc:first-of-type {
    margin-top: 21px;
  }
}
@media screen and (max-width: 767px) {
  .our-story__desc {
    padding-right: 1px;
  }
}

/*--------------------------------------------------------------
## 50-50-two-pages-link
--------------------------------------------------------------*/
.two-pages-50-50 {
  position: relative;
  background-color: #fff;
  border-top: 1px solid #c6dff1;
  padding: 79px 0 80px;
  overflow: hidden;
  margin-top: 30px;
}
@media screen and (max-width: 991px) {
  .two-pages-50-50 {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .two-pages-50-50 {
    padding: 40px 10px;
    margin-top: 9px;
  }
}

.two-pages-50-50__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 56px;
}
@media screen and (max-width: 767px) {
  .two-pages-50-50__wrap {
    grid-gap: 15px;
  }
}
@media screen and (max-width: 575px) {
  .two-pages-50-50__wrap {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 32px;
  }
}

.two-pages-50-50__box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  padding: 40px 20px 100px 40px;
  background-color: #c6dff1;
  min-height: 417px;
}
@media screen and (max-width: 1199px) {
  .two-pages-50-50__box {
    min-height: 340px;
  }
}
@media screen and (max-width: 991px) {
  .two-pages-50-50__box {
    padding: 20px 20px 70px;
    min-height: 300px;
  }
}
@media screen and (max-width: 575px) {
  .two-pages-50-50__box {
    min-height: 250px;
    padding: 20px 46px 70px 20px;
  }
}

.two-pages-50-50__box-title {
  position: relative;
  font-weight: bold;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .two-pages-50-50__box-title {
    font-size: 24px;
  }
}

.two-pages-50-50__box-desc {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 23px;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .two-pages-50-50__box-desc {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .two-pages-50-50__box-desc {
    font-size: 15px;
    margin-top: 7px;
    max-width: 250px;
    width: 100%;
  }
}

.two-pages-50-50__box-btn {
  position: absolute;
  bottom: 40px;
  left: 40px;
  min-width: 176px;
  z-index: 8;
}
@media screen and (max-width: 991px) {
  .two-pages-50-50__box-btn {
    bottom: 20px;
    left: 20px;
    min-width: 160px;
  }
}
@media screen and (max-width: 575px) {
  .two-pages-50-50__box-btn {
    min-width: 176px;
  }
}

.two-pages-50-50__box-image {
  display: block;
  max-width: 453px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
}
.two-pages-50-50__box-image picture {
  width: 100%;
  height: 100%;
}
.two-pages-50-50__box-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .two-pages-50-50__box-image {
    max-width: 300px;
  }
}
@media screen and (max-width: 991px) {
  .two-pages-50-50__box-image {
    max-width: 230px;
  }
}
@media screen and (max-width: 767px) {
  .two-pages-50-50__box-image {
    max-width: 183px;
  }
}

.two-pages-50-50__box-background-image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.two-pages-50-50__box-background-image picture {
  width: 100%;
  height: 100%;
}
.two-pages-50-50__box-background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------
## our-goal
--------------------------------------------------------------*/
.our-goal {
  position: relative;
  background-color: #eef5fb;
  padding: 80px 0 79px;
  overflow: hidden;
}
.our-goal ul.section-ul {
  margin-top: 26px;
}
.our-goal ul.section-ul li {
  padding-left: 26px;
}
@media screen and (max-width: 991px) {
  .our-goal {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .our-goal {
    padding: 41px 10px 40px;
  }
}

.our-goal__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 1600px) {
  .our-goal__wrap {
    padding-left: 160px;
  }
}
@media screen and (max-width: 991px) {
  .our-goal__wrap {
    padding: 0;
  }
}

.our-goal__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 48%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .our-goal__left {
    max-width: 100%;
  }
}

.our-goal__pretitle {
  margin-bottom: 9px;
}

@media screen and (max-width: 991px) {
  .our-goal__title {
    font-size: 24px;
    line-height: 1.27;
    max-width: 300px;
  }
}

.our-goal__desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .our-goal__desc {
    padding-right: 1px;
    margin-top: 23px;
  }
}

.our-goal__btn {
  margin-top: 36px;
  min-width: 160px;
}
@media screen and (max-width: 767px) {
  .our-goal__btn {
    margin-top: 33px;
  }
}
@media screen and (max-width: 400px) {
  .our-goal__btn {
    min-width: 100%;
  }
}

.our-goal__right {
  max-width: 47.8%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.our-goal__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .our-goal__right {
    max-width: 100%;
    margin-top: 35px;
  }
}

.our-goal__background {
  display: block;
  max-width: 318px;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.our-goal__background picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.our-goal__background img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .our-goal__background {
    max-width: 260px;
  }
}
@media screen and (max-width: 991px) {
  .our-goal__background {
    max-width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .our-goal__background {
    max-width: 260px;
  }
}

/*--------------------------------------------------------------
## how-to-recycle
--------------------------------------------------------------*/
.how-to-recycle {
  background-color: #fff;
  padding: 80px 0;
}
.how-to-recycle .rich-text {
  margin-top: 15px;
}
.how-to-recycle .rich-text ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  counter-reset: custom-counter;
}
.how-to-recycle .rich-text li {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  padding-left: 33px;
  counter-increment: custom-counter;
  margin-top: 13px;
}
.how-to-recycle .rich-text li:first-child {
  margin-top: 0;
}
.how-to-recycle .rich-text li::before {
  content: counter(custom-counter);
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border: 1px solid #322e22;
  border-radius: 50%;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.how-to-recycle .rich-text li a {
  color: #322e22;
  text-decoration: underline;
  -webkit-transition: -webkit-text-decoration-color 350ms ease;
  transition: -webkit-text-decoration-color 350ms ease;
  transition: text-decoration-color 350ms ease;
  transition: text-decoration-color 350ms ease, -webkit-text-decoration-color 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .how-to-recycle .rich-text li a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .how-to-recycle .rich-text li {
    letter-spacing: -0.5px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .how-to-recycle .rich-text {
    margin-top: 24px;
  }
}
@media screen and (max-width: 991px) {
  .how-to-recycle {
    padding: 70px 0;
  }
}
@media screen and (max-width: 575px) {
  .how-to-recycle {
    padding: 40px 10px;
  }
}

.how-to-recycle__box {
  position: relative;
  display: block;
  background-color: #c6dff1;
  border-radius: 8px;
  padding: 46px 20px 46px 88px;
}
@media screen and (max-width: 1199px) {
  .how-to-recycle__box {
    padding: 40px 10px 40px 35px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-recycle__box {
    padding: 30px 30px 220px;
  }
}
@media screen and (max-width: 575px) {
  .how-to-recycle__box {
    padding: 34px 19px 243px 20px;
  }
}

.how-to-recycle__box-left {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 740px;
  width: 100%;
  z-index: 20;
}
@media screen and (max-width: 1199px) {
  .how-to-recycle__box-left {
    max-width: 530px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-recycle__box-left {
    max-width: 100%;
  }
}

.how-to-recycle__box-left-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .how-to-recycle__box-left-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.how-to-recycle__box-title {
  margin-right: 49px;
}
@media screen and (max-width: 1199px) {
  .how-to-recycle__box-title {
    margin-right: 20px;
  }
}
@media screen and (max-width: 991px) {
  .how-to-recycle__box-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-recycle__box-title {
    margin-right: 0;
  }
}
.how-to-recycle__box-title h2 {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 36.4px;
  text-align: left;
}
@media screen and (max-width: 575px) {
  .how-to-recycle__box-title h2 {
    font-size: 24px;
    line-height: 31.2px;
    max-width: 287px;
  }
}

.how-to-recycle__box-small-image {
  max-width: 62px;
  width: 100%;
}
.how-to-recycle__box-small-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .how-to-recycle__box-small-image {
    max-width: 53px;
    margin-top: 25px;
  }
}

.how-to-recycle__box-btn {
  min-width: 291px;
  margin-top: 40px;
}
@media screen and (max-width: 1400px) {
  .how-to-recycle__box-btn {
    margin-top: 25px;
  }
}
@media screen and (max-width: 400px) {
  .how-to-recycle__box-btn {
    min-width: 100%;
    padding: 18px 15px;
    margin-top: 27px;
  }
}
@media screen and (max-width: 370px) {
  .how-to-recycle__box-btn {
    font-size: 14px;
    letter-spacing: 0;
    padding: 14px 8px;
  }
}

.how-to-recycle__box-image {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 388px;
  width: 100%;
  z-index: 10;
}
.how-to-recycle__box-image picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.how-to-recycle__box-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .how-to-recycle__box-image img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .how-to-recycle__box-image {
    max-width: 50%;
  }
}
@media screen and (max-width: 1199px) {
  .how-to-recycle__box-image {
    max-width: 56%;
  }
}
@media screen and (max-width: 991px) {
  .how-to-recycle__box-image {
    max-width: 210px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-recycle__box-image {
    right: 0;
    max-width: 306px;
  }
}

.how-to-recycle__box-image-decor {
  display: block;
  max-width: 656px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 8px;
  overflow: hidden;
}
.how-to-recycle__box-image-decor picture {
  width: 100%;
  height: 100%;
}
.how-to-recycle__box-image-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------
## product-grid
--------------------------------------------------------------*/
.product-grid {
  position: relative;
  background-color: #fff;
  padding: 81px 0 85px;
}
@media screen and (max-width: 767px) {
  .product-grid .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .product-grid {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .product-grid {
    padding: 20px 9px 42px;
    overflow: hidden;
  }
}

.product-grid__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .product-grid__upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.product-grid__upper-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .product-grid__upper-wrap {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    margin-top: 16px;
  }
}

.product-grid__title {
  font-weight: bold;
  padding-top: 1px;
}

.product-grid__upper-btn {
  font-size: 14px;
  min-width: 124px;
  padding: 8px 10px 7px;
  display: none;
}
@media screen and (max-width: 767px) {
  .product-grid__upper-btn {
    display: inline-block;
    margin-right: 6px;
  }
}
@media screen and (max-width: 374px) {
  .product-grid__upper-btn {
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.product-listing__container-sort {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
.product-listing__container-sort .nice-select {
  height: 41px !important;
  padding: 1px 17px !important;
  background-color: transparent !important;
  border: 1px solid #322e22 !important;
  width: 186px !important;
  padding-right: 25px !important;
  border-radius: 30px;
  letter-spacing: 0;
  z-index: 100;
  -webkit-transition: none;
  transition: none;
}
.product-listing__container-sort .nice-select::after {
  right: 20px !important;
  margin-top: -8px !important;
  border-bottom: 2px solid #322e22 !important;
  border-right: 2px solid #322e22 !important;
  height: 11px !important;
  width: 11px !important;
}
.product-listing__container-sort .nice-select .nice-select-search-box {
  display: none;
}
.product-listing__container-sort .nice-select .current {
  font-size: 16px !important;
  color: #322e22;
}
.product-listing__container-sort .nice-select .option {
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 1.3;
  padding: 6px 5px 6px 25px;
  margin-bottom: 4px;
}
.product-listing__container-sort .nice-select .option:last-child {
  margin-bottom: 12px;
}
.product-listing__container-sort .nice-select .option:hover, .product-listing__container-sort .nice-select .option.focus, .product-listing__container-sort .nice-select .option.selected.focus {
  background-color: #eef5fb !important;
}
.product-listing__container-sort .nice-select .nice-select-dropdown {
  width: 186px !important;
  left: -1px !important;
  border-radius: 0 0 15px 15px !important;
  overflow: hidden !important;
  border: 1px solid #322e22 !important;
  border-top: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-top: 0;
}
.product-listing__container-sort .nice-select .nice-select-dropdown ul {
  max-height: 234px !important;
}
@media screen and (max-width: 767px) {
  .product-listing__container-sort .nice-select .nice-select-dropdown {
    width: 195px !important;
  }
}
@media screen and (max-width: 374px) {
  .product-listing__container-sort .nice-select .nice-select-dropdown {
    width: 100.6% !important;
  }
}
.product-listing__container-sort .nice-select.open {
  border-radius: 15px 15px 0 0;
  border-bottom: 0 !important;
}
@media screen and (max-width: 991px) {
  .product-listing__container-sort .nice-select {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 767px) {
  .product-listing__container-sort .nice-select {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 195px !important;
    height: 35px !important;
  }
}
@media screen and (max-width: 374px) {
  .product-listing__container-sort .nice-select {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .product-listing__container-sort {
    width: 195px;
  }
}
@media screen and (max-width: 374px) {
  .product-listing__container-sort {
    width: 100%;
  }
}

.product-listing__container-sort-select {
  display: none;
}

.product-listing__container-sort-title {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: #322e22;
  margin-right: 9px;
}
@media screen and (max-width: 991px) {
  .product-listing__container-sort-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .product-listing__container-sort-title {
    display: none;
  }
}

.product-grid__bottom {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 67px;
}
@media screen and (max-width: 767px) {
  .product-grid__bottom {
    margin-top: 24px;
  }
}

.product-grid__filter {
  max-width: 227px;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
}
@media screen and (max-width: 991px) {
  .product-grid__filter {
    max-width: 185px;
  }
}
@media screen and (max-width: 767px) {
  .product-grid__filter {
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    right: 0;
    max-width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 350ms ease;
    transition: 350ms ease;
  }
  .product-grid__filter.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .product-grid__filter.is-active .product-grid__filter-inner,
  .product-grid__filter.is-active .product-grid__filter-btn {
    right: 0;
  }
}

.product-grid__filter-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .product-grid__filter-inner {
    max-width: 60%;
    min-width: 227px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -100%;
    background-color: #fff;
    padding: 34px 0 90px 24px;
    overflow-y: auto;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
  }
}

.product-grid__filter-main-title {
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}

.product-grid__filter-title {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  margin-top: 33px;
}
@media screen and (max-width: 767px) {
  .product-grid__filter-title {
    margin-top: 26px;
  }
}

.product-grid__filter-lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 19px;
}

.product-grid__filter-list:not(:first-of-type) {
  margin-top: 14px;
}
.product-grid__filter-list:not(:first-of-type):first-child {
  margin-top: 0;
}
@media only screen and (min-width: 1199px) {
  .product-grid__filter-list:not(:first-of-type):hover .product-grid__filter-list-link-checkbox-label {
    -webkit-text-decoration-color: #322e22;
            text-decoration-color: #322e22;
  }
}

.product-grid__filter-list-link {
  color: #322e22;
}

.product-grid__filter-list-link-checkbox {
  position: relative;
  width: 100%;
}
.product-grid__filter-list-link-checkbox input[type=checkbox] {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.product-grid__filter-list-link-checkbox-label {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  padding-left: 24px;
  width: 100%;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.product-grid__filter-list-link-checkbox-label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #322e22;
  margin-right: 21px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
  pointer-events: none;
}
.product-grid__filter-list-link-checkbox-label::after {
  content: "";
  background-image: url('data:image/svg+xml,%3Csvg aria-hidden="true" focusable="false" data-prefix="far" data-icon="check" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-check fa-w-16 fa-9x"%3E%3Cpath fill="black" d="M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z" class=""%3E%3C/path%3E%3C/svg%3E');
  background-repeat: no-repeat;
  position: absolute;
  top: 4px;
  left: 3px;
  opacity: 0;
  width: 11px;
  height: 11px;
  z-index: 500;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}

.product-grid__filter-list-link-checkbox input[type=checkbox]:checked + span.product-grid__filter-list-link-checkbox-label::before {
  background-color: #c6dff1;
}
.product-grid__filter-list-link-checkbox input[type=checkbox]:checked + span.product-grid__filter-list-link-checkbox-label::after {
  opacity: 1;
}

.product-grid__filter-btn {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 60%;
  min-width: 227px;
  width: 100%;
  height: 54px;
  background: #fff;
  border-top: 1px solid #c6dff1;
  position: absolute;
  bottom: 0;
  right: -100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}
.product-grid__filter-btn .btn {
  padding: 10px;
  font-size: 13px;
  min-width: 180px;
}
@media screen and (max-width: 767px) {
  .product-grid__filter-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.product-grid__filter-close {
  display: none;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 38px;
  right: 27px;
  cursor: pointer;
}
.product-grid__filter-close svg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .product-grid__filter-close {
    display: block;
  }
}

.product-grid__products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 76.3%;
  width: 100%;
  margin-top: -2px;
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  .product-grid__products {
    max-width: 70%;
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .product-grid__products {
    max-width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .product-grid__products {
    max-width: 100%;
  }
}

.product-grid__products-upper {
  position: relative;
  width: 100%;
  padding-right: 100px;
}
@media screen and (max-width: 767px) {
  .product-grid__products-upper {
    position: absolute;
    overflow-x: auto;
    white-space: nowrap;
    padding-right: 0;
    width: calc(100% + 24px);
  }
}

.product-grid__products-pills {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .product-grid__products-pills {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 16px;
  }
}

.product-grid__products-pill {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #c6dff1;
  border-radius: 30px;
  padding: 5px 11px 4px 12px;
}
.product-grid__products-pill.is-removed {
  display: none;
}

.product-grid__products-pill-title {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.7px;
  line-height: 1.2;
  color: #322e22;
  margin-right: 9px;
}

.product-grid__products-pill-close {
  width: 10px;
  height: 10px;
  cursor: pointer;
  margin-top: -1px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.product-grid__products-pill-close svg {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1199px) {
  .product-grid__products-pill-close:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.product-grid__products-all {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
  position: relative;
  margin-top: 33px;
}
.product-grid__products-all::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 2px;
  right: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .product-grid__products-all:hover::after {
    width: 0;
  }
}
@media screen and (max-width: 767px) {
  .product-grid__products-all {
    margin-top: 26px;
  }
}

.product-grid__products-remove-all {
  position: absolute;
  top: 3px;
  right: 0;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.product-grid__products-remove-all.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.product-grid__products-remove-all::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 2px;
  right: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .product-grid__products-remove-all:hover::after {
    width: 0;
  }
}
@media screen and (max-width: 767px) {
  .product-grid__products-remove-all {
    display: none;
  }
}

.product-grid__products-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 41px 4.585%;
  width: 100%;
  margin-top: 65px;
}
.product-grid__products-bottom .product-grid__card-holder {
  max-width: 30.2%;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .product-grid__products-bottom .product-grid__card-holder {
    max-width: 48.3%;
  }
}
@media screen and (max-width: 350px) {
  .product-grid__products-bottom .product-grid__card-holder {
    max-width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .product-grid__products-bottom {
    gap: 41px 4.5%;
  }
}
@media screen and (max-width: 1199px) {
  .product-grid__products-bottom {
    gap: 41px 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 575px) {
  .product-grid__products-bottom {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 24px 0;
    margin-top: 41px;
  }
}

.product-grid__card-holder {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 292px;
}
.product-grid__card-holder.disabled {
  pointer-events: none;
}
.product-grid__card-holder.disabled .product-grid__card-btn-wrap {
  background-color: #a2a2a2;
  border-color: #a2a2a2;
}
@media screen and (max-width: 575px) {
  .product-grid__card-holder.disabled .product-grid__card-btn-wrap {
    margin-top: auto;
  }
}
@media screen and (max-width: 575px) {
  .product-grid__card-holder.disabled .product-grid__card-btn {
    background-color: #a2a2a2;
  }
}
@media only screen and (min-width: 1199px) {
  .product-grid__card-holder:hover .product-grid__card-quick-view {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 575px) {
  .product-grid__card-holder {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.product-grid__card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
@media only screen and (min-width: 1199px) {
  .product-grid__card:hover .product-grid__card-image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .product-grid__card:hover .product-grid__card-btn-wrap {
    background-color: #fff;
  }
  .product-grid__card:hover .product-grid__card-btn {
    color: #322e22;
  }
  .product-grid__card:hover .product-grid__card-btn-price {
    color: #322e22;
  }
}
@media screen and (max-width: 575px) {
  .product-grid__card {
    height: 100%;
  }
}

.product-grid__card-image {
  max-width: 100%;
  width: 100%;
  height: 300px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.product-grid__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .product-grid__card-image {
    height: 240px;
  }
}
@media screen and (max-width: 575px) {
  .product-grid__card-image {
    height: 180px;
  }
}

.product-grid__card-stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 31px;
}
@media screen and (max-width: 991px) {
  .product-grid__card-stars {
    margin-top: 15px;
  }
}
@media screen and (max-width: 575px) {
  .product-grid__card-stars {
    margin-top: 6px;
  }
}

.product-grid__card-stars-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 69px;
  width: 100%;
  margin-right: 10px;
}
.product-grid__card-stars-image img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-grid__card-stars-title {
  font-size: 13px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.3px;
  line-height: 1.2;
  color: #322e22;
}

.product-grid__card-title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  margin-top: 6px;
}
@media screen and (max-width: 991px) {
  .product-grid__card-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .product-grid__card-title {
    font-size: 18px;
  }
}

.product-grid__card-desc {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .product-grid__card-desc {
    line-height: 1.54;
    margin-top: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.product-grid__card-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-color: #322e22;
  border: 1px solid #322e22;
  border-radius: 30px;
  padding: 14px 5px;
  margin-top: 32px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 575px) {
  .product-grid__card-btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    background-color: #fff;
    border-color: #fff;
    padding: 0;
    margin-top: 20px;
  }
}

.product-grid__card-btn {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 991px) {
  .product-grid__card-btn {
    font-size: 13px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 575px) {
  .product-grid__card-btn {
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 1.5;
    text-align: center;
    background-color: #322e22;
    border-radius: 30px;
    padding: 10px 5px 9px;
    width: 100%;
  }
}

.product-grid__card-btn-price {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  color: #fff;
  padding-left: 5px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 991px) {
  .product-grid__card-btn-price {
    font-size: 13px;
  }
}
@media screen and (max-width: 575px) {
  .product-grid__card-btn-price {
    font-size: 15px;
    font-weight: bold;
    color: #322e22;
    padding: 0;
    margin-bottom: 11px;
  }
}

@media screen and (max-width: 575px) {
  .product-grid__card-btn-price-line {
    display: none;
  }
}

.product-grid__card-btn-price-sale {
  font-size: 13px;
  letter-spacing: 0.6px;
  color: #a5a4a0;
  text-decoration: line-through;
}
@media screen and (max-width: 991px) {
  .product-grid__card-btn-price-sale {
    font-size: 11px;
    font-weight: 400;
  }
}

.product-grid__card-quick-view {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin: 15px auto 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.product-grid__card-quick-view::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 2px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .product-grid__card-quick-view:hover::after {
    width: 0;
  }
}
@media screen and (max-width: 1199px) {
  .product-grid__card-quick-view {
    display: none;
  }
}

.product-grid__products-remove-all--mobile {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
  position: relative;
  margin-top: 33px;
}
.product-grid__products-remove-all--mobile.is-hidden {
  display: none;
}
.product-grid__products-remove-all--mobile::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 2px;
  right: 0;
}

.quick-buy-modal {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.quick-buy-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.quick-buy-modal.is-active .quick-buy-modal__inner {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
@media screen and (max-width: 1199px) {
  .quick-buy-modal {
    display: none;
  }
}

.quick-buy-modal__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  border-radius: 16px;
  max-width: 1024px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) scale(0.7);
          transform: translate(-50%, -50%) scale(0.7);
  overflow: hidden;
  padding: 32px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.quick-buy-modal__inner .product-grid__card-stars {
  text-transform: uppercase;
  margin-top: 0;
}
.quick-buy-modal__inner .product-grid__card-stars-image {
  max-width: 81px;
  margin-right: 6px;
}
.quick-buy-modal__inner .product-grid__card-stars-title {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.quick-buy-modal__left {
  position: relative;
  max-width: 300px;
  width: 100%;
  height: 258px;
  border-radius: 4px;
  overflow: hidden;
}

.quick-buy-modal__image {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.quick-buy-modal__image img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.quick-buy-modal__image-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.quick-buy-modal__close-icon {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 34px;
  right: 34px;
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.quick-buy-modal__close-icon svg {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1199px) {
  .quick-buy-modal__close-icon:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.quick-buy-modal__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 616px;
  width: 100%;
}

.quick-buy-modal__title {
  font-size: 40px;
  font-weight: bold;
  margin-top: 3px;
  padding-left: 4px;
  max-width: 564px;
}

.quick-buy-modal__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  max-width: 612px;
  margin-top: 25px;
  margin-left: auto;
}

.quick-buy-modal__list {
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px solid #000;
  cursor: pointer;
}
.quick-buy-modal__list:last-child {
  border-bottom: 0;
}
.quick-buy-modal__list input[type=radio] {
  position: absolute;
  visibility: hidden;
}
.quick-buy-modal__list label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 13px 15px 12px 45px;
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.quick-buy-modal__list .check {
  display: block;
  height: 18px;
  width: 18px;
  border: 1px solid #322e22;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.quick-buy-modal__list .check::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #322e22;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}

input[type=radio]:checked ~ .check::before {
  opacity: 1;
  visibility: visible;
}

input[type=radio]:checked ~ label {
  background-color: #eef5fb;
}

.quick-buy-modal__list-title {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  max-width: 263px;
  width: 100%;
  padding-right: 72px;
}

.quick-buy-modal__list-title-save {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  border-radius: 4px;
  overflow: hidden;
  padding: 5px 8px;
  background-color: #dcdcff;
  position: absolute;
  top: 50%;
  right: -7px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.quick-buy-modal__list-title-save.diff-color {
  color: #fff;
  background-color: #817ee1;
}

.quick-buy-modal__list-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.quick-buy-modal__list-price {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}

.quick-buy-modal__list-price-sale {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #aa1d28;
  text-decoration: line-through;
  margin-right: 17px;
}

.quick-buy-modal__list-price-text {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  margin-top: 3px;
}

.quick-buy-modal__buy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 612px;
  width: 100%;
  margin-top: 35px;
  margin-left: auto;
}

.quick-buy-modal__buy-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.quick-buy-modal__buy-input {
  position: relative;
  max-width: 128px;
  width: 100%;
  height: 48px;
  border-radius: 100px;
  border: 1px solid #322e22;
}
.quick-buy-modal__buy-input input {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #322e22;
  text-align: center;
  border: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  padding: 10px 40px;
}
.quick-buy-modal__buy-input input:focus {
  padding: inherit;
}
@media screen and (max-width: 370px) {
  .quick-buy-modal__buy-input {
    max-width: 100%;
  }
}

.quick-buy-modal__buy-input-indicator {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.quick-buy-modal__buy-input-indicator svg {
  width: 17px;
  height: 17px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}

.quick-buy-modal__buy-input-indicator--minus {
  left: 18px;
}

.quick-buy-modal__buy-input-indicator--plus {
  right: 18px;
}

.quick-buy-modal__buy-btn {
  min-width: auto;
  max-width: 468px;
  width: 100%;
}

.quick-buy-modal__buy-text {
  font-size: 13px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  color: #322e22;
  text-align: center;
  width: 100%;
  margin-top: 13px;
}

.quick-buy-modal__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  border-radius: 8px;
  background-color: #fafafa;
  padding: 15px 23px 13px 28px;
  margin-top: 23px;
}

.quick-buy-modal__box-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 208px;
  width: 100%;
}

.quick-buy-modal__box-title {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  color: #322e22;
}

.quick-buy-modal__box-link {
  position: relative;
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.4;
  color: #322e22;
  margin-top: 5px;
}
.quick-buy-modal__box-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 3px;
  left: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .quick-buy-modal__box-link:hover::after {
    width: 0;
  }
}

.quick-buy-modal__box-right {
  max-width: 331px;
  width: 100%;
  height: 47px;
}

.quick-buy-modal__box-btn {
  width: 100%;
  height: 100%;
  background-color: #4797f8;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: baseline;
  -webkit-justify-content: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  padding: 10px;
}
.quick-buy-modal__box-btn svg {
  width: 100%;
  height: 33px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .quick-buy-modal__box-btn:hover svg {
    -webkit-transform: translateY(2px) scale(1.1);
            transform: translateY(2px) scale(1.1);
  }
}

/*--------------------------------------------------------------
## hero-homepage
--------------------------------------------------------------*/
.hero-homepage {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}
@media screen and (max-width: 767px) {
  .hero-homepage {
    padding: 0 9px;
    margin-top: -15px;
  }
}

.hero-homepage__box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background-color: #c6dff1;
  border-radius: 8px;
  padding: 158px 40px 160px 168px;
  min-height: 548px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .hero-homepage__box {
    padding: 115px 40px 130px 130px;
    min-height: 470px;
  }
}
@media screen and (max-width: 1199px) {
  .hero-homepage__box {
    padding: 105px 30px 120px 60px;
    min-height: 440px;
  }
}
@media screen and (max-width: 991px) {
  .hero-homepage__box {
    padding: 75px 30px 90px 60px;
    min-height: 380px;
  }
}
@media screen and (max-width: 767px) {
  .hero-homepage__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    min-height: auto;
    padding: 20px 14px 25px;
  }
}

.hero-homepage__box-left {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 500px;
  width: 100%;
  z-index: 15;
}
@media screen and (max-width: 991px) {
  .hero-homepage__box-left {
    max-width: 420px;
  }
}
@media screen and (max-width: 767px) {
  .hero-homepage__box-left {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 45px;
  }
}

.hero-homepage__box-stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .hero-homepage__box-stars {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .hero-homepage__box-stars {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}

.hero-homepage__box-stars-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 8px;
}
.hero-homepage__box-stars-icons svg {
  width: 13px;
  height: 13px;
  margin-right: 2px;
}
@media screen and (max-width: 767px) {
  .hero-homepage__box-stars-icons svg {
    margin-right: 1px;
  }
}
@media screen and (max-width: 575px) {
  .hero-homepage__box-stars-icons {
    margin-bottom: 6px;
  }
}

.hero-homepage__box-stars-title {
  font-size: 13px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.3px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .hero-homepage__box-stars-title {
    text-align: center;
    margin-bottom: 6px;
  }
}

.hero-homepage__box-title {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .hero-homepage__box-title {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .hero-homepage__box-title {
    margin-top: 2px;
  }
}

.hero-homepage__box-desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 23px;
  color: #322e22;
  margin-top: 15px;
}
@media screen and (max-width: 991px) {
  .hero-homepage__box-desc br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hero-homepage__box-desc {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .hero-homepage__box-desc {
    font-size: 15px;
    line-height: 21px;
    max-width: 270px;
    margin-top: 13px;
  }
}

.hero-homepage__box-btn {
  margin-top: 35px;
}
@media screen and (max-width: 400px) {
  .hero-homepage__box-btn {
    min-width: 96%;
    margin-top: 24px;
  }
}

.hero-homepage__background {
  display: block;
  max-width: 1600px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-homepage__background picture {
  width: 100%;
  height: 100%;
}
.hero-homepage__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .hero-homepage__box-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.hero-homepage__box-right-left-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 445px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 37.13%;
  z-index: 10;
}
.hero-homepage__box-right-left-image picture {
  width: 100%;
  height: 100%;
}
.hero-homepage__box-right-left-image img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1400px) {
  .hero-homepage__box-right-left-image {
    max-width: 335px;
    right: 29%;
  }
}
@media screen and (max-width: 1199px) {
  .hero-homepage__box-right-left-image {
    right: 34%;
  }
}
@media screen and (max-width: 991px) {
  .hero-homepage__box-right-left-image {
    max-width: 200px;
    right: 28%;
  }
}
@media screen and (max-width: 767px) {
  .hero-homepage__box-right-left-image {
    position: relative;
    bottom: auto;
    right: auto;
    min-width: 163px;
    max-width: 163px;
    -webkit-transform: translate(9px, 25px);
            transform: translate(9px, 25px);
  }
}

.hero-homepage__box-right-right-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 402px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 9.7%;
  z-index: 10;
  height: 100%;
}
.hero-homepage__box-right-right-image picture {
  width: 100%;
  height: 100%;
}
.hero-homepage__box-right-right-image img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1400px) {
  .hero-homepage__box-right-right-image {
    max-width: 310px;
    right: 1%;
  }
}
@media screen and (max-width: 991px) {
  .hero-homepage__box-right-right-image {
    max-width: 210px;
  }
}
@media screen and (max-width: 767px) {
  .hero-homepage__box-right-right-image {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 150px;
    min-width: 150px;
    -webkit-transform: translate(-7px, 0);
            transform: translate(-7px, 0);
  }
}

/*--------------------------------------------------------------
## shop-by-need
--------------------------------------------------------------*/
.shop-by-need {
  position: relative;
  background-color: #fff;
  padding: 65px 0 64px;
  overflow: hidden;
}
@media (min-width: 1920px) {
  .shop-by-need {
    margin-left: 0;
    max-width: auto;
  }
}
.shop-by-need .container {
  position: relative;
  z-index: 10;
  max-width: 100%;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .shop-by-need .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    padding-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .shop-by-need .container {
    padding: 0 15px;
  }
}
@media (min-width: 1920px) {
  .shop-by-need .container {
    max-width: 1294px;
    margin: 0 auto;
  }
}
.shop-by-need .splide-custom-arrows {
  position: absolute;
  top: 7px;
  right: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 61px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .shop-by-need .splide-custom-arrows {
    right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .shop-by-need .splide-custom-arrows {
    display: none;
  }
}
@media (min-width: 1920px) {
  .shop-by-need .splide-custom-arrows {
    right: 0;
  }
}
.shop-by-need .splide-custom-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #322e22;
  background-color: #fff;
}
.shop-by-need .splide-custom-arrow svg {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 400px) {
  .shop-by-need .splide__arrows {
    max-width: 64.5%;
  }
}
@media (min-width: 1920px) {
  .shop-by-need .splide__track {
    overflow: visible;
  }
}
.shop-by-need .splide__slide__row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.shop-by-need .splide__slide__row li {
  max-width: 48.7% !important;
}
@media screen and (max-width: 575px) {
  .shop-by-need {
    overflow: hidden;
    padding: 49px 9px;
  }
}

.shop-by-need__upper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding-right: 30px;
  max-width: 1263px;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 575px) {
  .shop-by-need__upper {
    position: static;
    padding: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1920px) {
  .shop-by-need__upper {
    margin: 0;
    max-width: 1350px;
  }
}

.shop-by-need__title {
  max-width: 640px;
}
@media screen and (max-width: 575px) {
  .shop-by-need__title {
    max-width: 100%;
    text-align: center;
  }
}

.shop-by-need__slider {
  position: relative;
  overflow: hidden;
  z-index: 10;
}
@media (min-width: 1920px) {
  .shop-by-need__slider {
    max-width: 1350px;
    margin-left: 0;
  }
}
@media (min-width: 1920px) {
  .shop-by-need__slider {
    overflow: visible;
  }
}

.shop-by-need__boxes {
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 575px) {
  .shop-by-need__boxes {
    padding-bottom: 71px;
    margin-top: 23px;
  }
}
@media (min-width: 1920px) {
  .shop-by-need__boxes {
    padding-left: 1px;
  }
}

.shop-by-need__boxes--fade-left::before {
  display: none;
}

.shop-by-need__boxes--fade-right::after {
  display: none;
}

.shop-by-need__box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 216px;
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (min-width: 1199px) {
  .shop-by-need__box:hover .shop-by-need__box-image {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
}
@media screen and (max-width: 575px) {
  .shop-by-need__box {
    height: auto;
    border-radius: 0;
  }
}

.shop-by-need__box-inner {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 575px) {
  .shop-by-need__box-inner {
    position: relative;
    min-height: 253px;
    border-radius: 8px;
    overflow: hidden;
  }
}

.shop-by-need__box-title {
  position: relative;
  display: block;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-align: center;
  color: #322e22;
  background-color: #c6dff1;
  width: 100%;
  padding: 7px 5px 5px;
  z-index: 10;
}
@media screen and (max-width: 575px) {
  .shop-by-need__box-title {
    font-size: 14px;
    padding: 6px 5px 5px;
  }
}

.shop-by-need__box-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}

.shop-by-need__box-small-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 80px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 17px;
}
.shop-by-need__box-small-image img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 575px) {
  .shop-by-need__box-small-image {
    max-width: 60px;
    right: 7px;
  }
}

/*--------------------------------------------------------------
## usp-scrolling-marquee
--------------------------------------------------------------*/
.usp-scrolling-marquee {
  background-color: #fff;
  border-bottom: 1px solid #c6dff1;
  padding: 24px 0;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .usp-scrolling-marquee {
    padding: 19px 0 16px;
  }
}

.usp-scrolling-marquee__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
  -webkit-animation: infinite-slide 30500ms 1000ms linear infinite;
          animation: infinite-slide 30500ms 1000ms linear infinite;
}
@media screen and (max-width: 575px) {
  .usp-scrolling-marquee__wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-animation: none;
            animation: none;
  }
}

.usp-scrolling-marquee-logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 575px) {
  .usp-scrolling-marquee-logos {
    -webkit-flex-shrink: initial;
        -ms-flex-negative: initial;
            flex-shrink: initial;
    -webkit-transform: initial;
            transform: initial;
    will-change: initial;
    -webkit-user-select: initial;
       -moz-user-select: initial;
        -ms-user-select: initial;
            user-select: initial;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.usp-scrolling-marquee-logo {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  margin: 0 32px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  gap: 16px;
}
.usp-scrolling-marquee-logo picture {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 575px) {
  .usp-scrolling-marquee-logo picture {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.usp-scrolling-marquee-logo div {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 0.08em;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 142px;
}
@media screen and (max-width: 575px) {
  .usp-scrolling-marquee-logo div {
    font-size: 12px;
    line-height: 15.6px;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    letter-spacing: 0;
  }
}
.usp-scrolling-marquee-logo img {
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .usp-scrolling-marquee-logo img {
    height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .usp-scrolling-marquee-logo {
    margin: 0 20px;
  }
}
@media screen and (max-width: 575px) {
  .usp-scrolling-marquee-logo {
    max-width: 30%;
    width: 100%;
    margin: 13px 3px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@-webkit-keyframes infinite-slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes infinite-slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
.usp-scrolling-marquee--alt {
  border-top: 1px solid #c6dff1;
}
@media screen and (max-width: 575px) {
  .usp-scrolling-marquee--alt .usp-scrolling-marquee__wrap {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-animation: infinite-slide 10000ms 1000ms linear infinite;
            animation: infinite-slide 10000ms 1000ms linear infinite;
  }
}
.usp-scrolling-marquee--alt .usp-scrolling-marquee-logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 575px) {
  .usp-scrolling-marquee--alt .usp-scrolling-marquee-logos {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    will-change: transform;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-flex-wrap: unset;
        -ms-flex-wrap: unset;
            flex-wrap: unset;
    -webkit-box-align: unset;
    -webkit-align-items: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
.usp-scrolling-marquee--alt .usp-scrolling-marquee-logo div {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 0.08rem;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 142px;
}
@media screen and (max-width: 575px) {
  .usp-scrolling-marquee--alt .usp-scrolling-marquee-logo picture {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 575px) {
  .usp-scrolling-marquee--alt .usp-scrolling-marquee-logo {
    max-width: initial;
    width: initial;
    margin: 0 16px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 575px) {
  .usp-scrolling-marquee--alt {
    padding: 26px 0;
  }
}

/*--------------------------------------------------------------
## shop-bestsellers
--------------------------------------------------------------*/
.shop-bestsellers {
  background-color: #fff;
  padding: 81px 0 50px;
  overflow: hidden;
}
.shop-bestsellers .hero-homepage__box-stars {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 31px;
}
@media screen and (max-width: 575px) {
  .shop-bestsellers .hero-homepage__box-stars {
    margin-top: 46px;
  }
}
.shop-bestsellers .hero-homepage__box-stars-icons {
  margin-right: 9px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.shop-bestsellers .hero-homepage__box-stars-icons svg {
  margin-right: 1px;
}
@media screen and (max-width: 991px) {
  .shop-bestsellers {
    padding: 50px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .shop-bestsellers {
    padding: 48px 0 15px;
  }
}

.shop-bestsellers__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 575px) {
  .shop-bestsellers__upper {
    padding: 0 9px;
  }
}

.shop-bestsellers__title {
  font-size: 24px;
}

.shop-bestsellers__link {
  position: relative;
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  margin-top: -4px;
}
.shop-bestsellers__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 3px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .shop-bestsellers__link:hover::after {
    width: 0;
  }
}

.shop-bestsellers__boxes {
  position: relative;
  margin-top: 32px;
}
.shop-bestsellers__boxes .splide__arrows {
  display: none;
}
@media screen and (max-width: 575px) {
  .shop-bestsellers__boxes .splide__track {
    overflow: visible;
  }
}
@media screen and (max-width: 400px) {
  .shop-bestsellers__boxes .splide__track {
    margin-left: 9px;
  }
}
@media (min-width: 768px) {
  .shop-bestsellers__boxes .splide__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .shop-bestsellers__boxes .splide__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .shop-bestsellers__boxes {
    visibility: visible !important;
  }
}
@media screen and (max-width: 767px) {
  .shop-bestsellers__boxes {
    padding-bottom: 72px;
  }
}
@media screen and (max-width: 400px) {
  .shop-bestsellers__boxes {
    margin-top: 45px;
  }
}

.shop-bestsellers__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 292px;
}
@media only screen and (min-width: 1199px) {
  .shop-bestsellers__box:hover .shop-bestsellers__box-quick-view {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.shop-bestsellers__box:first-of-type .shop-bestsellers__box-image img {
  -o-object-position: 0 13px;
     object-position: 0 13px;
}
@media (min-width: 768px) {
  .shop-bestsellers__box {
    width: 100% !important;
  }
}
@media screen and (max-width: 400px) {
  .shop-bestsellers__box {
    width: 292px !important;
  }
}

.shop-bestsellers__box-image {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.shop-bestsellers__box-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 575px) {
  .shop-bestsellers__box-image {
    height: 274px;
  }
}

.shop-bestsellers__box-title {
  display: block;
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .shop-bestsellers__box-title {
    font-size: 20px;
    margin-top: -1px;
  }
}

.shop-bestsellers__box-desc {
  margin-top: 25px;
  display: inline-block;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-bestsellers__box-desc,
.shop-bestsellers__box-desc * {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
}

.shop-bestsellers__box-btn {
  min-width: 100%;
  margin-top: 9px;
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  .shop-bestsellers__box-btn {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .shop-bestsellers__box-btn {
    font-size: 15px;
    margin-top: 25px;
  }
}

.shop-bestsellers__box-quick-view {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin: 15px auto 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.shop-bestsellers__box-quick-view::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 2px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .shop-bestsellers__box-quick-view:hover::after {
    width: 0;
  }
}
@media screen and (max-width: 1199px) {
  .shop-bestsellers__box-quick-view {
    display: none;
  }
}

/*--------------------------------------------------------------
## about-us
--------------------------------------------------------------*/
.about-us {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  padding: 32px 0 80px;
}
@media screen and (max-width: 575px) {
  .about-us {
    padding: 0 9px 40px;
  }
}

.about-us__box {
  position: relative;
  width: 100%;
  background-color: #eef5fb;
  border-radius: 8px;
  padding: 82px 30px 81px 56px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .about-us__box {
    padding: 60px 30px 60px 50px;
  }
}
@media screen and (max-width: 991px) {
  .about-us__box {
    padding: 50px 20px 50px 35px;
  }
}
@media screen and (max-width: 767px) {
  .about-us__box {
    padding: 32px 20px 308px;
  }
}
@media screen and (max-width: 767px) {
  .about-us__box {
    padding: 32px 20px 293px;
  }
}

.about-us__box-texts {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 590px;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .about-us__box-texts {
    max-width: 460px;
  }
}
@media screen and (max-width: 767px) {
  .about-us__box-texts {
    max-width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .about-us__title {
    font-size: 22px;
    max-width: 240px;
    line-height: 29px;
  }
}

.about-us__desc {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 24px;
  z-index: 10;
}
.about-us__desc sup {
  font-size: 14px;
}
@media screen and (max-width: 575px) {
  .about-us__desc sup {
    font-size: 11px;
  }
}
@media screen and (max-width: 575px) {
  .about-us__desc {
    font-size: 15px;
    line-height: 23px;
    margin-top: 17px;
  }
}

.about-us__box-btn {
  min-width: 184px;
  margin-top: 40px;
}
@media screen and (max-width: 400px) {
  .about-us__box-btn {
    min-width: 100%;
    margin-top: 24px;
  }
}

.about-us__background {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.about-us__background picture {
  width: 100%;
  height: 100%;
}
.about-us__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .about-us__background--desk {
    display: none;
  }
}

.about-us__background--mob {
  display: none;
}
@media screen and (max-width: 767px) {
  .about-us__background--mob {
    display: block;
  }
}

/*--------------------------------------------------------------
## bundle-and-save
--------------------------------------------------------------*/
.bundle-and-save {
  position: relative;
  background-color: #eef5fb;
  padding: 72px 0 66px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .bundle-and-save {
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .bundle-and-save {
    padding: 48px 9px;
  }
}
.bundle-and-save .shopify-product-form {
  width: 100%;
}

.bundle-and-save__box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  border-radius: 8px;
  padding: 1px 96px 0 76px;
  width: 100%;
  z-index: 10;
  min-height: 423px;
}
@media screen and (max-width: 1199px) {
  .bundle-and-save__box {
    padding: 40px 25px 40px 50px;
    min-height: unset;
  }
}
@media screen and (max-width: 991px) {
  .bundle-and-save__box {
    padding: 32px 20px;
    min-height: unset;
  }
}
@media screen and (max-width: 767px) {
  .bundle-and-save__box {
    padding: 32px 20px 12px;
  }
}

.bundle-and-save__box-left {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 55.312%;
  width: 100%;
  z-index: 20;
}
@media screen and (max-width: 1199px) {
  .bundle-and-save__box-left {
    max-width: 48%;
  }
}
@media screen and (max-width: 1199px) {
  .bundle-and-save__box-left {
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .bundle-and-save__box-left {
    max-width: 100%;
  }
}

.bundle-and-save__box-title {
  font-size: 32px;
}
@media screen and (max-width: 991px) {
  .bundle-and-save__box-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .bundle-and-save__box-title {
    font-size: 32px;
  }
}

.bundle-and-save__box-subtitle {
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 8px;
}
@media screen and (max-width: 991px) {
  .bundle-and-save__box-subtitle {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .bundle-and-save__box-subtitle {
    font-size: 24px;
    margin-top: 25px;
    max-width: 225px;
  }
}

.bundle-and-save__box-prices-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 12px;
}
.bundle-and-save__box-prices-wrap .quick-buy-modal__list-price {
  font-size: 24px;
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .bundle-and-save__box-prices-wrap .quick-buy-modal__list-price {
    font-size: 20px;
  }
}
.bundle-and-save__box-prices-wrap .quick-buy-modal__list-price-sale {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .bundle-and-save__box-prices-wrap .quick-buy-modal__list-price-sale {
    font-size: 16px;
  }
}
.bundle-and-save__box-prices-wrap .quick-buy-modal__list-title-save {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  letter-spacing: 0;
  background-color: var(--color-2);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .bundle-and-save__box-prices-wrap {
    margin-top: 15px;
  }
}

.bundle-and-save__box-desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 21px;
}
@media screen and (max-width: 575px) {
  .bundle-and-save__box-desc {
    font-size: 15px;
    margin-top: 26px;
  }
}

.bundle-and-save__box-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 24px;
}

.bundle-and-save__box-btn {
  min-width: 100%;
}

.bundle-and-save__box-link {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  color: #322e22;
  margin-top: 13px;
}
.bundle-and-save__box-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 3px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 1199px) {
  .bundle-and-save__box-link {
    display: none;
  }
}
@media only screen and (min-width: 1199px) {
  .bundle-and-save__box-link:hover::before {
    width: 0;
  }
}

.bundle-and-save__box-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 438px;
  width: 100%;
  -webkit-transform: translateY(-31px);
          transform: translateY(-31px);
  z-index: 10;
  position: absolute;
  right: 52px;
  bottom: -31px;
}
.bundle-and-save__box-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .bundle-and-save__box-image img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .bundle-and-save__box-image {
    max-width: 35%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .bundle-and-save__box-image {
    max-width: 234px;
    margin: 60px auto 0;
    position: static;
  }
}

.bundle-and-save__image-decor {
  display: block;
  max-width: 578px;
  width: 100%;
  position: absolute;
  bottom: 1px;
  left: -3px;
  overflow: hidden;
}
.bundle-and-save__image-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 575px) {
  .bundle-and-save__image-decor {
    max-width: 377px;
    bottom: -55px;
    left: -53px;
  }
}

/*--------------------------------------------------------------
## product-single
--------------------------------------------------------------*/
.product-single {
  position: relative;
  background-color: #fff;
  padding: 40px 0 61px;
}
@media screen and (max-width: 575px) {
  .product-single {
    padding: 4px 9px 40px;
  }
}

.product-single__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.product-single__wrap .product-grid__card-stars {
  margin: 0;
}
.product-single__wrap .product-grid__card-stars-image {
  max-width: 73px;
}
.product-single__wrap .product-grid__card-stars-title {
  text-transform: uppercase;
}

.product-single__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 604px;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .product-single__left {
    max-width: 48%;
  }
}
@media screen and (max-width: 1199px) {
  .product-single__left {
    max-width: 42%;
  }
}
@media screen and (max-width: 991px) {
  .product-single__left {
    max-width: 100%;
  }
}

.product-single__left-slider {
  width: 100%;
}
.product-single__left-slider .splide__arrows {
  max-width: 96%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 20;
  bottom: 50%;
}
.product-single__left-slider .splide__arrows .splide__arrow {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 575px) {
  .product-single__left-slider .splide__arrows .splide__arrow {
    width: 30px;
    height: 30px;
  }
}
.product-single__left-slider .splide__arrows .splide__arrow--next::before {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.product-single__left-slider .splide__arrows .splide__arrow--prev::before {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
@media screen and (max-width: 575px) {
  .product-single__left-slider .splide__arrows {
    max-width: 100%;
    min-width: 103.5%;
  }
}
@media screen and (max-width: 991px) {
  .product-single__left-slider {
    margin-top: 25px;
  }
}

.single-product__image-main {
  width: 100%;
  height: 520px;
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .single-product__image-main {
    height: 360px;
  }
}
@media screen and (max-width: 575px) {
  .single-product__image-main {
    height: 275px;
  }
}

.single-product__image-main-splide {
  width: 100%;
  height: 100%;
}
.single-product__image-main-splide div {
  height: 100%;
}

.single-product__image-main-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.single-product__image-main-list img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.single-product__image-thumbnail-splide {
  max-width: 100%;
  width: 100%;
  margin-top: 16px;
}
.single-product__image-thumbnail-splide .splide__track {
  height: 100%;
}
.single-product__image-thumbnail-splide.less-then-5 .splide__list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single-product__image-thumbnail-splide.less-then-5 .splide__list .splide__slide {
  margin: 0 8px !important;
}
@media screen and (max-width: 575px) {
  .single-product__image-thumbnail-splide.less-then-5 .splide__list .splide__slide {
    margin: 0 6px !important;
  }
}

.single-product__image-thumbnail-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  width: 94px;
  height: 94px;
  border-radius: 8px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.single-product__image-thumbnail-list img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.single-product__image-thumbnail-list.is-active {
  border: 1px solid #4797f8 !important;
}
@media screen and (max-width: 1199px) {
  .single-product__image-thumbnail-list {
    height: 75px;
  }
}
@media screen and (max-width: 575px) {
  .single-product__image-thumbnail-list {
    height: 49px;
    border-radius: 4px;
    padding: 4px;
  }
}

.product-single__left-testimonials {
  max-width: 100%;
  margin-top: 15px;
}
.product-single__left-testimonials .splide__pagination {
  z-index: 10;
  left: auto;
  bottom: 39px;
  right: 24px;
  -webkit-transform: translate(0);
          transform: translate(0);
  max-width: 250px;
  width: auto;
  min-width: 176px;
  padding: 0 50px;
  background-color: #fff;
}
.product-single__left-testimonials .splide__pagination li button {
  margin: 0 6px;
}
@media screen and (max-width: 1199px) {
  .product-single__left-testimonials .splide__pagination {
    left: 19px;
    bottom: 39px;
    right: auto;
  }
}
.product-single__left-testimonials .splide__arrows {
  bottom: auto;
  top: 71%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
}
.product-single__left-testimonials .splide__arrow {
  pointer-events: all;
  z-index: 20;
  background-color: #fff;
}

.product-single__left-testimonial-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border: 1px solid #eef5fb;
  border-radius: 8px;
  padding: 30px 22px 24px 23px;
  height: 100%;
}
.product-single__left-testimonial-inner .hero-homepage__box-stars {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.product-single__left-testimonial-inner .hero-homepage__box-stars-icons svg {
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 575px) {
  .product-single__left-testimonial-inner .hero-homepage__box-stars-icons svg {
    margin-right: 2px;
  }
}
@media screen and (max-width: 1199px) {
  .product-single__left-testimonial-inner {
    padding: 30px 22px 60px 23px;
  }
}
@media screen and (max-width: 991px) {
  .product-single__left-testimonial-inner {
    padding: 30px 22px 75px 23px;
  }
}
@media screen and (max-width: 575px) {
  .product-single__left-testimonial-inner {
    padding: 23px 22px 87px 19px;
  }
}

.product-single__left-testimonial-desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 17px;
}
@media screen and (max-width: 575px) {
  .product-single__left-testimonial-desc {
    font-size: 15px;
    margin-top: 4px;
    padding-right: 12px;
  }
}

.product-single__left-testimonial-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 32px;
}
@media screen and (max-width: 991px) {
  .product-single__left-testimonial-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 575px) {
  .product-single__left-testimonial-wrap {
    margin-top: 27px;
  }
}

.product-single__left-testimonial-name {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
}
@media screen and (max-width: 575px) {
  .product-single__left-testimonial-name {
    font-size: 15px;
  }
}

.product-single__left-testimonial-badge {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  padding-left: 24px;
  margin-top: 11px;
}
.product-single__left-testimonial-badge::before {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml,%3Csvg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Crect y="0.980469" width="16" height="16" rx="8" fill="%23322E22"/%3E%3Cpath d="M11.6192 6.79883L7.25376 11.1625L5.0918 9.0005" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .product-single__left-testimonial-badge {
    margin-top: -2px;
    margin-left: 17px;
  }
}
@media screen and (max-width: 575px) {
  .product-single__left-testimonial-badge {
    font-size: 15px;
  }
}

.product-single__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 47.8%;
  width: 100%;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.product-single__right form {
  width: 100%;
}
.product-single__right .quick-buy-modal__lists {
  border-color: #4797f8;
  margin-top: 56px;
}
@media screen and (max-width: 991px) {
  .product-single__right .quick-buy-modal__lists {
    max-width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 575px) {
  .product-single__right .quick-buy-modal__lists {
    margin-top: 24px;
  }
}
.product-single__right .quick-buy-modal__list {
  border-color: #4797f8;
}
@media screen and (max-width: 575px) {
  .product-single__right .quick-buy-modal__list:first-child .quick-buy-modal__list-title {
    max-width: 130px;
  }
}
@media screen and (max-width: 575px) {
  .product-single__right .quick-buy-modal__list label {
    padding: 13px 15px;
  }
}
@media screen and (max-width: 767px) {
  .product-single__right .quick-buy-modal__list-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 14px;
    max-width: 195px;
    padding-right: 0;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .product-single__right .quick-buy-modal__list-desc,
  .product-single__right .product-single__plan-select-wrapper {
    padding-left: 30px;
  }
}
.product-single__right .select-icon-down {
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 575px) {
  .product-single__right .quick-buy-modal__list-price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 575px) {
  .product-single__right .quick-buy-modal__list-price-sale {
    margin-right: 0;
  }
}
.product-single__right .quick-buy-modal__list-title-save {
  color: #fff;
  background-color: var(--color-1);
}
.product-single__right .quick-buy-modal__list-title-save.diff-color {
  background-color: var(--color-2);
}
@media screen and (max-width: 575px) {
  .product-single__right .quick-buy-modal__list-title-save {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 8px;
  }
}
.product-single__right .quick-buy-modal__buy-text {
  max-width: 77%;
  margin-left: auto;
}
@media screen and (max-width: 1400px) {
  .product-single__right .quick-buy-modal__buy-text {
    max-width: 73%;
  }
}
@media screen and (max-width: 575px) {
  .product-single__right .quick-buy-modal__buy-text {
    max-width: 100%;
  }
}
.product-single__right .quick-buy-modal__box {
  padding: 15px 20px 13px;
  margin-top: 36px;
}
@media screen and (max-width: 575px) {
  .product-single__right .quick-buy-modal__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 15px 13px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 575px) {
  .product-single__right .quick-buy-modal__box-left {
    max-width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.product-single__right .quick-buy-modal__buy {
  margin-bottom: 36px;
}
@media screen and (max-width: 991px) {
  .product-single__right .quick-buy-modal__buy {
    max-width: 100%;
    margin-top: 31px;
    margin-bottom: 32px;
  }
}
.product-single__right .quick-buy-modal__buy-btn {
  max-width: 77%;
}
@media screen and (max-width: 1400px) {
  .product-single__right .quick-buy-modal__buy-btn {
    max-width: 73%;
  }
}
@media screen and (max-width: 575px) {
  .product-single__right .quick-buy-modal__buy-btn {
    max-width: 58%;
  }
}
@media screen and (max-width: 370px) {
  .product-single__right .quick-buy-modal__buy-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1400px) {
  .product-single__right .quick-buy-modal__box-right {
    max-width: 56%;
  }
}
@media screen and (max-width: 1199px) {
  .product-single__right .quick-buy-modal__box-right {
    max-width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .product-single__right .quick-buy-modal__box-right {
    max-width: 100%;
    margin-top: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .product-single__right {
    max-width: 54%;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@media screen and (max-width: 991px) {
  .product-single__right {
    max-width: 100%;
  }
}

.product-single__right-upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.product-single__right-title {
  font-weight: bold;
  margin-top: 8px;
}
@media screen and (max-width: 575px) {
  .product-single__right-title {
    font-size: 24px;
    margin-top: 7px;
  }
}

.product-single__right-desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  max-width: 604px;
  margin-top: 16px;
}
@media screen and (max-width: 991px) {
  .product-single__right-desc {
    max-width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  .product-single__right-desc {
    margin-top: 24px;
  }
}

.product-single__right-lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 24px;
}

.product-single__right-list {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  padding-left: 36px;
  margin-top: 16px;
}
.product-single__right-list::before {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml,%3Csvg width="11" height="24" viewBox="0 0 11 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M10.9894 7.13032V22.2728C10.9425 22.2873 10.8956 22.3017 10.8523 22.3125C10.8451 22.4641 10.8415 22.6156 10.8307 22.7671C10.7946 23.2073 10.5348 23.4815 10.1704 23.6871C10.0189 23.7737 9.86736 23.7773 9.70861 23.7773C6.8872 23.7773 4.0658 23.781 1.24439 23.7773C1.14697 23.7773 1.04595 23.7593 0.94493 23.7485L0.883595 23.716C0.883595 23.716 0.851124 23.6908 0.833084 23.6835C0.36766 23.4635 0.147576 23.0918 0.154792 22.5795C0.1584 22.4893 0.154792 22.3991 0.154792 22.3089C0.0934568 22.2945 0.0429457 22.2837 -0.000349597 22.2764V7.33597C-0.000349597 7.29989 -0.00395753 7.26021 -0.000349597 7.22413C0.0104742 6.83447 0.147576 6.49532 0.457859 6.26441C1.00987 5.85672 1.59075 5.48149 2.14277 5.0738C2.39893 4.88258 2.69117 4.72383 2.87157 4.44601C3.03032 4.20068 3.17464 3.95173 3.18546 3.65588C3.19989 3.33477 3.21071 3.01366 3.21793 2.69256C3.22154 2.51216 3.21793 2.33176 3.21793 2.16219C3.30813 2.15137 3.3839 2.14054 3.48853 2.12972C3.48853 2.09364 3.48853 2.05756 3.48131 2.02148H3.46688C3.46688 2.02148 3.46688 1.98179 3.46688 1.96375C3.36946 1.94571 3.30091 1.93128 3.23236 1.92046C3.22875 1.90603 3.21793 1.88438 3.21793 1.86273V0.314926C3.21793 0.192257 3.26123 0.0912343 3.3406 -0.00257206C3.50296 -0.197401 3.71943 -0.219048 3.94313 -0.222656C4.93892 -0.222656 5.9311 -0.222656 6.92689 -0.219048C7.09646 -0.219048 7.26243 -0.190185 7.432 -0.175753L7.46447 -0.157713C7.7026 -0.0494753 7.78558 0.163393 7.7928 0.394301C7.80723 0.899412 7.7964 1.40452 7.7964 1.8916C7.69177 1.93489 7.60879 1.96736 7.52942 2.00705C7.52942 2.00705 7.5222 2.01426 7.51859 2.02148V2.0287C7.54024 2.19105 7.67013 2.14776 7.78919 2.15858C7.7928 2.2127 7.80001 2.27043 7.80001 2.32816C7.80362 2.73224 7.80001 3.13994 7.80362 3.54403C7.81083 3.91926 7.95876 4.24397 8.20049 4.52178C8.49995 4.87175 8.90765 5.08823 9.27205 5.35882C9.73747 5.70879 10.2137 6.04794 10.6719 6.40873C10.8992 6.58191 10.9894 6.84529 10.993 7.13032H10.9894Z" fill="%23231F20"/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  width: 11px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 7px;
}
.product-single__right-list:first-child {
  margin-top: 0;
}

.product-single__right-facts-link {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  margin-top: 59px;
}
.product-single__right-facts-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  bottom: 3px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 575px) {
  .product-single__right-facts-link {
    margin-top: 35px;
  }
}

.product-single__right-accordions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 19px;
}

.product-single__right-accordion {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #c6dff1;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.product-single__right-accordion.is-active .product-single__right-accordion-question::after {
  -webkit-transform: translateY(-105%) rotate(180deg);
          transform: translateY(-105%) rotate(180deg);
}

.product-single__right-accordion-question {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  cursor: pointer;
  padding: 22px 30px 19px 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.product-single__right-accordion-question::after {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml,%3Csvg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M8.00003 9.5C7.81403 9.5 7.62785 9.42669 7.48585 9.28025L0.213136 1.78029C-0.0710455 1.48723 -0.0710454 1.01267 0.213136 0.719796C0.497317 0.426922 0.957498 0.426735 1.2415 0.719796L8.00003 7.68951L14.7586 0.719798C15.0427 0.426737 15.5029 0.426737 15.7869 0.719799C16.0709 1.01286 16.0711 1.48742 15.7869 1.78029L8.51421 9.28025C8.37221 9.42669 8.18603 9.5 8.00003 9.5Z" fill="%23322e22"/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 56%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}

.product-single__right-accordion-answer {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.product-single__right-accordion-answer .entry-content p {
  font-size: 15px;
}

/*--------------------------------------------------------------
## Product Single Facts Popup
--------------------------------------------------------------*/
.product-single__ingredients-modal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform;
  z-index: 99910000;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.product-single__ingredients-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.product-single__ingredients-modal.is-visible .product-single__ingredients-modal-inner {
  right: 0;
}

.product-single__ingredients-modal-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 460px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  margin-left: 0;
  right: -100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}
.product-single__ingredients-modal-inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(102, 101, 180, 0)), to(#6665b4));
  background: linear-gradient(180deg, rgba(102, 101, 180, 0) 0%, #6665b4 100%);
  z-index: 2;
}
@media screen and (max-width: 500px) {
  .product-single__ingredients-modal-inner {
    max-width: 100%;
  }
}

.product-single__ingredients-modal-close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 36px;
  right: 24px;
  cursor: pointer;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.product-single__ingredients-modal-close svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1199px) {
  .product-single__ingredients-modal-close:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.product-single__ingredients-modal-picture {
  display: block;
  max-width: 460px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  overflow-y: auto;
}
.product-single__ingredients-modal-picture picture {
  width: 100%;
  height: 100vh;
}
.product-single__ingredients-modal-picture img {
  width: 100%;
  min-height: auto;
  height: auto;
}
@media screen and (max-width: 500px) {
  .product-single__ingredients-modal-picture {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
## Sticky CTA
--------------------------------------------------------------*/
.sticky-cta {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #c6dff1;
  border-bottom: 1px solid #4797f8;
  padding: 15px 0 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
  z-index: 999999;
}
.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.sticky-cta .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sticky-cta {
    top: auto;
    bottom: 0;
    border-bottom: 0;
    padding: 8px 9px;
  }
}

.sticky-cta__title {
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  max-width: 30%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .sticky-cta__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sticky-cta__title {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    padding: 4px 0 2px;
    text-align: center;
    font-size: 18px;
    background-color: var(--color-3);
    border-bottom: 1px solid var(--color-1);
  }
}
@media screen and (max-width: 575px) {
  .sticky-cta__title {
    font-size: 16px;
  }
}

.sticky-cta__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 60%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sticky-cta__wrap {
    max-width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.sticky-cta__text {
  font-size: 13px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  color: #1a1a1a;
  margin-right: 45px;
}
@media screen and (max-width: 991px) {
  .sticky-cta__text {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sticky-cta__text {
    font-size: 12px;
  }
}

.sticky-cta__btn {
  padding: 10px 15px;
  min-width: 160px;
}
@media screen and (max-width: 575px) {
  .sticky-cta__btn {
    padding: 9px 15px;
    min-width: 204px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
## Product Single List
--------------------------------------------------------------*/
.product-single .product-single__lists {
  margin-top: 24px;
}
.product-single .product-single__lists .quick-buy-modal__list label {
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 14px 16px 14px 46px;
  padding: 14px 16px 14px 46px;
  letter-spacing: 0;
  min-height: 68px;
}
@media screen and (max-width: 767px) {
  .product-single .product-single__lists .quick-buy-modal__list label {
    padding: 14px 16px;
    min-height: 64px;
  }
}
.product-single .product-single__lists .quick-buy-modal__list-title {
  padding-right: 0;
  margin-top: 6px;
  margin-bottom: 6px;
}
.product-single .product-single__lists .quick-buy-modal__list-title span {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .product-single .product-single__lists .quick-buy-modal__list-title {
    padding-left: 30px;
    display: inline-block;
    font-size: 16px;
    max-width: 168px;
  }
}
.product-single .product-single__lists .quick-buy-modal__list-desc {
  font-size: 14px;
  line-height: 14px;
  margin-top: 6px;
  letter-spacing: 0;
  max-width: 65%;
}
@media screen and (max-width: 767px) {
  .product-single .product-single__lists .quick-buy-modal__list:first-child .quick-buy-modal__list-title {
    max-width: 168px;
  }
}
.product-single .product-single__lists .product-single__plan-select-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
@media screen and (max-width: 500px) {
  .product-single .product-single__lists .product-single__plan-select-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 12px;
  }
}
.product-single .product-single__lists .product-single__plan-select-wrapper label {
  font-size: 14px;
  line-height: 21px;
  padding: 0;
  min-height: unset;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 500px) {
  .product-single .product-single__lists .product-single__plan-select-wrapper label {
    margin-bottom: 10px;
  }
}
.product-single .product-single__lists .product-single__plan-select-container {
  border-radius: 100px;
  border: 1px solid #000;
  font-size: 14px;
  line-height: 18px;
  min-width: 161px;
  background-color: transparent;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 18px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .product-single .product-single__lists .product-single__plan-select-container {
    padding-right: 5px;
  }
}
.product-single .product-single__lists .product-single__plan-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 7px 18px;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}
.product-single .product-single__lists .select-icon-down {
  pointer-events: none;
}
.product-single .product-single__lists .check {
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.product-single .product-single__lists .quick-buy-modal__list-wrap {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .product-single .product-single__lists .quick-buy-modal__list-wrap {
    right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .product-single .product-single__lists .quick-buy-modal__list-price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .product-single .product-single__lists .quick-buy-modal__list-price-sale {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .product-single .product-single__lists .quick-buy-modal__list-price-text {
    font-size: 12px;
  }
}

.product-single__options-list {
  margin-top: 41px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .product-single__options-list {
    margin-top: 14px;
  }
}
.product-single__options-list .product-single__options-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
}
.product-single__options-list .product-single__options-wrapper--1 {
  grid-template-columns: repeat(1, 1fr);
}
.product-single__options-list .product-single__options-wrapper--2 {
  grid-template-columns: repeat(2, 1fr);
}
.product-single__options-list .product-single__option-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 8px;
  width: 100%;
  border: 1px solid #4797f8;
  padding: 14px 24px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  cursor: pointer;
  min-height: 80px;
  margin-top: 10px;
}
.product-single__options-list .product-single__option-item.active {
  background-color: #eef5fb;
}
.product-single__options-list .product-single__option-item:nth-of-type(3) .product-single__option-label {
  background-color: #4797f8;
}
@media screen and (max-width: 767px) {
  .product-single__options-list .product-single__option-item {
    font-size: 14px;
    line-height: 21px;
    max-width: unset;
    min-width: 104px;
    padding: 16px 0;
    min-height: 75px;
  }
}
@media screen and (max-width: 370px) {
  .product-single__options-list .product-single__option-item {
    min-width: 100%;
  }
}
.product-single__options-list .product-single__option-title {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .product-single__options-list .product-single__option-title {
    font-size: 13px;
    letter-spacing: 0;
  }
}
.product-single__options-list .product-single__option-label {
  font-size: 12px;
  line-height: 12px;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
  white-space: nowrap;
  background: #c6dff1;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: -12px;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
}

.single-product__zoom-button {
  outline: none;
  background: none;
  border-radius: 50px;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #322e22;
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 575px) {
  .single-product__zoom-button {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 991px) {
  .single-product__zoom-button {
    bottom: 24px;
    right: 24px;
  }
}
.single-product__zoom-button svg {
  pointer-events: none;
}

.product-single__zoom-modal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform;
  z-index: 99910000;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.product-single__zoom-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.product-single__zoom-modal-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(34px);
          backdrop-filter: blur(34px);
  z-index: 1;
}

.product-single__zoom-modal-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 1094px;
  max-height: calc(100% - 80px);
  z-index: 2;
}
@media screen and (min-width: 991px) {
  .product-single__zoom-modal-inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 991px) {
  .product-single__zoom-modal-inner {
    max-width: calc(100% - 48px);
    max-height: calc(100% - 48px);
  }
}
@media screen and (max-width: 575px) {
  .product-single__zoom-modal-inner {
    border-radius: 0;
    max-width: 100%;
    max-height: 100%;
    background: #fff;
  }
}

.product-single__zoom-modal-content {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 575px) {
  .product-single__zoom-modal-content {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }
}
@media screen and (max-width: 575px) {
  .product-single__zoom-modal-content {
    height: 100%;
  }
}

.product-single__zoom-modal-close {
  outline: none;
  border: none;
  background: none;
  position: absolute;
  padding: 0;
  top: 40px;
  right: 40px;
  z-index: 2;
}
.product-single__zoom-modal-close svg {
  pointer-events: none;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 991px) {
  .product-single__zoom-modal-close {
    top: 24px;
    right: 24px;
  }
}

.product-single__zoom-button {
  outline: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.product-single__zoom-button:disabled {
  color: #C7C7C7;
}
.product-single__zoom-button.zoomist-zoomer-disabled {
  color: #C7C7C7;
}

.product-single__zoom-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .product-single__zoom-buttons {
    bottom: 24px;
    right: 24px;
    gap: 20px;
  }
}
.product-single__zoom-buttons svg {
  pointer-events: none;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 991px) {
  .product-single__zoom-buttons svg {
    width: 32px;
    height: 32px;
  }
}
.product-single__zoom-buttons svg.disabled {
  color: #C7C7C7;
}

.modal-zoom__image-thumbnail-splide {
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 575px) {
  .modal-zoom__image-thumbnail-splide {
    margin-top: 16px;
  }
}
@media screen and (max-width: 575px) {
  .modal-zoom__image-thumbnail-splide {
    padding: 24px;
  }
}
.modal-zoom__image-thumbnail-splide.less-then-5 .splide__list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-zoom__image-thumbnail-splide.less-then-5 .splide__list .splide__slide {
  margin: 0 8px !important;
}
@media screen and (max-width: 575px) {
  .modal-zoom__image-thumbnail-splide.less-then-5 .splide__list .splide__slide {
    margin: 0 6px !important;
  }
}
.modal-zoom__image-thumbnail-splide .splide__track {
  height: 100%;
}

.modal-zoom__slider {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 991px) {
  .modal-zoom__slider {
    padding: 0 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .modal-zoom__slider {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 24px;
  }
}

.modal-zoom__image-thumbnail {
  height: 52px;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
  padding: 0 2px;
  border-radius: 4px;
}
@media screen and (min-width: 575px) {
  .modal-zoom__image-thumbnail {
    width: 90px !important;
    height: 90px;
    padding: 2px;
  }
}
@media screen and (min-width: 991px) {
  .modal-zoom__image-thumbnail {
    width: 108px !important;
    height: 92px;
    padding: 10px;
    border-radius: 8px;
  }
}
.modal-zoom__image-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-zoom__image-thumbnail.is-active {
  border: 1px solid #4797f8 !important;
}
@media screen and (min-width: 575px) {
  .modal-zoom__image-thumbnail.is-active {
    border: 2px solid #4797f8 !important;
  }
}

.modal-zoom__image-main {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
}
@media screen and (min-width: 991px) {
  .modal-zoom__image-main {
    max-width: 800px;
    max-height: 620px;
  }
}
@media screen and (max-width: 1199px) {
  .modal-zoom__image-main {
    height: 620px;
  }
}
@media screen and (max-width: 575px) {
  .modal-zoom__image-main {
    height: 400px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.modal-zoom__image-main .zoomist-container {
  height: 100%;
}
.modal-zoom__image-main .zoomist-wrapper {
  background-color: #fff;
}
.modal-zoom__image-main .zoomist-image {
  height: 100%;
}

.modal-zoom__zoomist-image {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.single-product__image-zoom {
  cursor: pointer;
}

/*--------------------------------------------------------------
## quote
--------------------------------------------------------------*/
.quote {
  position: relative;
  background-color: #fff;
  padding: 88px 0;
}
.quote .container {
  max-width: 1314px;
}
@media screen and (max-width: 1199px) {
  .quote .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .quote .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .quote .container {
    max-width: 540px;
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .quote {
    padding: 70px 0;
  }
}
@media screen and (max-width: 575px) {
  .quote {
    padding: 48px 0 62px;
  }
}
@media screen and (max-width: 400px) {
  .quote {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .quote .quote-decor__image--desk-only {
    display: none;
  }
}
.quote .quote-decor__image--mob-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .quote .quote-decor__image--mob-only {
    display: block;
  }
}

.quote-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 10;
}

.quote-title {
  line-height: 1.32;
  max-width: 800px;
  text-align: center;
}
.quote-title strong {
  display: block;
}

.quote-sliders {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 69px;
}
@media screen and (max-width: 1199px) {
  .quote-sliders {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 575px) {
  .quote-sliders {
    margin-top: 40px;
  }
}

.quote-slider__left {
  position: relative;
  max-width: 43%;
  width: 100%;
  z-index: 10;
}
.quote-slider__left .splide__pagination {
  z-index: 10;
  position: relative;
  left: auto;
  bottom: auto;
  -webkit-transform: translate(0);
          transform: translate(0);
  max-width: 250px;
  width: auto;
  min-width: 213px;
  padding: 0 50px;
  margin-top: 48px;
}
.quote-slider__left .splide__pagination li button {
  margin: 0 9px;
}
@media screen and (max-width: 400px) {
  .quote-slider__left .splide__pagination {
    margin: 49px auto 0;
    left: auto;
  }
}
.quote-slider__left .splide__arrows {
  bottom: auto;
  top: 71%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
}
.quote-slider__left .splide__arrow {
  pointer-events: all;
  z-index: 20;
}
@media screen and (max-width: 400px) {
  .quote-slider__left .splide__arrow {
    width: 36px;
    height: 36px;
    overflow: hidden;
    border: 1px solid #322e22;
  }
}
.quote-slider__left .splide__arrow::before {
  background-color: #fff;
  border-radius: 50%;
  width: 39px;
  height: 39px;
}
@media screen and (max-width: 1199px) {
  .quote-slider__left {
    max-width: 660px;
  }
}
@media screen and (max-width: 991px) {
  .quote-slider__left {
    max-width: 520px;
  }
}
@media screen and (max-width: 767px) {
  .quote-slider__left {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 400px) {
  .quote-slider__left {
    margin-top: 25px;
    padding: 0 24px;
  }
}

.quote-slider__left-slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 575px) {
  .quote-slider__left-slider {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.quote-slider__left-slider .splide__track {
  max-width: 100%;
}

.quote-slider__left-slider-box-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.quote-slider__left-slider-box-desc {
  font-size: 28px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
}
@media screen and (max-width: 991px) {
  .quote-slider__left-slider-box-desc {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .quote-slider__left-slider-box-desc {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .quote-slider__left-slider-box-desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 400px) {
  .quote-slider__left-slider-box-desc {
    max-width: 333px;
  }
}

.quote-slider__left-slider-box-texts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 32px;
}
@media screen and (max-width: 575px) {
  .quote-slider__left-slider-box-texts {
    display: none;
  }
}

.quote-slider__left-slider-box-texts--mobile {
  display: block;
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding-right: 8px;
  z-index: 2;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}

.quote-slider__left-slider-box-name {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 1.5;
  color: #322e22;
  text-transform: uppercase;
}

.quote-slider__left-slider-box-position {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 7px;
}
@media screen and (max-width: 575px) {
  .quote-slider__left-slider-box-position {
    display: block;
    margin-top: 7px;
  }
}

.quote-slider__right {
  position: absolute;
  top: -28px;
  right: 0;
  max-width: 845px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .quote-slider__right {
    padding-left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .quote-slider__right .quote-slider__right-slider {
    overflow: hidden;
  }
}
.quote-slider__right.has-padding {
  padding-right: 26px;
}
@media screen and (max-width: 767px) {
  .quote-slider__right.has-padding {
    padding-right: 0;
  }
}
@media screen and (max-width: 400px) {
  .quote-slider__right.has-padding {
    padding-left: 10px;
  }
}
.quote-slider__right .splide__track {
  max-width: 625px;
  margin-left: auto;
  padding-bottom: 150px;
  overflow: visible;
}
@media screen and (max-width: 1300px) {
  .quote-slider__right .splide__track {
    max-width: 545px;
  }
}
@media screen and (max-width: 1199px) {
  .quote-slider__right .splide__track {
    max-width: 100%;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .quote-slider__right .splide__track {
    max-width: 573px;
  }
}
@media screen and (max-width: 767px) {
  .quote-slider__right .splide__track {
    max-width: 375px;
  }
}
@media screen and (max-width: 575px) {
  .quote-slider__right .splide__track {
    max-width: 100%;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 1300px) {
  .quote-slider__right {
    max-width: 697px;
  }
}
@media screen and (max-width: 1199px) {
  .quote-slider__right {
    position: relative;
    top: auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .quote-slider__right {
    overflow: visible;
  }
}
@media screen and (max-width: 767px) {
  .quote-slider__right .splide__slide.is-prev {
    visibility: hidden;
  }
}

.quote-slider__right-slider-box {
  position: relative;
  height: 260px;
  border: 0 !important;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}
.quote-slider__right-slider-box.is-prev {
  -webkit-transition: 1ms ease;
  transition: 1ms ease;
  opacity: 0;
}
@media screen and (max-width: 575px) {
  .quote-slider__right-slider-box.is-prev {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .quote-slider__right-slider-box {
    height: 170px;
  }
}
@media screen and (max-width: 575px) {
  .quote-slider__right-slider-box {
    height: 237px;
  }
}
@media screen and (max-width: 500px) {
  .quote-slider__right-slider-box {
    height: 200px;
  }
}
@media screen and (max-width: 400px) {
  .quote-slider__right-slider-box {
    max-width: 251px;
    height: 237px;
  }
}

.quote-slider__right-slider-box:not(.splide__slide--clone).is-active {
  border: 0 !important;
}
.quote-slider__right-slider-box:not(.splide__slide--clone).is-active .quote-slider__right-slider-box-inner {
  position: absolute;
  top: 0;
  left: -222px;
  width: 408px;
  height: 386px;
  z-index: 5464;
}
@media screen and (max-width: 1300px) {
  .quote-slider__right-slider-box:not(.splide__slide--clone).is-active .quote-slider__right-slider-box-inner {
    left: -26px;
    width: 320px;
    height: 330px;
  }
}
@media screen and (max-width: 991px) {
  .quote-slider__right-slider-box:not(.splide__slide--clone).is-active .quote-slider__right-slider-box-inner {
    width: 290px;
    height: 310px;
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .quote-slider__right-slider-box:not(.splide__slide--clone).is-active .quote-slider__right-slider-box-inner {
    width: 240px;
    height: 250px;
  }
}
@media screen and (max-width: 575px) {
  .quote-slider__right-slider-box:not(.splide__slide--clone).is-active .quote-slider__right-slider-box-inner {
    width: 100%;
    height: 270px;
  }
  .quote-slider__right-slider-box:not(.splide__slide--clone).is-active .quote-slider__right-slider-box-inner::before {
    content: "";
    width: 100%;
    height: 180px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(32%, #e2eff7), color-stop(34%, #e2eff8), color-stop(70%, rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, #e2eff7 32%, #e2eff8 34%, rgba(255, 255, 255, 0) 70%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 0 0 6px 6px;
    -webkit-transition: 350ms ease;
    transition: 350ms ease;
  }
}
@media screen and (max-width: 500px) {
  .quote-slider__right-slider-box:not(.splide__slide--clone).is-active .quote-slider__right-slider-box-inner {
    height: 240px;
  }
}
@media screen and (max-width: 400px) {
  .quote-slider__right-slider-box:not(.splide__slide--clone).is-active .quote-slider__right-slider-box-inner {
    height: 300px;
  }
}
@media screen and (max-width: 575px) {
  .quote-slider__right-slider-box:not(.splide__slide--clone).is-active .quote-slider__left-slider-box-texts--mobile {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}

.quote-slider__right-slider-box-inner {
  width: 100%;
  height: 100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

.quote-slider__right-slider-box-inner-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f4fbff;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 575px) {
  .quote-slider__right-slider-box-inner-image {
    height: 80%;
  }
}
.quote-slider__right-slider-box-inner-image picture {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.quote-slider__right-slider-box-inner-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 575px) {
  .quote-slider__right-slider-box-inner-image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.quote-decor__image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 501px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.quote-decor__image picture {
  width: 100%;
  height: auto;
}
.quote-decor__image picture img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .quote-decor__image {
    max-width: 300px;
  }
}

/*--------------------------------------------------------------
## reviews
--------------------------------------------------------------*/
.reviews {
  position: relative;
  background-color: #fff;
  padding: 65px 0 96px;
  overflow: hidden;
}
@media screen and (max-width: 400px) {
  .reviews .splide__track {
    overflow: visible;
  }
}
@media screen and (max-width: 575px) {
  .reviews {
    padding: 61px 9px 40px;
  }
}

.reviews-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.reviews-upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 550px;
  width: 100%;
}

.reviews-upper__title {
  text-align: center;
}

.reviews-upper__desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  margin-top: 17px;
}
@media screen and (max-width: 575px) {
  .reviews-upper__desc {
    font-size: 16px;
    margin-top: 16px;
  }
}

.reviews-bottom__slider-wrap {
  max-width: 100%;
  margin-top: 48px;
}
.reviews-bottom__slider-wrap .desk-3-or-less {
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .reviews-bottom__slider-wrap .desk-3-or-less {
    pointer-events: all;
  }
}
.reviews-bottom__slider-wrap .splide__pagination {
  z-index: 10;
  position: relative;
  left: auto;
  bottom: auto;
  -webkit-transform: translate(0);
          transform: translate(0);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 213px;
  padding: 0 67px;
  margin: 49px auto 0;
}
.reviews-bottom__slider-wrap .splide__pagination li button {
  margin: 0 9px;
}
@media screen and (max-width: 575px) {
  .reviews-bottom__slider-wrap .splide__pagination li button {
    margin: 0 7px;
  }
}
@media screen and (max-width: 575px) {
  .reviews-bottom__slider-wrap .splide__pagination {
    max-width: 100%;
    margin: 41px auto 0;
  }
}
@media screen and (max-width: 370px) {
  .reviews-bottom__slider-wrap .splide__pagination {
    padding: 0 39px;
  }
}
.reviews-bottom__slider-wrap .splide__arrows {
  bottom: auto;
  top: 71%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
}
@media screen and (max-width: 370px) {
  .reviews-bottom__slider-wrap .splide__arrows {
    min-width: 110%;
  }
}
.reviews-bottom__slider-wrap .splide__arrow {
  pointer-events: all;
  z-index: 20;
}
@media screen and (max-width: 575px) {
  .reviews-bottom__slider-wrap {
    margin-top: 32px;
  }
}

@media screen and (max-width: 400px) {
  .reviews-bottom__slider-box {
    max-width: 300px;
  }
}

.reviews-bottom__slider-box-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: #eef5fb;
  padding: 31px 24px 34px;
}
.reviews-bottom__slider-box-inner .hero-homepage__box-stars-icons svg {
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 575px) {
  .reviews-bottom__slider-box-inner .hero-homepage__box-stars-icons svg {
    margin-right: 2px;
  }
}
.reviews-bottom__slider-box-inner .product-single__left-testimonial-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 50%;
  width: 100%;
  margin-top: 136px;
}
@media screen and (max-width: 1199px) {
  .reviews-bottom__slider-box-inner .product-single__left-testimonial-wrap {
    margin-top: 80px;
  }
}
@media screen and (max-width: 991px) {
  .reviews-bottom__slider-box-inner .product-single__left-testimonial-wrap {
    max-width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .reviews-bottom__slider-box-inner .product-single__left-testimonial-wrap {
    margin-top: 113px;
  }
}
@media screen and (max-width: 575px) {
  .reviews-bottom__slider-box-inner .product-single__left-testimonial-name {
    font-size: 16px;
  }
}
.reviews-bottom__slider-box-inner .product-single__left-testimonial-badge {
  margin-left: 0;
  margin-top: 11px;
}
@media screen and (max-width: 575px) {
  .reviews-bottom__slider-box-inner .product-single__left-testimonial-badge {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .reviews-bottom__slider-box-inner {
    padding: 23px 20px 25px;
  }
}

.reviews-bottom__slider-box-upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.reviews-bottom__slider-box-title {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 13px;
}
@media screen and (max-width: 575px) {
  .reviews-bottom__slider-box-title {
    margin-top: 7px;
  }
}

.reviews-bottom__slider-box-desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 16px;
}
@media screen and (max-width: 575px) {
  .reviews-bottom__slider-box-desc {
    font-size: 15px;
    line-height: 1.54;
  }
}

.reviews-bottom__slider-box-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 35%;
  width: 100%;
  height: 213px;
  position: absolute;
  bottom: 0;
  right: 24px;
}
.reviews-bottom__slider-box-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .reviews-bottom__slider-box-image {
    height: 173px;
  }
}
@media screen and (max-width: 991px) {
  .reviews-bottom__slider-box-image {
    max-width: 25%;
  }
}
@media screen and (max-width: 575px) {
  .reviews-bottom__slider-box-image {
    max-width: 38%;
    height: 182px;
    right: 14px;
  }
}

/*--------------------------------------------------------------
## results
--------------------------------------------------------------*/
.results {
  position: relative;
  background-color: #fff;
  padding: 129px 0;
  overflow: hidden;
}
@media screen and (max-width: 400px) {
  .results .splide__track {
    overflow: visible;
  }
}
@media screen and (max-width: 575px) {
  .results {
    padding: 82px 9px 48px;
  }
}

.results-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 10;
}
@media (min-width: 2300px) {
  .results-wrap {
    margin-top: 80px;
  }
}

.results-upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 550px;
  width: 100%;
}

.results-upper__title {
  text-align: center;
}

.results-upper__desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  padding: 0 40px;
  margin-top: 16px;
}
@media screen and (max-width: 991px) {
  .results-upper__desc {
    padding: 0 10px;
  }
}
@media screen and (max-width: 575px) {
  .results-upper__desc {
    font-size: 16px;
    margin-top: 16px;
  }
}

.results-upper__second-title {
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  text-align: center;
  margin-top: 48px;
}
@media screen and (max-width: 575px) {
  .results-upper__second-title {
    font-size: 20px;
    margin-top: 33px;
  }
}

.results-middle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1168px;
  width: 100%;
  margin-top: 31px;
}
@media screen and (max-width: 500px) {
  .results-middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px;
  }
}

.results-middle__num {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 25%;
  width: 100%;
  z-index: 10;
}
.results-middle__num:first-child::before {
  display: none;
}
.results-middle__num:last-child::after {
  display: none;
}
.results-middle__num::before, .results-middle__num::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background-color: #322e22;
  position: absolute;
  top: 29px;
}
@media screen and (max-width: 991px) {
  .results-middle__num::before, .results-middle__num::after {
    top: 21px;
  }
}
@media screen and (max-width: 500px) {
  .results-middle__num::before, .results-middle__num::after {
    width: 2px;
    height: 50%;
    top: -24px;
  }
}
.results-middle__num::before {
  left: 0;
}
@media screen and (max-width: 500px) {
  .results-middle__num::before {
    left: 24px;
  }
}
.results-middle__num::after {
  right: 0;
}
@media screen and (max-width: 500px) {
  .results-middle__num::after {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .results-middle__num {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 100%;
    margin-top: 24px;
    margin-left: 20px;
  }
  .results-middle__num:first-child {
    margin-top: 0;
  }
}

.results-middle__num-num {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #322e22;
  background-color: #fff;
  border-radius: 50%;
  font-size: 40px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  padding: 0 5px;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .results-middle__num-num {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .results-middle__num-num {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

.results-middle__num-text {
  font-size: 20px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.3;
  color: #322e22;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 991px) {
  .results-middle__num-text {
    font-size: 18px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .results-middle__num-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .results-middle__num-text {
    letter-spacing: 0.8px;
    margin-top: 1px;
    margin-left: 16px;
  }
}

.results-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 504px;
  width: 100%;
  margin-top: 56px;
}
@media screen and (max-width: 575px) {
  .results-bottom {
    margin-top: 32px;
  }
}
@media screen and (max-width: 400px) {
  .results-bottom {
    max-width: 286px;
    margin-top: 32px;
  }
}

.results-bottom__btn {
  min-width: auto;
  max-width: 48.8%;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .results-bottom__btn {
    max-width: 100%;
    margin-top: 16px;
  }
  .results-bottom__btn:first-child {
    margin-top: 0;
  }
}
.results-bottom__btn--primary:hover {
  background: rgba(255, 255, 255, 0.5);
}

.results-decor-image {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.results-decor-image picture {
  height: 100%;
}
.results-decor-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

/*--------------------------------------------------------------
## latest-posts
--------------------------------------------------------------*/
.latest-posts {
  position: relative;
  background-color: #eef5fb;
  padding: 80px 0 40px;
}
@media screen and (max-width: 575px) {
  .latest-posts {
    padding: 41px 9px 0;
  }
}

.latest-posts__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 10;
}

.latest-posts__wrap-upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 550px;
  width: 100%;
}

.latest-posts__title {
  text-align: center;
}

.latest-posts__desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  padding: 0 40px;
  margin-top: 16px;
}
.latest-posts__desc strong {
  display: block;
}
@media screen and (max-width: 991px) {
  .latest-posts__desc {
    padding: 0 10px;
  }
}
@media screen and (max-width: 575px) {
  .latest-posts__desc {
    font-size: 16px;
    margin-top: 16px;
  }
}

.latest-posts__middle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 32px;
  margin-top: 57px;
}
@media screen and (max-width: 991px) {
  .latest-posts__middle {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .latest-posts__middle {
    grid-gap: 17px;
    margin-top: 33px;
  }
}

.latest-posts__middle-box {
  position: relative;
  height: 292px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .latest-posts__middle-box:hover {
    -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  }
}
.latest-posts__middle-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1300px) {
  .latest-posts__middle-box {
    height: 260px;
  }
}
@media screen and (max-width: 1199px) {
  .latest-posts__middle-box {
    height: 210px;
  }
}
@media screen and (max-width: 575px) {
  .latest-posts__middle-box {
    height: 154px;
  }
}
@media screen and (max-width: 370px) {
  .latest-posts__middle-box {
    height: 125px;
  }
}

.latest-posts__middle-box-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
}
.latest-posts__middle-box-icon svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 575px) {
  .latest-posts__middle-box-icon svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 575px) {
  .latest-posts__middle-box-icon {
    top: 10px;
    left: 9px;
    width: 24px;
    height: 24px;
  }
}

.latest-posts__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 56px;
}
@media screen and (max-width: 400px) {
  .latest-posts__bottom {
    max-width: 100%;
    width: 100%;
    margin-top: 33px;
  }
}

.latest-posts__bottom-btn {
  min-width: 182px;
}
@media screen and (max-width: 400px) {
  .latest-posts__bottom-btn {
    min-width: 100%;
  }
}

/*--------------------------------------------------------------
## latest-articles
--------------------------------------------------------------*/
.latest-articles {
  background-color: #eef5fb;
  padding: 41px 0 17px;
}
@media screen and (max-width: 767px) {
  .latest-articles {
    padding: 41px 9px;
  }
}
@media screen and (max-width: 400px) {
  .latest-articles {
    overflow: hidden;
  }
}

.latest-articles__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.latest-articles__link {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  padding-right: 25px;
}
.latest-articles__link::before {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml,%3Csvg width="15" height="8" viewBox="0 0 15 8" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M14.3536 4.35355C14.5488 4.15829 14.5488 3.84171 14.3536 3.64645L11.1716 0.464466C10.9763 0.269204 10.6597 0.269204 10.4645 0.464466C10.2692 0.659728 10.2692 0.976311 10.4645 1.17157L13.2929 4L10.4645 6.82843C10.2692 7.02369 10.2692 7.34027 10.4645 7.53553C10.6597 7.7308 10.9763 7.7308 11.1716 7.53553L14.3536 4.35355ZM0 4.5H14V3.5H0V4.5Z" fill="%23322E22"/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 70%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .latest-articles__link:hover::before {
    right: -10px;
  }
}

.latest-articles__boxes {
  position: relative;
  visibility: visible !important;
  margin-top: 47px;
}
.latest-articles__boxes .splide__arrows {
  display: none;
}
@media screen and (max-width: 991px) {
  .latest-articles__boxes .splide__arrows {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 80%;
  }
}
@media screen and (max-width: 400px) {
  .latest-articles__boxes .splide__arrows {
    max-width: 64.5%;
  }
}
@media screen and (max-width: 400px) {
  .latest-articles__boxes .splide__track {
    overflow: visible;
  }
}
@media (min-width: 992px) {
  .latest-articles__boxes .splide__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px;
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .latest-articles__boxes {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .latest-articles__boxes {
    margin-top: 25px;
  }
}

@media (min-width: 992px) {
  .latest-articles__box {
    width: 100% !important;
  }
}
@media screen and (max-width: 400px) {
  .latest-articles__box {
    width: 292px !important;
  }
}

.latest-articles__box-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 100%;
}

.latest-articles__box-title {
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.latest-articles__box-title span {
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 1px), #322e22 1px);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size 0.5s;
  transition: background-size 0.5s;
}
@media only screen and (min-width: 1199px) {
  .latest-articles__box-title:hover span {
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 1199px) {
  .latest-articles__box-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .latest-articles__box-title {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .latest-articles__box-title {
    height: auto !important;
  }
}

.latest-articles__box-desc {
  display: block;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 23px;
  color: #322e22;
  max-width: 100%;
  width: 100%;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .latest-articles__box-desc {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 500px) {
  .latest-articles__box-desc {
    margin-top: 7px;
  }
}

.latest-articles__box-pills {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  gap: 10px;
  margin: 9px -6px 0;
}
@media screen and (max-width: 767px) {
  .latest-articles__box-pills {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

.latest-articles__box-pill {
  display: inline-block;
  background-color: #c6dff1;
  border-radius: 100px;
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.2;
  color: #322e22;
  padding: 5px 12px;
  margin: 6px;
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
  border: 1px solid #c6dff1;
}
@media only screen and (min-width: 1199px) {
  .latest-articles__box-pill:hover {
    background-color: #eef5fb;
    border: 1px solid #c6dff1;
  }
}

.latest-articles__box-date {
  font-size: 13px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.05px;
  line-height: 1.3;
  color: #322e22;
  text-transform: uppercase;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .latest-articles__box-date {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 19px;
  }
}

.latest-articles__box-link {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  margin-top: 27px;
}
.latest-articles__box-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 2px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .latest-articles__box-link:hover::after {
    width: 0;
  }
}
@media screen and (max-width: 767px) {
  .latest-articles__box-link {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
}

/*--------------------------------------------------------------
## accordion-50-50
--------------------------------------------------------------*/
.accordion-50-50 {
  position: relative;
  background-color: #fff;
  padding: 82px 0 71px;
  min-height: 789px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .accordion-50-50 {
    min-height: 650px;
  }
}
@media screen and (max-width: 1199px) {
  .accordion-50-50 {
    min-height: 550px;
  }
}
@media screen and (max-width: 991px) {
  .accordion-50-50 {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 575px) {
  .accordion-50-50 {
    padding: 42px 9px 0;
  }
}

@media screen and (max-width: 991px) {
  .accordion-50-50__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}

.accordion-50-50__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 47.8%;
  width: 100%;
  margin-left: auto;
  position: relative;
  z-index: 20;
}
.accordion-50-50__info .accordion-50-50__title h2 {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46.8px;
  text-align: left;
}
@media screen and (max-width: 575px) {
  .accordion-50-50__info .accordion-50-50__title h2 {
    font-size: 24px;
    line-height: 31.2px;
  }
}
.accordion-50-50__info .accordion-50-50__title h2 strong {
  font-weight: 700;
}
.accordion-50-50__info .product-single__right-accordions {
  margin-top: 20px;
}
@media screen and (max-width: 575px) {
  .accordion-50-50__info .product-single__right-accordions {
    margin-top: 16px;
  }
}
.accordion-50-50__info .product-single__right-accordion:first-child {
  border-top: 0;
}
.accordion-50-50__info .entry-content {
  margin-top: 1px;
  margin-bottom: 27px;
}
.accordion-50-50__info .entry-content p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.499;
  margin-bottom: 0;
}
.accordion-50-50__info .entry-content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1px 12px;
  max-width: 492px;
  margin: 33px 0 0 10px;
}
.accordion-50-50__info .entry-content ul li {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 15px;
}
.accordion-50-50__info .entry-content ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #817ee1;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}
.accordion-50-50__info .entry-content ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .accordion-50-50__info .entry-content ul li {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .accordion-50-50__info {
    max-width: 100%;
  }
}

.accordion-50-50__image {
  position: absolute;
  bottom: 0;
  left: 11px;
  max-width: 44%;
  width: 100%;
  z-index: 10;
}
.accordion-50-50__image picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.accordion-50-50__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .accordion-50-50__image {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 380px;
    min-height: 300px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 575px) {
  .accordion-50-50__image {
    min-height: 220px;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    margin-top: -12px;
  }
}

.accordion-50-50__image-decor {
  display: block;
  max-width: 416px;
  width: 100%;
  position: absolute;
  bottom: -44px;
  left: 0;
  overflow: hidden;
}
.accordion-50-50__image-decor picture {
  width: 100%;
  height: 100%;
}
.accordion-50-50__image-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .accordion-50-50__image-decor {
    max-width: 315px;
  }
}
@media screen and (max-width: 575px) {
  .accordion-50-50__image-decor {
    max-width: 223px;
    bottom: -60px;
  }
}

.accordion-50-50__animation-box {
  max-width: 380px;
  -webkit-transform: rotate(24deg) translateY(194px) translateX(65%);
          transform: rotate(24deg) translateY(194px) translateX(65%);
}
@media screen and (max-width: 1200px) {
  .accordion-50-50__animation-box {
    max-width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .accordion-50-50__animation-box {
    max-width: 145px;
    -webkit-transform: rotate(24deg) translateY(89px) translateX(45%);
            transform: rotate(24deg) translateY(89px) translateX(45%);
  }
}
@media only screen and (min-device-width: 768px) and (max-device-height: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .accordion-50-50__animation-box {
    max-width: 200px;
    -webkit-transform: rotate(24deg) translateY(50px) translateX(100%);
            transform: rotate(24deg) translateY(50px) translateX(100%);
  }
}

.accordion-50-50__animation-gel {
  width: 90%;
  margin: 0 auto;
  position: absolute;
  z-index: 1;
  bottom: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(45%);
          transform: translateX(-50%) translateY(45%);
}
@media screen and (max-width: 768px) {
  .accordion-50-50__animation-gel {
    bottom: 94%;
  }
}

.accordion-50-50__animation-image {
  position: relative;
  z-index: 2;
  background: #fff;
}

/*--------------------------------------------------------------
## gel-vs-pills
--------------------------------------------------------------*/
.gel-vs-pills {
  position: relative;
  background-color: #fff;
  padding: 83px 0 80px;
}
@media screen and (max-width: 991px) {
  .gel-vs-pills {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .gel-vs-pills {
    padding: 41px 9px 31px;
  }
}

.gel-vs-pills__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.gel-vs-pills__container .entry-content {
  text-align: center;
}
.gel-vs-pills__container .entry-content h2 {
  font-size: 36px;
  line-height: 46.8px;
  text-align: center;
}
.gel-vs-pills__container .entry-content h2 strong {
  display: block;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .gel-vs-pills__container .entry-content h2 strong {
    display: initial;
  }
}
@media screen and (max-width: 991px) {
  .gel-vs-pills__container .entry-content h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .gel-vs-pills__container .entry-content h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
  }
  .gel-vs-pills__container .entry-content h2 strong {
    font-weight: 700;
  }
}
@media screen and (max-width: 575px) {
  .gel-vs-pills__container .entry-content {
    max-width: 310px;
  }
}

.gel-vs-pills__box {
  position: relative;
  background-color: #eef5fb;
  border-radius: 8px;
  overflow: hidden;
  padding: 64px 20px;
  min-width: 101.6%;
  width: 100%;
  margin-top: 66px;
}
.gel-vs-pills__box svg path {
  fill: #c6dff1;
}
@media screen and (max-width: 1400px) {
  .gel-vs-pills__box {
    min-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .gel-vs-pills__box {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box {
    padding: 32px 20px 115px;
  }
}
@media screen and (max-width: 575px) {
  .gel-vs-pills__box {
    margin-top: 26px;
  }
}

.gel-vs-pills__box-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 896px;
  width: 100%;
  z-index: 10;
  margin: 0 auto;
}
.gel-vs-pills__box-wrap.more-than-five {
  max-width: 1176px;
  margin-top: -36px;
  margin-bottom: 4px;
}
.gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-left {
  -webkit-transform: translateX(53px);
          transform: translateX(53px);
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-left {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin-top: 0;
  }
}
.gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right {
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 500px;
  margin-top: 1px;
}
.gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right::before {
  content: "VS.";
  position: absolute;
  top: 50%;
  left: -36%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 56px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #322e22;
  margin-top: 19px;
}
@media screen and (max-width: 1199px) {
  .gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right::before {
    left: -26%;
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right::before {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right {
    max-width: 400px;
  }
}
@media screen and (max-width: 991px) {
  .gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right {
    max-width: 100%;
  }
}
.gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right-info {
  max-width: 50%;
  width: 100%;
  padding: 0 10px;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right-info {
    max-width: 45%;
  }
}
.gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right-info-line {
  display: none;
}
.gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right-info-upper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gel-vs-pills__box-wrap.more-than-five .gel-vs-pills__box-right-info-bottom {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-wrap.more-than-five {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.gel-vs-pills__box-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 270px;
  width: 100%;
  -webkit-transform: translateX(113px);
          transform: translateX(113px);
}
.gel-vs-pills__box-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .gel-vs-pills__box-left {
    max-width: 201px;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

.gel-vs-pills__box-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .gel-vs-pills__box-right {
    max-width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
    margin-top: 1px;
  }
}

.gel-vs-pills__box-right-info {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 37px;
}
.gel-vs-pills__box-right-info:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-right-info:first-child {
    margin-top: 32px;
  }
}
.gel-vs-pills__box-right-info:nth-child(2) .gel-vs-pills__box-right-info-line {
  top: 51%;
  width: 250px;
}
@media screen and (max-width: 991px) {
  .gel-vs-pills__box-right-info:nth-child(2) .gel-vs-pills__box-right-info-line {
    width: 210px;
    top: 50%;
  }
}
.gel-vs-pills__box-right-info:nth-child(3) .gel-vs-pills__box-right-info-line {
  width: 237px;
  top: 49%;
}
@media screen and (max-width: 991px) {
  .gel-vs-pills__box-right-info:nth-child(3) .gel-vs-pills__box-right-info-line {
    width: 197px;
    top: 50%;
  }
}
.gel-vs-pills__box-right-info:nth-child(4) .gel-vs-pills__box-right-info-line {
  width: 226px;
  top: 46%;
}
@media screen and (max-width: 991px) {
  .gel-vs-pills__box-right-info:nth-child(4) .gel-vs-pills__box-right-info-line {
    width: 186px;
    top: 50%;
  }
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-right-info {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 45%;
    width: 100%;
    margin-top: 32px;
  }
}

.gel-vs-pills__box-right-info-line {
  width: 297px;
  height: 1px;
  background-color: #817ee1;
  position: absolute;
  top: 54%;
  right: 332px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gel-vs-pills__box-right-info-line::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #817ee1;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: -2px;
}
@media screen and (max-width: 991px) {
  .gel-vs-pills__box-right-info-line {
    width: 257px;
    top: 50%;
    right: 235px;
  }
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-right-info-line {
    display: none;
  }
}

.gel-vs-pills__box-right-info-upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-right-info-upper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.gel-vs-pills__box-right-info-upper-text {
  font-size: 36px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  color: #322e22;
}

.gel-vs-pills__box-right-info-upper-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 51px;
  height: 50px;
  margin-left: 11px;
}
.gel-vs-pills__box-right-info-upper-img picture {
  width: 100%;
  height: 100%;
}
.gel-vs-pills__box-right-info-upper-img img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.gel-vs-pills__box-right-info-bottom {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.4;
  color: #322e22;
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-right-info-bottom {
    text-align: center;
    margin-top: 14px;
  }
}

.gel-vs-pills__box-decor {
  max-width: 517px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.gel-vs-pills__box-decor picture {
  width: 100%;
  height: 100%;
}
.gel-vs-pills__box-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.gel-vs-pills__box-decor svg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-decor .gel-vs-pills__box-decor--desk {
    display: none;
  }
}
.gel-vs-pills__box-decor .gel-vs-pills__box-decor--mob {
  display: none;
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__box-decor .gel-vs-pills__box-decor--mob {
    display: block;
    width: 100%;
  }
}

.gel-vs-pills__info {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__info {
    max-width: 300px;
    margin-top: -80px;
    z-index: 10;
  }
}

.gel-vs-pills__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 53px;
  gap: 48px;
}
@media screen and (max-width: 1199px) {
  .gel-vs-pills__bottom {
    gap: 24px;
  }
}

.gel-vs-pills__bottom-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 325px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .gel-vs-pills__bottom-box {
    max-width: 275px;
  }
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__bottom-box {
    max-width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.gel-vs-pills__bottom-box-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 41px;
  height: 41px;
  padding: 4px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__bottom-box-icon {
    width: 39px;
    height: 39px;
    padding: 5px;
  }
}

.gel-vs-pills__bottom-box-title {
  font-size: 48px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  margin: 10px 12px 0;
}
@media screen and (max-width: 767px) {
  .gel-vs-pills__bottom-box-title {
    font-size: 32px;
    margin: 10px 15px 0 1px;
  }
}

.gel-vs-pills__bottom-box-desc {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.32px;
  line-height: 1.3;
  color: #322e22;
  text-align: center;
  margin-top: 10px;
}

/*--------------------------------------------------------------
## ugc
--------------------------------------------------------------*/
@media screen and (max-width: 575px) {
  .ugc {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media screen and (max-width: 400px) {
  .ugc {
    position: relative;
    overflow: hidden;
  }
  .ugc::before {
    content: "";
    display: block;
    width: 35px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
}

.ugc-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.ugc-upper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 20;
}

.ugc-title {
  text-align: center;
}

.ugc-desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  margin-top: 15px;
}
.ugc-desc a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: bold;
  color: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .ugc-desc a:hover {
    color: #817ee1;
  }
}
@media screen and (max-width: 991px) {
  .ugc-desc {
    font-size: 16px;
    margin-top: 17px;
  }
}

.ugc-boxes {
  position: relative;
  margin-top: 65px;
}
.ugc-boxes .splide__arrows {
  display: none;
}
@media screen and (max-width: 767px) {
  .ugc-boxes .splide__arrows {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 400px) {
  .ugc-boxes .splide__arrows {
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  .ugc-boxes .splide__track {
    visibility: visible;
  }
}
@media screen and (max-width: 400px) {
  .ugc-boxes .splide__track {
    margin-left: 9px;
    overflow: visible;
  }
}
@media (min-width: 768px) {
  .ugc-boxes .splide__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 48px;
    padding: 0;
  }
}
@media (min-width: 1199px) {
  .ugc-boxes .splide__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .ugc-boxes {
    padding-bottom: 72px;
  }
}
@media screen and (max-width: 400px) {
  .ugc-boxes {
    margin-top: 32px;
  }
}

.ugc-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 768px) {
  .ugc-box {
    width: 100% !important;
  }
}

.ugc-box__inner {
  position: relative;
  width: 100%;
  height: 498px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 400px) {
  .ugc-box__inner {
    max-width: 280px;
  }
}

.ugc-box__video {
  position: relative;
  height: 498px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}
.ugc-box__video.playing .ugc-box__video-btn {
  opacity: 0;
  visibility: hidden;
}
.ugc-box__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ugc-box__video-btn {
  width: 90px;
  height: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.ugc-box__video-btn svg {
  width: 100%;
  height: 100%;
}

.ugc-box__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.ugc-box__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------
## faq 
--------------------------------------------------------------*/
.faq {
  position: relative;
  background-color: #eef5fb;
  padding: 81px 0 62px;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 61px 9px 31px;
  }
}
@media screen and (max-width: 575px) {
  .faq {
    padding: 48px 9px 22px;
  }
}

.faq-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 604px;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
}
.faq-box .product-single__right-accordions {
  margin-top: 44px;
}
.faq-box .product-single__right-accordions .entry-content p {
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 575px) {
  .faq-box .product-single__right-accordions {
    margin-top: 13px;
  }
}
.faq-box .product-single__right-accordion {
  border-color: #c1c1ec;
}
.faq-box .product-single__right-accordion:first-child {
  border-top: 0;
}
.faq-box .product-single__right-accordion-question {
  line-height: 1.5;
  padding: 20px 20px 18px 0;
}

.faq-title {
  text-align: center;
}
@media screen and (max-width: 575px) {
  .faq-title {
    max-width: 327px;
  }
}

.faq-image-decor {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 436px;
  width: 100%;
}
.faq-image-decor picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.faq-image-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1400px) {
  .faq-image-decor {
    max-width: 300px;
  }
}
@media screen and (max-width: 1199px) {
  .faq-image-decor {
    max-width: 210px;
  }
}
@media screen and (max-width: 991px) {
  .faq-image-decor {
    max-width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .faq-image-decor {
    max-width: 101px;
  }
}
@media screen and (max-width: 575px) {
  .faq-image-decor {
    max-width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .faq-image-decor {
    max-width: 101px;
  }
}

/*--------------------------------------------------------------
## upsell-product
--------------------------------------------------------------*/
.upsell-product {
  position: relative;
  background-color: #fff;
  padding: 40px 0;
}
@media screen and (max-width: 575px) {
  .upsell-product {
    padding-left: 9px;
    padding-right: 9px;
  }
}

.upsell-product__box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 60px 24px;
  background-color: #eef5fb;
  border-radius: 8px;
}
@media screen and (max-width: 991px) {
  .upsell-product__box {
    padding: 40px 24px;
  }
}
@media screen and (max-width: 767px) {
  .upsell-product__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 33px 20px 264px;
  }
}

.upsell-product__box-left {
  position: absolute;
  bottom: 0;
  left: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 565px;
  width: 100%;
  z-index: 10;
}
.upsell-product__box-left img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1400px) {
  .upsell-product__box-left {
    max-width: 50%;
  }
}
@media screen and (max-width: 1199px) {
  .upsell-product__box-left {
    max-width: 48%;
  }
}
@media screen and (max-width: 991px) {
  .upsell-product__box-left {
    max-width: 53%;
  }
}
@media screen and (max-width: 767px) {
  .upsell-product__box-left {
    max-width: 100%;
    height: 231px;
    left: 0;
  }
}

.upsell-product__box-right {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 540px;
  width: 100%;
  margin-left: auto;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  .upsell-product__box-right {
    max-width: 48%;
  }
}
@media screen and (max-width: 991px) {
  .upsell-product__box-right {
    max-width: 43%;
  }
}
@media screen and (max-width: 767px) {
  .upsell-product__box-right {
    max-width: 100%;
  }
}

.upsell-product__box-right-desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 16px;
}
@media screen and (max-width: 991px) {
  .upsell-product__box-right-desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .upsell-product__box-right-desc {
    font-size: 15px;
    margin-top: 17px;
  }
}

.upsell-product__box-right-btn {
  min-width: 278px;
  margin-top: 48px;
}
@media screen and (max-width: 1199px) {
  .upsell-product__box-right-btn {
    margin-top: 28px;
  }
}
@media screen and (max-width: 500px) {
  .upsell-product__box-right-btn {
    min-width: 100%;
    padding: 18px 15px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 370px) {
  .upsell-product__box-right-btn {
    font-size: 12px;
    padding: 18px 10px;
  }
}

.upsell-product__box-image-decor {
  display: block;
  max-width: 539px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
  overflow: hidden;
}
.upsell-product__box-image-decor svg path {
  fill: #c6dff1;
}
@media screen and (max-width: 767px) {
  .upsell-product__box-image-decor .upsell-product__box-decor--desk {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .upsell-product__box-image-decor .upsell-product__box-decor--desk {
    display: none;
  }
}
.upsell-product__box-image-decor .upsell-product__box-decor--mob {
  display: none;
}
@media screen and (max-width: 767px) {
  .upsell-product__box-image-decor .upsell-product__box-decor--mob {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .upsell-product__box-image-decor .upsell-product__box-decor--mob {
    display: block;
    width: 100%;
  }
}
.upsell-product__box-image-decor picture {
  width: 100%;
  height: 100%;
}
.upsell-product__box-image-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

/*--------------------------------------------------------------
## stories-50-50
--------------------------------------------------------------*/
.stories-50-50 {
  position: relative;
}

.stories-50-50__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.stories-50-50__box {
  position: relative;
  width: 100%;
  background-color: #eef5fb;
  padding: 80px 0 81px;
}
.stories-50-50__box .container {
  position: relative;
}
@media screen and (max-width: 991px) {
  .stories-50-50__box {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .stories-50-50__box {
    padding: 41px 9px;
  }
}

.stories-50-50__box-image-decor-right {
  display: none;
}

.stories-50-50__box-image-decor-left {
  display: none;
}

.stories-50-50__box--video-right .stories-50-50__box-image-decor-right {
  display: block;
  max-width: 795px;
  width: 100%;
  height: 143px;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.stories-50-50__box--video-right .stories-50-50__box-image-decor-right picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.stories-50-50__box--video-right .stories-50-50__box-image-decor-right img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .stories-50-50__box--video-right .stories-50-50__box-image-decor-right {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .stories-50-50__box--video-right .stories-50-50__box-image-decor-right {
    max-width: 135px;
    height: 183px;
    bottom: 50px;
    left: auto;
    right: 0;
  }
}

.stories-50-50__box--video-left {
  background-color: #fff;
}
.stories-50-50__box--video-left .stories-50-50__holder {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.stories-50-50__box--video-left .stories-50-50__box-image-decor-left {
  display: block;
  max-width: 437px;
  width: 100%;
  height: 222px;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.stories-50-50__box--video-left .stories-50-50__box-image-decor-left picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.stories-50-50__box--video-left .stories-50-50__box-image-decor-left img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .stories-50-50__box--video-left .stories-50-50__box-image-decor-left {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .stories-50-50__box--video-left .stories-50-50__box-image-decor-left {
    max-width: 116px;
    height: 108px;
    bottom: 74px;
  }
}

.stories-50-50__holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.stories-50-50__holder-texts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 48%;
  width: 100%;
  padding-top: 37px;
}
@media screen and (max-width: 767px) {
  .stories-50-50__holder-texts {
    max-width: 100%;
    padding-top: 0;
  }
}

.stories-50-50__holder-texts-title {
  font-size: 32px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  padding-right: 10px;
}
@media screen and (max-width: 1400px) {
  .stories-50-50__holder-texts-title br {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .stories-50-50__holder-texts-title {
    font-size: 28px;
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .stories-50-50__holder-texts-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .stories-50-50__holder-texts-title {
    font-size: 24px;
  }
}

.stories-50-50__holder-texts-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 23px;
}

.stories-50-50__holder-texts-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 14px;
}
.stories-50-50__holder-texts-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stories-50-50__holder-texts-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.stories-50-50__holder-texts-name {
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}

.stories-50-50__holder-texts-desc {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.3;
  color: #322e22;
  margin-top: 4px;
}

.stories-50-50__holder-texts-btn {
  min-width: 222px;
  margin-top: 40px;
}
@media screen and (max-width: 500px) {
  .stories-50-50__holder-texts-btn {
    min-width: 100%;
  }
}

.stories-50-50__holder-video {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 48%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .stories-50-50__holder-video {
    max-width: 100%;
    margin-top: 32px;
  }
}

.stories-50-50__holder-video-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .stories-50-50__holder-video-wrap {
    height: 300px;
  }
}
@media screen and (max-width: 400px) {
  .stories-50-50__holder-video-wrap {
    height: 227px;
  }
}

.stories-50-50__holder-video-box {
  position: relative;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}
.stories-50-50__holder-video-box.playing .stories-50-50__holder-video-box-btn {
  opacity: 0;
  visibility: hidden;
}
.stories-50-50__holder-video-box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stories-50-50__section-image-wrapper {
  width: 100%;
  height: 100%;
}
.stories-50-50__section-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stories-50-50__holder-video-box-btn {
  width: 90px;
  height: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.stories-50-50__holder-video-box-btn svg {
  width: 100%;
  height: 100%;
}

.stories-50-50__holder-video-box-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.stories-50-50__holder-video-box-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stories-50-50__holder-video-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  z-index: 10;
  margin-top: 17px;
}
@media screen and (max-width: 991px) {
  .stories-50-50__holder-video-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .stories-50-50__holder-video-text {
    margin-top: 27px;
  }
}
@media screen and (max-width: 575px) {
  .stories-50-50__holder-video-text {
    max-width: 80%;
  }
}
@media screen and (max-width: 400px) {
  .stories-50-50__holder-video-text {
    max-width: 90%;
  }
}

.stories-50-50__holder-video-text-num {
  font-size: 48px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  margin-top: 20px;
  margin-right: 26px;
}
@media screen and (max-width: 991px) {
  .stories-50-50__holder-video-text-num {
    font-size: 38px;
    margin: 0;
  }
}
@media screen and (max-width: 500px) {
  .stories-50-50__holder-video-text-num {
    font-size: 32px;
  }
}

.stories-50-50__holder-video-text-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 70%;
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .stories-50-50__holder-video-text-wrap {
    max-width: 63%;
  }
}
@media screen and (max-width: 991px) {
  .stories-50-50__holder-video-text-wrap {
    max-width: 100%;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .stories-50-50__holder-video-text-wrap {
    margin-top: 15px;
  }
}

.stories-50-50__holder-video-text-title {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.1px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
}

.stories-50-50__holder-video-text-desc {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 5px;
}
.stories-50-50__holder-video-text-desc sup {
  display: inline-block;
  font-size: 15px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

/*--------------------------------------------------------------
## success-stories-modal
--------------------------------------------------------------*/
.success-stories-modal {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.success-stories-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.success-stories-modal.is-active .success-stories-modal__inner {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.success-stories-modal__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  border-radius: 16px;
  max-width: 1024px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) scale(0.7);
          transform: translate(-50%, -50%) scale(0.7);
  overflow: hidden;
  max-height: 391px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.success-stories-modal__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(102, 101, 180, 0)), color-stop(66.67%, #fff));
  background: linear-gradient(180deg, rgba(102, 101, 180, 0) 0%, #fff 66.67%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1199px) {
  .success-stories-modal__inner {
    max-width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .success-stories-modal__inner {
    height: 100vh;
    min-height: 100vh;
    max-width: 100%;
    border-radius: 0;
  }
}

.success-stories-modal__box-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-height: 391px;
  height: 100%;
  padding: 34px 70px 41px 32px;
  overflow-y: auto;
  /* stylelint-disable */
  scrollbar-width: thin;
  scrollbar-color: #322e22 #fff;
}
.success-stories-modal__box-wrap::-webkit-scrollbar {
  width: 0.6vw;
}
.success-stories-modal__box-wrap::-webkit-scrollbar-thumb {
  background-color: #322e22;
  border-radius: 0.3vw;
  border: 1px solid #fff;
}
.success-stories-modal__box-wrap::-webkit-scrollbar-track {
  background-color: #fff;
}
.success-stories-modal__box-wrap {
  /* stylelint-enable */
}
@media screen and (max-width: 1199px) {
  .success-stories-modal__box-wrap {
    padding: 32px;
  }
}
@media screen and (max-width: 767px) {
  .success-stories-modal__box-wrap {
    height: 100%;
    min-height: 100vh;
    padding: 24px 20px 128px;
  }
}

.success-stories-modal__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
.success-stories-modal__box .entry-content {
  margin-top: 25px;
}
.success-stories-modal__box .entry-content p {
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 27px;
}
.success-stories-modal__box .entry-content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .success-stories-modal__box .entry-content p {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 575px) {
  .success-stories-modal__box .entry-content {
    margin-top: 28px;
  }
}

.success-stories-modal__box-title {
  font-weight: bold;
}
@media screen and (max-width: 1199px) {
  .success-stories-modal__box-title {
    width: 100%;
    padding-right: 25px;
  }
}
@media screen and (max-width: 575px) {
  .success-stories-modal__box-title {
    font-size: 24px;
    max-width: 100%;
    padding-right: 20px;
    line-height: 1.3;
  }
}

.success-stories-modal__close-icon {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 34px;
  right: 34px;
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.success-stories-modal__close-icon svg {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1199px) {
  .success-stories-modal__close-icon:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media screen and (max-width: 575px) {
  .success-stories-modal__close-icon {
    top: 26px;
    right: 22px;
  }
}

/*--------------------------------------------------------------
## stories-two-columns
--------------------------------------------------------------*/
.stories-two-columns {
  background-color: #eef5fb;
  padding: 81px 0 80px;
}
@media screen and (max-width: 991px) {
  .stories-two-columns {
    padding: 50px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .stories-two-columns {
    padding: 49px 0 41px;
  }
}
@media screen and (max-width: 400px) {
  .stories-two-columns {
    overflow: hidden;
  }
}

.stories-two-columns__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  .stories-two-columns__upper {
    max-width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 9px;
  }
}

.stories-two-columns__title {
  text-align: center;
}
@media screen and (max-width: 575px) {
  .stories-two-columns__title {
    text-align: left;
  }
}

.stories-two-columns__desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 991px) {
  .stories-two-columns__desc {
    font-size: 16px;
    margin-top: 17px;
  }
}
@media screen and (max-width: 575px) {
  .stories-two-columns__desc {
    text-align: left;
    margin-top: 11px;
  }
}

.stories-two-columns__boxes {
  position: relative;
  margin-top: 64px;
}
.stories-two-columns__boxes .splide__arrows {
  display: none;
}
@media screen and (max-width: 575px) {
  .stories-two-columns__boxes .splide__arrows {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 53.5%;
  }
}
@media screen and (max-width: 400px) {
  .stories-two-columns__boxes .splide__track {
    margin-left: 9px;
    overflow: visible;
  }
}
@media (min-width: 576px) {
  .stories-two-columns__boxes .splide__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .stories-two-columns__boxes .splide__list {
    grid-gap: 56px;
  }
}
@media screen and (max-width: 767px) {
  .stories-two-columns__boxes {
    padding-bottom: 78px;
  }
}
@media screen and (max-width: 400px) {
  .stories-two-columns__boxes {
    margin-top: 32px;
  }
}

.stories-two-columns__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 576px) {
  .stories-two-columns__box {
    width: 100% !important;
  }
}
@media screen and (max-width: 400px) {
  .stories-two-columns__box {
    width: 292px !important;
  }
}

.stories-two-columns__box-image {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}
.stories-two-columns__box-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1199px) {
  .stories-two-columns__box-image {
    height: 350px;
  }
}
@media screen and (max-width: 991px) {
  .stories-two-columns__box-image {
    height: 300px;
  }
}
@media screen and (max-width: 400px) {
  .stories-two-columns__box-image {
    height: 219px;
  }
}

.stories-two-columns__box-pill {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.3;
  color: #fff;
  border-radius: 50px;
  padding: 4px 12px;
  margin-top: 32px;
}
@media screen and (max-width: 500px) {
  .stories-two-columns__box-pill {
    margin-top: 24px;
  }
}

.stories-two-columns__box-title {
  display: block;
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  margin-top: 17px;
}
@media screen and (max-width: 991px) {
  .stories-two-columns__box-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .stories-two-columns__box-title {
    font-size: 20px;
  }
}

.stories-two-columns__box-desc {
  display: block;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  max-width: 500px;
  margin-top: 7px;
}
@media screen and (max-width: 575px) {
  .stories-two-columns__box-desc {
    font-size: 15px;
    margin-top: 10px;
  }
}

.stories-two-columns__box-link {
  position: relative;
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 24px;
}
.stories-two-columns__box-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: 3px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .stories-two-columns__box-link:hover::before {
    width: 0;
  }
}

/*--------------------------------------------------------------
## legal-pages
--------------------------------------------------------------*/
.legal-pages {
  position: relative;
  background-color: #fff;
}

.legal-page__top {
  padding: 82px 0;
  border-bottom: 1px solid #c6dff1;
}
.legal-page__top .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .legal-page__top {
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .legal-page__top {
    padding: 27px 0 24px;
  }
}

.legal-page__top-pretitle {
  text-align: center;
}

.legal-page__top-title {
  text-align: center;
}

.legal-pages__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 79px 0 52px;
  gap: 64px;
}
@media screen and (max-width: 991px) {
  .legal-pages__wrap {
    padding: 60px 0 40px;
  }
}
@media screen and (max-width: 575px) {
  .legal-pages__wrap {
    padding: 39px 9px 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: unset;
  }
}

.legal-pages__wrap-privacy-policy {
  max-width: 820px;
  margin: 0 auto;
  display: block;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 0 0 52px;
}
@media screen and (max-width: 991px) {
  .legal-pages__wrap-privacy-policy {
    padding: 60px 0 40px;
  }
}
@media screen and (max-width: 575px) {
  .legal-pages__wrap-privacy-policy {
    padding: 39px 9px 18px;
  }
}

.legal-pages__left {
  max-width: 28.5%;
  width: 100%;
  border: 1px solid #c6dff1;
  border-radius: 8px;
  padding: 39px 23px 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 150px;
}
.legal-pages__left .section-ol {
  margin-left: 23px;
  margin-top: 24px;
}
.legal-pages__left .section-ol li {
  line-height: 1.5;
  padding: 0;
  margin-bottom: 20px;
}
.legal-pages__left .section-ol li a {
  color: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.legal-pages__left .section-ol li:last-of-type {
  margin: 0;
}
@media only screen and (min-width: 1199px) {
  .legal-pages__left .section-ol li:hover a {
    color: #6765b4;
  }
}
@media screen and (max-width: 1199px) {
  .legal-pages__left {
    max-width: 31%;
    padding: 30px 15px;
  }
}
@media screen and (max-width: 991px) {
  .legal-pages__left {
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .legal-pages__left {
    padding: 39px 19px;
    position: relative;
    top: 0;
    left: unset;
  }
}

.legal-pages__left-title {
  font-size: 20px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
}

.legal-pages__right {
  max-width: 66.45%;
  width: 100%;
}
.legal-pages__right .entry-content {
  max-width: 800px;
}
.legal-pages__right .entry-content h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.legal-pages__right .entry-content p {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .legal-pages__right {
    max-width: 100%;
    margin-top: 41px;
  }
}

/*--------------------------------------------------------------
## contact-us
--------------------------------------------------------------*/
.contact-us {
  padding: 82px 0 80px;
}
@media screen and (max-width: 991px) {
  .contact-us {
    padding: 70px 0;
  }
}
@media screen and (max-width: 575px) {
  .contact-us {
    padding: 27px 9px 41px;
  }
}

.contact-us__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  width: 100%;
}

.contact-us__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-us__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 0 32px;
  margin-top: 80px;
}
@media screen and (max-width: 991px) {
  .contact-us__bottom {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact-us__bottom {
    margin-top: 40px;
  }
}

.contact-us__bottom-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 46.7%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact-us__bottom-left {
    max-width: 100%;
  }
}

.contact-us__bottom-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  background-color: #eef5fb;
  border-radius: 8px;
  padding: 36px 22px 40px 25px;
  margin-top: 32px;
}
.contact-us__bottom-box:first-child {
  margin-top: 0;
}
@media screen and (max-width: 991px) {
  .contact-us__bottom-box {
    padding: 30px 20px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 400px) {
  .contact-us__bottom-box {
    padding: 23px 24px 27px;
  }
}

.contact-us__bottom-box-texts {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding-left: 67px;
}
.contact-us__bottom-box-texts svg {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 400px) {
  .contact-us__bottom-box-texts svg {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@media screen and (max-width: 991px) {
  .contact-us__bottom-box-texts {
    padding-left: 50px;
  }
}
@media screen and (max-width: 400px) {
  .contact-us__bottom-box-texts {
    padding: 0;
  }
}

.contact-us__bottom-box-box-title {
  font-size: 24px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
}
@media screen and (max-width: 400px) {
  .contact-us__bottom-box-box-title {
    margin-top: 33px;
  }
}

.contact-us__bottom-box-box-desc {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 5px;
}
@media screen and (max-width: 400px) {
  .contact-us__bottom-box-box-desc {
    margin-top: 6px;
  }
}

.contact-us__bottom-box-btn {
  position: relative;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1.3;
  color: #322e22;
  margin-top: 30px;
}
.contact-us__bottom-box-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #322e22;
  position: absolute;
  bottom: -3px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .contact-us__bottom-box-btn:hover::after {
    width: 0;
  }
}

.contact-us__bottom-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 46.65%;
  width: 100%;
  padding-top: 1px;
}
@media screen and (max-width: 991px) {
  .contact-us__bottom-right {
    max-width: 49%;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact-us__bottom-right {
    max-width: 100%;
    margin-top: 43px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us__bottom-right-title {
    text-align: center;
    width: 100%;
  }
}

.errors ul li {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: #aa1d28;
  bottom: -17px;
  left: 20px;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
  margin-top: 20px;
}

.contact-us__bottom-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 41px;
}
@media screen and (max-width: 767px) {
  .contact-us__bottom-form {
    margin-top: 25px;
  }
}

.contact-us__bottom-form-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 26px;
}
.contact-us__bottom-form-wrap:first-of-type {
  margin-top: 0;
}
.contact-us__bottom-form-wrap label {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  padding-left: 20px;
  margin-bottom: 9px;
}
@media screen and (max-width: 767px) {
  .contact-us__bottom-form-wrap input {
    height: 48px;
  }
}
.contact-us__bottom-form-wrap textarea {
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  resize: none;
  padding: 15px 19px;
  overflow-y: auto;
  /* stylelint-disable */
  scrollbar-width: thin;
  scrollbar-color: #322e22 #fff;
}
.contact-us__bottom-form-wrap textarea::-webkit-scrollbar {
  width: 0.6vw;
}
.contact-us__bottom-form-wrap textarea::-webkit-scrollbar-thumb {
  background-color: #322e22;
  border-radius: 0.3vw;
  border: 1px solid #fff;
}
.contact-us__bottom-form-wrap textarea::-webkit-scrollbar-track {
  background-color: #fff;
}
.contact-us__bottom-form-wrap textarea {
  /* stylelint-enable */
}

.contact-us__bottom-form-btn {
  width: 100%;
  margin-top: 33px;
}
.contact-us__bottom-form-btn input {
  width: 100%;
}

/*--------------------------------------------------------------
## hero-blog
--------------------------------------------------------------*/
.hero-blog {
  position: relative;
  background-color: #eef5fb;
  border-top: 1px solid #c6dff1;
  border-bottom: 1px solid #c6dff1;
  padding: 77px 0 85px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hero-blog {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .hero-blog {
    border-bottom: 0;
    padding: 40px 9px;
  }
}
@media screen and (max-width: 400px) {
  .hero-blog {
    padding: 17px 9px 42px;
  }
}

.hero-blog__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  z-index: 10;
}

.hero-blog__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 48%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .hero-blog__left {
    max-width: 100%;
  }
}

.blog-breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.blog-breadcrumb {
  position: relative;
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1.3;
  color: #322e22;
  text-transform: uppercase;
  padding-right: 27px;
  margin-top: 5px;
  margin-right: 15px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.blog-breadcrumb::after {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml,%3Csvg width="7" height="11" viewBox="0 0 7 11" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M6.5 5.50063C6.5 5.62463 6.45113 5.74875 6.3535 5.84342L1.35353 10.6919C1.15815 10.8813 0.84178 10.8813 0.646531 10.6919C0.451282 10.5024 0.451157 10.1957 0.646531 10.0063L5.29301 5.50063L0.646532 0.994939C0.451158 0.805485 0.451158 0.498696 0.646532 0.309363C0.841906 0.12003 1.15828 0.119909 1.35353 0.309363L6.3535 5.15784C6.45113 5.25251 6.5 5.37663 6.5 5.50063Z" fill="%23322E22"/%3E%3C/svg%3E%0A');
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.blog-breadcrumb:last-child {
  pointer-events: none;
  padding: 0;
  margin-right: 0;
}
.blog-breadcrumb:last-child::after {
  display: none;
}
@media only screen and (min-width: 1199px) {
  .blog-breadcrumb:hover {
    color: #4797f8;
  }
}

.hero-blog__title {
  margin-top: 38px;
  line-height: 1.24;
}
@media screen and (max-width: 991px) {
  .hero-blog__title {
    font-size: 24px;
  }
}

.hero-blog__desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 18px;
}
@media screen and (max-width: 1199px) {
  .hero-blog__desc {
    font-size: 16px;
    margin-top: 16px;
  }
}

.hero-blog__card-time {
  font-size: 13px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.05px;
  line-height: 1.3;
  color: #322e22;
  text-transform: uppercase;
  margin-top: 25px;
}

.hero-blog__name {
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 34px;
}
.hero-blog__name strong {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}
@media screen and (max-width: 575px) {
  .hero-blog__name strong {
    margin-bottom: 6px;
  }
}

.hero-blog__right {
  max-width: 47.8%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.hero-blog__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .hero-blog__right {
    max-width: 100%;
    margin-top: 32px;
  }
}

.hero-blog__background {
  display: block;
  max-width: 599px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -1px;
  right: 0;
}
.hero-blog__background picture {
  width: 100%;
  height: 100%;
}
.hero-blog__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (max-width: 1199px) {
  .hero-blog__background {
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .hero-blog__background {
    max-width: 100%;
    height: auto;
    bottom: 0;
    top: auto;
    max-height: 270px;
  }
}
@media screen and (max-width: 500px) {
  .hero-blog__background {
    max-height: initial;
  }
}

/*--------------------------------------------------------------
## blog-article
--------------------------------------------------------------*/
.blog-article {
  background-color: #fff;
  padding: 79px 0 82px;
}
@media screen and (max-width: 767px) {
  .blog-article {
    padding: 40px 9px 44px;
  }
}
.blog-article .cta-shop-now__box-desc-snippet {
  max-width: 450px;
}
@media screen and (max-width: 767px) {
  .blog-article .cta-shop-now__box-desc-snippet {
    max-width: unset;
  }
}
.blog-article .cta-shop-now__box-title-snippet {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .blog-article .cta-shop-now__box-title-snippet {
    max-width: 213px;
    font-size: 24px;
  }
}

.blog-article__upper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.blog-article__left {
  max-width: 28.5%;
  width: 100%;
  border: 1px solid #c6dff1;
  border-radius: 8px;
  padding: 39px 35px 39px 23px;
}
.blog-article__left.sticky {
  position: fixed;
  top: 0;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}
.blog-article__left .section-ol {
  margin-left: 23px;
  margin-top: 24px;
}
.blog-article__left .section-ol li {
  line-height: 1.5;
  padding: 0;
  margin-bottom: 20px;
}
.blog-article__left .section-ol li a {
  color: #322e22;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.blog-article__left .section-ol li:last-of-type {
  margin: 0;
}
@media only screen and (min-width: 1199px) {
  .blog-article__left .section-ol li:hover a {
    color: #6765b4;
  }
}
@media screen and (max-width: 1199px) {
  .blog-article__left {
    max-width: 31%;
    padding: 30px 15px;
  }
}
@media screen and (max-width: 991px) {
  .blog-article__left {
    display: none;
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .blog-article__left {
    padding: 39px 19px;
  }
}

.blog-article__left-title {
  font-size: 20px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
}

.blog-article__right {
  max-width: 66.45%;
  width: 100%;
  margin-left: auto;
}
.blog-article__right .entry-content-snippet {
  max-width: 800px;
  margin: 20px 0;
}
.blog-article__right .entry-content {
  max-width: 800px;
}
.blog-article__right .entry-content a {
  word-break: break-all;
}
.blog-article__right .entry-content ul li {
  margin-bottom: 7px;
}
.blog-article__right .entry-content .tooltips {
  position: relative;
  cursor: context-menu;
  margin-right: 2px;
}
.blog-article__right .entry-content .tooltips span {
  font-size: 12px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  background-color: #c6dff1;
  border-radius: 8px;
  position: absolute;
  bottom: 21px;
  left: 60%;
  -webkit-transform: translate(-50%, -80px);
          transform: translate(-50%, -80px);
  width: 202px;
  padding: 16px 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.blog-article__right .entry-content .tooltips span::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #c6dff1;
  position: absolute;
  bottom: -9px;
  left: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1199px) {
  .blog-article__right .entry-content .tooltips span {
    display: none;
  }
}
@media only screen and (min-width: 1199px) {
  .blog-article__right .entry-content .tooltips:hover span {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.blog-article__right .entry-content p {
  margin-bottom: 0;
}
.blog-article__right .entry-content h3 {
  margin-bottom: 14px;
}
@media screen and (max-width: 575px) {
  .blog-article__right .entry-content h3 {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.blog-article__right .entry-content h3:first-of-type {
  margin-top: 35px;
}
@media screen and (max-width: 575px) {
  .blog-article__right .entry-content h3:first-of-type {
    margin-top: 24px;
  }
}
.blog-article__right .entry-content h4 {
  margin-top: 35px;
  margin-bottom: 23px;
}
.blog-article__right .entry-content h4:first-of-type {
  margin-top: 40px;
}
@media screen and (max-width: 575px) {
  .blog-article__right .entry-content h4:first-of-type {
    margin-top: 23px;
  }
}
@media screen and (max-width: 575px) {
  .blog-article__right .entry-content h4 {
    margin-top: 23px;
    margin-bottom: 26px;
  }
}
.blog-article__right .entry-content img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
@media screen and (max-width: 991px) {
  .blog-article__right {
    max-width: 100%;
  }
}

.blog-article__right-entry-wrap {
  display: block;
  width: 100%;
}
@media screen and (max-width: 575px) {
  .blog-article__right-entry-wrap {
    margin-bottom: 32px;
  }
}
.blog-article__right-entry-wrap a:not(.cta-shop-now__box-btn-snippet) {
  text-decoration: underline;
  color: #322e22;
}

.blog-article__right-content-mobile-button-wrap {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 327px;
  width: 100%;
  z-index: 100;
  cursor: pointer;
}
.blog-article__right-content-mobile-button-wrap #toc-container {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  bottom: 45px;
  left: 0;
  max-width: 100%;
  width: 100%;
  background-color: #fff;
  border: 1px solid #322e22;
  border-radius: 8px;
  padding: 20px 20px 20px 30px;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}
.blog-article__right-content-mobile-button-wrap #toc-container.is-visible {
  height: 250px;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  overflow-y: auto;
}
.blog-article__right-content-mobile-button-wrap ol.section-ol li {
  font-size: 14px;
  padding-left: 10px;
}
.blog-article__right-content-mobile-button-wrap ol.section-ol li a {
  color: #322e22;
}
@media screen and (max-width: 991px) {
  .blog-article__right-content-mobile-button-wrap {
    display: block;
  }
}
@media screen and (max-width: 370px) {
  .blog-article__right-content-mobile-button-wrap {
    max-width: 290px;
  }
}

.blog-article__right-content-mobile-button-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  height: 40px;
  border: 1px solid #322e22;
  border-radius: 50px;
  padding: 5px;
  background-color: #fff;
}
.blog-article__right-content-mobile-button-text svg {
  width: 16px;
  height: 16px;
  margin-left: 12px;
}

.blog-article__newsletter {
  position: relative;
  display: block;
  max-width: 800px;
  width: 100%;
  background-color: #eef5fb;
  border-radius: 8px;
  overflow: hidden;
  padding: 54px 15px 55px 36px;
  margin-top: 18px;
}
@media screen and (max-width: 1199px) {
  .blog-article__newsletter {
    padding: 35px 15px 35px 30px;
  }
}
@media screen and (max-width: 575px) {
  .blog-article__newsletter {
    padding: 24px 15px 63px 20px;
    margin-top: 2px;
  }
}

.blog-article__newsletter-texts {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 630px;
  width: 100%;
  z-index: 10;
}
.blog-article__newsletter-texts form {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 600px;
  width: 100%;
  margin-top: 40px;
}
.blog-article__newsletter-texts form input[type=email] {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
  border: 1px solid #322e22;
  padding: 10px 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 100px;
  max-width: 68.1%;
  width: 100%;
  height: 48px;
}
.blog-article__newsletter-texts form input[type=email]::-webkit-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.blog-article__newsletter-texts form input[type=email]::-moz-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.blog-article__newsletter-texts form input[type=email]:-ms-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.blog-article__newsletter-texts form input[type=email]::-ms-input-placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
.blog-article__newsletter-texts form input[type=email]::placeholder {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #322e22;
}
@media screen and (max-width: 767px) {
  .blog-article__newsletter-texts form input[type=email] {
    max-width: 62%;
  }
}
@media screen and (max-width: 500px) {
  .blog-article__newsletter-texts form input[type=email] {
    max-width: 100%;
    width: 100%;
  }
}
.blog-article__newsletter-texts form input[type=submit] {
  min-width: auto;
  max-width: 30%;
  width: 100%;
  height: 48px;
}
@media screen and (max-width: 767px) {
  .blog-article__newsletter-texts form input[type=submit] {
    height: 47px;
    max-width: 35%;
  }
}
@media screen and (max-width: 500px) {
  .blog-article__newsletter-texts form input[type=submit] {
    min-width: auto;
    max-width: 100%;
    width: 100%;
    margin-top: 12px;
  }
}
@media screen and (max-width: 991px) {
  .blog-article__newsletter-texts form {
    margin-top: 23px;
  }
}
@media screen and (max-width: 575px) {
  .blog-article__newsletter-texts form {
    margin-top: 11px;
  }
}
@media screen and (max-width: 991px) {
  .blog-article__newsletter-texts {
    max-width: 440px;
  }
}
@media screen and (max-width: 767px) {
  .blog-article__newsletter-texts {
    max-width: 100%;
  }
}

.blog-article__newsletter-title {
  font-size: 32px;
}
@media screen and (max-width: 1199px) {
  .blog-article__newsletter-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .blog-article__newsletter-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .blog-article__newsletter-title {
    font-size: 24px;
  }
}

.blog-article__newsletter-desc {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  margin-top: 9px;
}
@media screen and (max-width: 575px) {
  .blog-article__newsletter-desc {
    font-size: 16px;
  }
}

.blog-article__newsletter-notice {
  font-size: 11px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #5e5e5e;
  margin-top: 16px;
}
.blog-article__newsletter-notice a {
  position: relative;
  color: #5e5e5e;
}
.blog-article__newsletter-notice a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #5e5e5e;
  position: absolute;
  bottom: 2px;
  left: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .blog-article__newsletter-notice a:hover::before {
    width: 0;
  }
}
@media screen and (max-width: 1199px) {
  .blog-article__newsletter-notice {
    max-width: 450px;
  }
}
@media screen and (max-width: 767px) {
  .blog-article__newsletter-notice {
    max-width: 350px;
  }
}
@media screen and (max-width: 500px) {
  .blog-article__newsletter-notice {
    max-width: 240px;
    margin-top: 17px;
  }
}

.blog-article__newsletter-image-decor {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 162px;
  width: 100%;
}
.blog-article__newsletter-image-decor picture {
  width: 100%;
  height: 100%;
}
.blog-article__newsletter-image-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 575px) {
  .blog-article__newsletter-image-decor {
    max-width: 158px;
    max-height: 126px;
  }
}

.blog-article__references {
  display: block;
  width: 100%;
  margin-top: 47px;
}
@media screen and (max-width: 575px) {
  .blog-article__references {
    margin-top: 32px;
  }
}

.blog-article__references-title {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
}

.blog-article__references-lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 24px;
  margin-left: 24px;
}
@media screen and (max-width: 575px) {
  .blog-article__references-lists {
    padding-right: 32px;
  }
}

.blog-article__references-list {
  list-style: number;
}
.blog-article__references-list:first-child {
  margin-top: 0;
}

.blog-article__references-link {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-decoration: underline;
  word-break: break-all;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .blog-article__references-link:hover {
    color: #4797f8;
    text-decoration: underline;
  }
}

.blog-article__author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 800px;
  width: 100%;
  padding: 36px 35px 37px 36px;
  border-radius: 8px;
  background-color: #eef5fb;
  margin-top: 48px;
}
.blog-article__author .entry-content {
  margin-top: 28px;
}
.blog-article__author .entry-content p {
  font-size: 15px;
  margin-bottom: 25px;
}
.blog-article__author .entry-content p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .blog-article__author .entry-content p {
    line-height: 1.52;
  }
}
@media screen and (max-width: 575px) {
  .blog-article__author {
    padding: 20px 16px 21px 20px;
    margin-top: 32px;
  }
}

.blog-article__author-upper {
  position: relative;
  padding-top: 10px;
  padding-left: 96px;
}

.blog-article__author-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 76px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f4fbff;
}
.blog-article__author-image img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 78px;
  max-height: 70px;
}

.blog-article__author-name {
  font-size: 16px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
}
.blog-article__author-name strong {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.blog-article__share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 800px;
  width: 100%;
  border-top: 1px solid #c6dff1;
  padding-top: 39px;
  margin-top: 48px;
}
@media screen and (max-width: 575px) {
  .blog-article__share {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 31px;
    margin-top: 32px;
  }
}

.blog-article__share-pills {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .blog-article__share-pills {
    margin-bottom: 0;
  }
}

.blog-article__share-pill {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.7px;
  line-height: 1.2;
  color: #322e22;
  background-color: #ebebeb;
  padding: 7px 18px;
  border-radius: 50px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .blog-article__share-pill:hover {
    background-color: #322e22;
    color: #fff;
  }
}

.blog-article__share-btn {
  position: relative;
  font-size: 15px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: #322e22;
  text-transform: uppercase;
  padding-right: 29px;
  padding-top: 18px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  cursor: pointer;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.blog-article__share-btn svg {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 18px;
  right: 0;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  .blog-article__share-btn:hover {
    color: #4797f8;
  }
  .blog-article__share-btn:hover svg {
    color: #4797f8;
    fill: #4797f8;
  }
}
.blog-article__share-btn:hover .blog-article__share-btn-links {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 575px) {
  .blog-article__share-btn {
    margin-top: 10px;
  }
}

.blog-article__share-btn-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #c6dff1;
  border-radius: 8px;
  position: absolute;
  bottom: 33px;
  left: 50%;
  -webkit-transform: translate(-50%, -80px);
          transform: translate(-50%, -80px);
  width: 116px;
  padding: 18px 12px 17px 23px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.blog-article__share-btn-links::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #c6dff1;
  position: absolute;
  bottom: -9px;
  left: 44%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-article__share-btn-link {
  font-size: 14px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  text-transform: none;
  margin-top: 15px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
.blog-article__share-btn-link:first-child {
  margin-top: 0;
}
@media only screen and (min-width: 1199px) {
  .blog-article__share-btn-link:hover {
    color: #4797f8;
  }
}

.blog-article__articles {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 102px;
}
.blog-article__articles .latest-articles__title {
  text-align: center;
}
.blog-article__articles .latest-articles__boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
  padding: 0;
  margin-top: 41px;
}
@media screen and (max-width: 991px) {
  .blog-article__articles .latest-articles__boxes {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .blog-article__articles .latest-articles__boxes {
    margin-top: 26px;
  }
}
@media screen and (max-width: 991px) {
  .blog-article__articles .latest-articles__box {
    width: 100% !important;
  }
}
.blog-article__articles .latest-articles__box-pills {
  -webkit-box-ordinal-group: initial;
  -webkit-order: initial;
      -ms-flex-order: initial;
          order: initial;
  margin: 0 -6px;
}
.blog-article__articles .latest-articles__box-title {
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  .blog-article__articles .latest-articles__box-title {
    font-size: 18px;
    line-height: 1.26;
  }
}
.blog-article__articles .latest-articles__box-date {
  margin-top: 17px;
}
@media screen and (max-width: 991px) {
  .blog-article__articles {
    padding-top: 80px;
  }
}

.progress-bar {
  width: 100%;
  position: fixed;
  height: 5px;
  background-color: #eef5fb;
  left: 0;
  z-index: 100000;
  display: none;
}

.progress-bar-fill {
  height: 100%;
  width: 0;
  background-color: #322e22;
}

.comparison-table {
  position: relative;
  border-top: 1px solid #eaeaff;
  padding: 40px 0;
}

.comparison-table .container {
  padding-left: 24px;
  padding-right: 24px;
}

.comparison-table__table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.comparison-table__bkg-image {
  width: 93px;
  height: auto;
  position: absolute;
  top: 195px;
  left: 0;
}

.comparison-table__headline {
  text-align: center;
  max-width: 327px;
  margin: 0 auto 16px;
  color: #322e22;
  font-size: 24px;
  line-height: 31px;
  font-weight: 400;
}
.comparison-table__headline strong {
  font-weight: 700;
}

.comparison-table__subheadline {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  max-width: 327px;
  margin: 0 auto;
  letter-spacing: 0;
}

.table-swiper-mob__inner p {
  height: 24px;
}

.comparison-table__table-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/*First column*/
.comparison-table__column-title {
  max-width: 130px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.comparison-table__column-title .row-title {
  height: 72px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #322e22;
  padding-left: 8px;
  border-top: 1px solid #322e22;
}

.comparison-table__column-title .row-title--empty {
  height: 80px;
  border: none;
}

.comparison-table__column-title .row-title:first-child {
  border-top: none;
}

.comparison-table__column-title .row-title p {
  font-size: 14px;
  line-height: 21px;
  color: #322e22;
  letter-spacing: 0;
}

/*Second column*/
.table-column-content.primary-col {
  width: 106px;
  border-radius: 8px 8px 0 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: #c6dff1;
}

.table-column-content .column-row-content:first-of-type img {
  width: 30px;
  height: 101px;
}

.table-column-content.primary-col .column-row-content:first-of-type img {
  width: 100px;
  height: 118px;
  -o-object-fit: cover;
     object-fit: cover;
}

.table-column-content.primary-col .column-row-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 72px;
  border-top: 1px solid #4797f8;
  border-right: none;
}

.table-column-content.primary-col .column-row-content:first-child {
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: var(--wls-color-white);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  overflow: hidden !important;
}

.table-column-content .column-row-content:last-child {
  border-bottom: 1px solid #322e22;
}

/*Third column*/
.table-column-content {
  width: 91px;
}

.table-column-content .column-row-content:first-child {
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.table-column-content .column-row-content:first-child p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}

.column-row-content {
  height: 72px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #322e22;
  border-right: 1px solid #322e22;
}
.column-row-content p svg rect {
  fill: #4797f8;
}

.column-row-content:first-child {
  border: none;
}

.comparison-table__navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 32px;
}

/*Table border-radius*/
.comparison-table__column-title .row-title:nth-of-type(2) {
  border-radius: 8px 0;
}

.comparison-table__column-title .row-title:last-of-type {
  border-bottom: 1px solid #322e22;
  border-radius: 0 0 0 8px;
}

.table-column-content:last-of-type .column-row-content:nth-of-type(2) {
  border-radius: 0 8px;
}

.table-column-content:last-of-type .column-row-content:last-of-type {
  border-radius: 0 0 8px;
}

.table-column-content.primary-col .column-row-content:last-child {
  border-bottom: 1px solid #9393d8;
}

@media (max-width: 900px) {
  .comparison-table {
    min-height: 798px;
  }
  .comparison-table__header {
    margin-bottom: 32px;
  }
  .table-swiper-mob__inner {
    width: 91px;
  }
  .comparison-table .splide__arrows {
    left: -80%;
    bottom: -72px;
    min-width: 212px;
  }
  .comparison-table .splide:not(.is-overflow) .splide__pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    position: absolute;
    left: -80%;
    bottom: -13%;
  }
  .table-column-content.primary-col .column-row-content:first-of-type img {
    width: 96px;
    height: auto;
  }
  .wls-comparison-table__column-title .row-title:last-of-type {
    height: 71px;
  }
  .table-column-content .column-row-content:last-child {
    height: 72px;
  }
  .wls-comparison-table .slick-dots {
    z-index: 9;
  }
  .splide__slide.table-column-content .column-row-content:nth-of-type(2) {
    border-radius: 0 8px;
  }
  .splide__slide.table-column-content .column-row-content:last-of-type {
    border-radius: 0 0 8px;
  }
  .comparison-table .splide__slide {
    opacity: 0;
    display: none;
    visibility: hidden;
    z-index: 0;
  }
  .comparison-table .splide__slide.is-active.is-visible {
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 1;
  }
}
@media (min-width: 900px) {
  .comparison-table {
    padding: 80px 0;
  }
  .comparison-table__header {
    margin-bottom: 64px;
  }
  .comparison-table__bkg-image {
    width: 294px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    left: 0;
    top: 214px;
  }
  .comparison-table__navigation {
    display: none;
  }
  .table-swiper-mob__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .comparison-table__headline {
    margin-bottom: 16px;
    max-width: 100%;
    font-size: 36px;
    letter-spacing: 0;
    line-height: 46px;
  }
  .comparison-table__subheadline {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    max-width: 702px;
    margin: 0 auto;
  }
  .comparison-table__table-container {
    max-width: 720px;
    width: 100%;
  }
  .comparison-table__column-title {
    width: 100%;
    max-width: 240px;
  }
  .table-column-content.primary-col {
    width: 180px;
  }
  .wls-comparison-table__headline {
    font-size: 32px;
  }
  .table-column-content {
    width: 100px;
  }
  .table-column-content.primary-col .column-row-content:first-of-type img {
    width: 141px;
    height: auto;
  }
  .comparison-table__column-title .row-title {
    height: 64px;
    padding-left: 18px;
    letter-spacing: 0;
  }
  .column-row-content {
    height: 64px;
  }
  .table-column-content.primary-col .column-row-content {
    height: 64px;
  }
  .comparison-table__column-title .row-title p {
    font-size: 16px;
    line-height: 24px;
    color: #322e22;
    max-width: 188px;
  }
  .comparison-table__column-title .row-title--empty {
    height: 80px;
  }
  .table-swiper-mob.splide {
    visibility: visible;
  }
  .table-swiper-mob .splide__arrows {
    display: none;
  }
}
@media (max-width: 400px) {
  .table-column-content.primary-col .column-row-content:first-child {
    padding: 0 5px;
  }
  .comparison-table__column-title {
    max-width: 110px;
  }
  .comparison-table__column-title .row-title p {
    font-size: 12px;
    line-height: 17px;
    padding-right: 4px;
  }
  .comparison-table .splide__arrows {
    left: -70%;
    bottom: -72px;
    min-width: 212px;
  }
  .comparison-table .splide:not(.is-overflow) .splide__pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    position: absolute;
    left: -70%;
    bottom: -13%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .comparison-table__table-container {
    max-width: unset;
    width: unset;
  }
  .comparison-table__bkg-image {
    width: 136px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    left: 0;
    top: 145px;
  }
}
.list-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .list-mobile {
    display: inline-block;
  }
}

@media screen and (max-width: 575px) {
  .list-desktop {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .my-account-navigation {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .my-account-navigation {
    display: none;
  }
}

.main-account__section {
  max-width: 1600px;
  min-height: 798px;
  margin: 0 auto;
  padding: 5% 10.4%;
}
@media screen and (max-width: 767px) {
  .main-account__section {
    padding: 40px 24px;
  }
}

.main-account__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 205px;
}
@media screen and (max-width: 767px) {
  .main-account__wrapper {
    gap: 120px;
  }
}

.main-account__wrapper-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 340px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .main-account__wrapper-top {
    gap: 33px;
  }
}

.main-account__wrapper-top-hello {
  text-transform: uppercase;
  text-align: center;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
}
.main-account__wrapper-top-hello h2 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
  text-align: center;
}
.main-account__wrapper-top-hello p {
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-align: center;
}
.main-account__wrapper-top-hello a {
  display: none;
}
@media screen and (max-width: 767px) {
  .main-account__wrapper-top-hello {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main-account__wrapper-top-hello div {
    margin-top: 5px;
  }
  .main-account__wrapper-top-hello p {
    text-align: left;
    font-size: 15px;
    line-height: 15px;
  }
  .main-account__wrapper-top-hello h2 {
    text-align: left;
    font-size: 20px;
    line-height: 26px;
  }
  .main-account__wrapper-top-hello a {
    color: #322e22;
    display: block;
  }
}

.main-account__wrapper-bottom {
  font-family: Inter, sans-serif;
  color: #322e22;
  font-weight: 600;
  font-size: 18px;
  line-height: 22.5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.main-account__wrapper-bottom a {
  color: #322e22;
}
@media screen and (max-width: 575px) {
  .main-account__wrapper-bottom {
    display: none;
  }
}

.main-account__wrapper-top__data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  height: 100%;
  width: 100%;
  max-width: 1262px;
}
@media screen and (max-width: 767px) {
  .main-account__wrapper-top__data {
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .main-account__wrapper-top__data {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

.my-account-navigation__list-element {
  margin: 24px 0;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.1em;
}
.my-account-navigation__list-element:first-child {
  margin-bottom: 24px;
  margin-top: 0;
}
.my-account-navigation__list-element:last-child {
  margin-top: 24px;
  margin-bottom: 0;
}
.my-account-navigation__list-element a {
  color: #322e22;
}

.main-account__wrapper-top__data-content {
  width: 952px;
}
@media screen and (max-width: 767px) {
  .main-account__wrapper-top__data-content {
    width: 100%;
  }
}

.active-account {
  border-bottom: 1px solid #322e22;
}

.table-wrapper {
  padding: 8px 20px;
  width: 100%;
  background: #eef5fb;
}
@media screen and (max-width: 767px) {
  .table-wrapper {
    padding: 8px 4px;
  }
}

.order-history {
  width: 100%;
  border-collapse: collapse;
}
.order-history th {
  padding: 20px 0;
  text-align: left;
  border-bottom: 0.5px solid #c6dff1;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22.5px;
  width: 215px;
}
@media screen and (max-width: 767px) {
  .order-history th {
    font-size: 15px;
    line-height: 18.75px;
  }
}
@media screen and (max-width: 575px) {
  .order-history th:nth-child(2) {
    padding-right: 70px;
  }
}
.order-history th:nth-last-child(2) {
  text-align: center;
}
.order-history th:last-child {
  text-align: center;
  width: 43px;
}
@media screen and (max-width: 767px) {
  .order-history th:last-child {
    display: none;
  }
}
.order-history td {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  height: 56px;
  padding: 6px 0;
}
.order-history td a {
  text-decoration: underline;
  color: #322e22;
}
@media screen and (max-width: 767px) {
  .order-history td {
    font-size: 13px;
    line-height: 19.5px;
  }
}
.order-history td:nth-last-child(2) {
  text-align: center;
}
.order-history td:last-child {
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.order-history tr {
  border-bottom: 0.5px solid #c6dff1;
}
.order-history tr:last-child {
  border-bottom: 0;
}

.account-data-title {
  width: 100%;
  margin-bottom: 24px;
}
.account-data-title h3 {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .account-data-title {
    display: none;
  }
}

.dropdown-el {
  width: 100%;
  min-width: 12em;
  position: relative;
  min-height: 48px;
  max-height: 48px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  color: #444;
  outline: none;
  border: 1px solid #322e22;
  border-radius: 30px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.dropdown-el a {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
  display: block;
  height: 48px;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  padding-left: 30px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: #322e22;
}
.dropdown-el a:focus {
  background: #fff;
}
.dropdown-el a:hover {
  color: #322e22;
  background: #eef5fb;
}
.dropdown-el a span {
  position: absolute;
  right: 29px;
  top: 18px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.dropdown-el.expanded {
  border: 1px solid #322e22;
  background: #fff;
  border-radius: 15px;
  padding: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0;
          box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0;
  max-height: 15em;
}
.dropdown-el.expanded a span {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.main-order__section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 5% 10.4%;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .main-order__section {
    padding: 5% 2%;
  }
}
@media screen and (max-width: 767px) {
  .main-order__section {
    padding: 40px 24px;
  }
}

.main-order__wrapper-top__data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  height: 100%;
  width: 100%;
  max-width: 1262px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .main-order__wrapper-top__data {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .main-order__wrapper-top__data {
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .main-order__wrapper-top__data {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

.main-order__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}
.main-order__header p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 1100px) {
  .main-order__header p {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.main-order__header a {
  letter-spacing: 0;
  color: #322e22;
  font-size: 18px;
  line-height: 27px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1100px) {
  .main-order__header a {
    font-size: 15px;
    line-height: 22.5px;
  }
}

.letter-spacing {
  letter-spacing: 0;
}

.main-order__wrapper-top__data-navigation {
  max-width: 232px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .main-order__wrapper-top__data-navigation {
    max-width: 100%;
  }
}

.main-order__content {
  width: 100%;
  max-width: 952px;
  background-color: #eef5fb;
  padding: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .main-order__content {
    padding: 24px;
  }
}

.main-order__content-adresess {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 32px;
}
@media screen and (max-width: 575px) {
  .main-order__content-adresess {
    gap: 20px;
  }
}

.main-order__content-adresess-billing {
  width: 50%;
}
@media screen and (max-width: 575px) {
  .main-order__content-adresess-billing p:nth-child(3) {
    font-size: 15px;
    line-height: 22.5px;
  }
}
@media screen and (max-width: 1100px) {
  .main-order__content-adresess-billing p {
    font-size: 15px;
    line-height: 22.5px;
  }
}
@media screen and (max-width: 575px) {
  .main-order__content-adresess-billing p {
    font-size: 13px;
    line-height: 19.5px;
  }
}
.main-order__content-adresess-billing strong {
  font-weight: 400;
}
.main-order__content-adresess-billing h2 {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
  color: #322e22;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 24px;
}
@media screen and (max-width: 1100px) {
  .main-order__content-adresess-billing h2 {
    font-size: 15px;
    line-height: 22.5px;
  }
}

.main-order__content-adresess-shipping {
  width: 50%;
}
@media screen and (max-width: 1100px) {
  .main-order__content-adresess-shipping p {
    font-size: 15px;
    line-height: 22.5px;
  }
}
@media screen and (max-width: 575px) {
  .main-order__content-adresess-shipping p {
    font-size: 13px;
    line-height: 19.5px;
  }
}
.main-order__content-adresess-shipping strong {
  font-weight: 400;
}
.main-order__content-adresess-shipping h2 {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  color: #322e22;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media screen and (max-width: 1100px) {
  .main-order__content-adresess-shipping h2 {
    font-size: 15px;
    line-height: 22.5px;
  }
}

.main-order__content-adresess-shipping-payment-method {
  margin: 24px 0;
}
@media screen and (max-width: 575px) {
  .main-order__content-adresess-shipping-payment-method {
    font-size: 15px;
    line-height: 22.5px;
    margin: 28px 0;
  }
}

.main-order__conten-products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-order__conten-products__product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-order__content-products__image {
  width: 100px;
  height: 100px;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
@media screen and (max-width: 575px) {
  .main-order__content-products__image {
    width: 64px;
    height: 64px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-order__content-products__image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.main-order__content-products__image-with-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}
@media screen and (max-width: 575px) {
  .main-order__content-products__image-with-text {
    gap: 8px;
  }
}

.main-order__content-products__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8.5px 0;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  text-align: left;
}
.main-order__content-products__text p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.main-order__content-products__text p strong {
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .main-order__content-products__text p {
    font-size: 12px;
    line-height: 18px;
  }
}
.main-order__content-products__text h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 20.8px;
}
@media screen and (max-width: 575px) {
  .main-order__content-products__text h3 {
    font-size: 15px;
    line-height: 19.5px;
  }
}
@media screen and (max-width: 575px) {
  .main-order__content-products__text {
    padding: 0;
  }
}

.main-order__content-products__price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 575px) {
  .main-order__content-products__price {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .main-order__content-products__price p {
    font-size: 15px;
    line-height: 22.5px;
  }
}

.main-order__content-line {
  width: 100%;
  border-bottom: 1px solid #c6dff1;
}

.order-details {
  width: 100%;
  border-collapse: collapse;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: right;
}
@media screen and (max-width: 1100px) {
  .order-details {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.order-details tr:first-child td {
  padding-top: 0;
}
.order-details tr:last-child td {
  padding-top: 13px;
}
.order-details tr:nth-last-child(2) td {
  padding-bottom: 15px;
}
.order-details td {
  padding: 6px 0;
}
.order-details td:nth-last-child(2) {
  text-align: left;
  font-weight: 700;
}

.empty-td {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .empty-td {
    width: 0%;
  }
}

.td-text-end {
  text-align: end;
}

.td-border {
  border-bottom: 1px solid #c6dff1;
}

.main-order__wrapper {
  position: relative;
}

.main-order__wrapper-top-hello {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.main-order__wrapper-top-hello h2 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
  text-align: left;
  letter-spacing: 0;
  color: #322e22;
}
.main-order__wrapper-top-hello p {
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #322e22;
}
.main-order__wrapper-top-hello a {
  display: none;
  color: #322e22;
}
@media screen and (max-width: 767px) {
  .main-order__wrapper-top-hello {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main-order__wrapper-top-hello div {
    margin-top: 5px;
  }
  .main-order__wrapper-top-hello p {
    text-align: left;
    font-size: 15px;
    line-height: 15px;
  }
  .main-order__wrapper-top-hello h2 {
    text-align: left;
    font-size: 20px;
    line-height: 26px;
  }
  .main-order__wrapper-top-hello a {
    color: #322e22;
    display: block;
  }
}

.main-account__wrapper-top__data-content {
  width: 100%;
  max-width: 952px;
}
@media screen and (max-width: 767px) {
  .main-account__wrapper-top__data-content {
    width: 100%;
  }
}

.main-order__wrapper-bottom {
  position: absolute;
  bottom: 8px;
  left: 0;
  font-family: Inter, sans-serif;
  color: #322e22;
  font-weight: 600;
  font-size: 18px;
  line-height: 22.5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .main-order__wrapper-bottom {
    font-size: 14px;
  }
}
.main-order__wrapper-bottom a {
  color: #322e22;
}
@media screen and (max-width: 767px) {
  .main-order__wrapper-bottom {
    display: none;
  }
}

.customer-address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.customer-address__header {
  text-transform: uppercase;
}
.customer-address__header h1 {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  margin-bottom: 24px;
  color: #322e22;
  letter-spacing: 0;
}
.customer-address__header p {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  color: #322e22;
  letter-spacing: 0;
}
.customer-address__header p strong {
  font-weight: 700;
}
.customer-address__header p a {
  color: #322e22;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .customer-address__header {
    display: none;
  }
}

.customer-address__footer-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .customer-address__footer-mobile {
    display: block;
    margin-top: 32px;
    text-transform: uppercase;
  }
  .customer-address__footer-mobile h1 {
    font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    margin-bottom: 24px;
    color: #322e22;
    letter-spacing: 0;
  }
  .customer-address__footer-mobile p {
    font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #322e22;
    letter-spacing: 0;
  }
  .customer-address__footer-mobile p strong {
    font-weight: 700;
  }
  .customer-address__footer-mobile p a {
    color: #322e22;
    text-decoration: underline;
  }
}

.customer-address__address-container {
  border-radius: 6px;
  background: #eef5fb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  min-height: 176px;
  padding: 32px 48px;
}
@media screen and (max-width: 767px) {
  .customer-address__address-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
}

.customer-address__address-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.customer-address__address-btns button {
  min-width: 180px;
}

.customer-address__address-text p {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  color: #322e22;
  letter-spacing: 0;
}
.customer-address__address-text h2 {
  color: #322e22;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.customer-address__need-help {
  font-family: Inter, sans-serif;
  margin-top: 38px;
  color: #322e22;
  font-weight: 600;
  font-size: 18px;
  line-height: 22.5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .customer-address__need-help {
    font-size: 14px;
  }
}
.customer-address__need-help a {
  color: #322e22;
}
.customer-address__need-help a:last-child {
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .customer-address__need-help {
    display: none;
  }
}

.add-address-button {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  border: none;
  height: 100%;
  min-height: 59px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
  background: #eef5fb;
  cursor: pointer;
}

.button-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.address-form__button {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .address-form__button {
    width: 100%;
  }
}

.address-btn {
  max-width: 420px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .address-btn {
    max-width: 100%;
  }
}

.customer-address__new-address-container {
  border-radius: 6px;
  display: none;
  padding: 32px 48px;
  background: #eef5fb;
}
@media screen and (max-width: 767px) {
  .customer-address__new-address-container {
    padding: 24px;
  }
}

.edit-address-header input[type=checkbox] + label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid #322e22;
  margin-right: 10px;
  vertical-align: middle;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
}

.edit-address-header input[type=checkbox]:checked + label::before {
  background: #322e22;
  background-image: url('data:image/svg+xml;utf8,<svg width="12" height="9" viewBox="0 0 12 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.22786 8.5625L0.707031 5.02083L1.7487 3.97917L4.22786 6.4375L10.2487 0.4375L11.2904 1.5L4.22786 8.5625Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 9px;
}

.edit-address-header label {
  font-family: "$font-main", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
}

.default-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.customer-address__adress-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .customer-address__adress-form {
    gap: 32px;
  }
}

.customer-address__address-form-fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .customer-address__address-form-fields input {
    height: 48px;
  }
}

.label-select-container label {
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  padding-left: 20px;
  letter-spacing: 0;
}

.field-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.customer-address__country-selector {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.customer-address__country-selector select {
  display: block;
  width: 100%;
  height: 48px;
  background-color: #fff;
  border: 1px solid #322e22;
  border-radius: 30px;
  padding: 10px 20px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #322e22;
  outline: none;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media screen and (max-width: 767px) {
  .customer-address__country-selector select {
    padding: 10px 15px;
  }
}

.customer-address__name-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .customer-address__name-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.customer-address__name-field {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .customer-address__name-field {
    width: 100%;
  }
}

.customer-address__city-state-zip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .customer-address__city-state-zip {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.customer-address__state {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.customer-address__state select {
  display: block;
  width: 100%;
  height: 48px;
  background-color: #fff;
  border: 1px solid #322e22;
  border-radius: 30px;
  padding: 10px 20px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #322e22;
  outline: none;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}

.customer-address__city-state-zip-field {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .customer-address__city-state-zip-field {
    width: 100%;
  }
}

.select__field {
  position: relative;
}
.select__field select {
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
}
.select__field svg {
  position: absolute;
  right: 20px;
  bottom: 18.5px;
}

/*--------------------------------------------------------------
## yotpo-reviews
--------------------------------------------------------------*/
.yotpo-reviews__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: baseline;
  -webkit-justify-content: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  max-width: 702px;
  width: 100%;
  margin: 0 auto;
}

.yotpo-reviews__title {
  font-size: 36px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: #322e22;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .yotpo-reviews__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .yotpo-reviews__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .yotpo-reviews__title {
    font-size: 24px;
  }
}

.yotpo-reviews__description {
  font-size: 18px;
  font-family: "PP Object Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 575px) {
  .yotpo-reviews__description {
    font-size: 16px;
    padding: 0 10px;
    margin-top: 15px;
  }
}

body .yotpo-label-container,
body span.yotpo-display-wrapper {
  display: none;
}
body .yotpo.yotpo-main-widget {
  padding: 0 27px;
  margin-top: 31px !important;
}
@media screen and (max-width: 575px) {
  body .yotpo.yotpo-main-widget {
    padding: 0 12px;
  }
}
@media screen and (max-width: 575px) {
  body .main-widget .yotpo-reviews-header, body .main-widget .yotpo-reviews-filters {
    margin: 0 !important;
    padding: 25px 0 26px !important;
  }
}
@media screen and (max-width: 575px) {
  body .free-text-search {
    width: 100% !important;
  }
}
@media screen and (max-width: 575px) {
  body .filters-container .free-text-search-input {
    margin: 19px 0 25px !important;
    width: 100% !important;
  }
}
body .main-widget .yotpo-reviews-header {
  padding-bottom: 54px !important;
}
@media screen and (max-width: 575px) {
  body .main-widget .yotpo-reviews-header {
    padding-bottom: 4px !important;
  }
}
body .yotpo .yotpo-regular-box {
  padding: 39px 0 23px;
}
body .yotpo .yotpo-regular-box-filters-padding {
  border-top: 1px solid #e3e3e3 !important;
  padding-top: 38px;
  padding-bottom: 23px;
}
@media screen and (max-width: 575px) {
  body .yotpo .yotpo-regular-box-filters-padding {
    border-top: 0 !important;
    margin: 0 2px;
  }
}
body .yotpo .yotpo-review .yotpo-main, body .yotpo .yotpo-comment .yotpo-main, body .yotpo .yotpo-question .yotpo-main, body .yotpo .yotpo-onsite-upload .yotpo-main {
  margin-top: 30px;
  margin-bottom: 23px;
}
@media screen and (max-width: 575px) {
  body .yotpo .yotpo-review .yotpo-main, body .yotpo .yotpo-comment .yotpo-main, body .yotpo .yotpo-question .yotpo-main, body .yotpo .yotpo-onsite-upload .yotpo-main {
    margin-top: 32px;
    margin-bottom: 26px;
  }
}
body .yotpo .yotpo-pager .yotpo-page-element.yotpo-active,
body .yotpo .transparent-color-btn span.yotpo-icon,
body .content-title,
body .yotpo-icon,
body .yotpo .yotpo-review .yotpo-header .yotpo-review-stars .yotpo-icon, body .yotpo .yotpo-comment .yotpo-header .yotpo-review-stars .yotpo-icon, body .yotpo .yotpo-question .yotpo-header .yotpo-review-stars .yotpo-icon, body .yotpo .yotpo-onsite-upload .yotpo-header .yotpo-review-stars .yotpo-icon,
body .yotpo-drop-down-layout .yotpo-dropdown .list-category .selected-item,
body .yotpo .yotpo-dropdown .list-category a {
  color: #322e22 !important;
}
body .y-label,
body .yotpo-page-element,
body .grouping-reference-link,
body .list-category,
body .yotpo-dropdown-button,
body .suggested-topic,
body .yotpo-default-button {
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
body .yotpo-icon-profile {
  background-color: #fff !important;
  border: 1px solid #e3e3e3 !important;
}
@media screen and (max-width: 575px) {
  body .yotpo-icon-profile {
    margin-right: 10px !important;
  }
}
@media screen and (max-width: 575px) {
  body .yotpo-review-stars {
    margin-top: 9px !important;
  }
}
body .yotpo-user-letter {
  color: #322e22 !important;
}
body .yotpo-header-title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #322e22;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 575px) {
  body .yotpo-header-title {
    font-size: 18px;
    margin-top: 15px;
  }
}
body .yotpo input, body .yotpo .y-input,
body .yotpo .text-box, body .yotpo .yotpo-text-box {
  height: 48px;
  border-radius: 30px;
  border-color: #322e22;
}
body .yotpo .text-box, body .yotpo .yotpo-text-box {
  height: 150px;
  min-height: 150px;
  max-height: 150px;
  overflow-y: auto;
  resize: none;
  border-radius: 5px;
  /* stylelint-disable */
  scrollbar-width: thin;
  scrollbar-color: #322e22 #fff;
}
body .yotpo .text-box::-webkit-scrollbar, body .yotpo .yotpo-text-box::-webkit-scrollbar {
  width: 0.6vw;
}
body .yotpo .text-box::-webkit-scrollbar-thumb, body .yotpo .yotpo-text-box::-webkit-scrollbar-thumb {
  background-color: #322e22;
  border-radius: 0.3vw;
  border: 1px solid #fff;
}
body .yotpo .text-box::-webkit-scrollbar-track, body .yotpo .yotpo-text-box::-webkit-scrollbar-track {
  background-color: #fff;
}
body .yotpo .text-box, body .yotpo .yotpo-text-box {
  /* stylelint-enable */
}
body .yotpo-submit {
  background-color: #322e22 !important;
  border: 1px solid #322e22 !important;
  color: #fff !important;
  padding: 14px 15px !important;
  min-width: 191px !important;
  height: 48px !important;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
}
@media only screen and (min-width: 1199px) {
  body .yotpo-submit:hover {
    color: #322e22 !important;
    background-color: #fff !important;
  }
}
body .write-question-review-buttons-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  float: none !important;
}
@media screen and (max-width: 500px) {
  body .write-question-review-button {
    width: 100% !important;
  }
}
body .new-yotpo-small-box.reviews {
  max-width: 380px;
  margin: 35px auto 0;
}
body .yotpo-questions .yotpo-regular-box-filters-padding {
  border: 0 !important;
}
@media screen and (max-width: 575px) {
  body .yotpo div, body .yotpo span, body .yotpo p, body .yotpo a, body .yotpo img, body .yotpo i, body .yotpo strong, body .yotpo sup, body .yotpo ul, body .yotpo li, body .yotpo form, body .yotpo label {
    font-size: 15px !important;
  }
}
@media screen and (max-width: 575px) {
  body .suggested-topics-row .suggested-topic, body .suggested-topics-row .suggested-topic-expand {
    padding: 8px 9px 10px 11px !important;
  }
}
body .mobile-filters-modal .mobile-filters-container .mobile-single-filter .mobile-filter-radio-buttons .mobile-filter-radio-button input[type=radio] + .radio-label::before {
  top: 10px !important;
}
body .mobile-filters-modal .mobile-filters-footer-btn {
  background-color: #322e22 !important;
}
body .mobile-filters-modal .mobile-filters-container .mobile-single-filter .mobile-filter-radio-buttons .mobile-filter-radio-button .radio-selected-color {
  color: #322e22 !important;
}
body .yotpo.yotpo-main-widget.yotpo-small .yotpo-comments-box, body .yotpo .yotpo-modal-dialog.yotpo-small .yotpo-comments-box {
  margin-left: 0 !important;
}
body .yotpo .yotpo-review .yotpo-header .yotpo-header-element, body .yotpo .yotpo-comment .yotpo-header .yotpo-header-element, body .yotpo .yotpo-question .yotpo-header .yotpo-header-element, body .yotpo .yotpo-onsite-upload .yotpo-header .yotpo-header-element {
  padding-top: 14px !important;
}
@media screen and (max-width: 575px) {
  body .filters-container .magnifying-glass-icon {
    top: 32px !important;
  }
}

.quick-buy-popup .quick-buy-modal__options-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  margin-top: 27px;
}
.quick-buy-popup .quick-buy-modal__el {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #817ee1;
  padding: 12px 24px;
  position: relative;
  max-width: 199px;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  cursor: pointer;
  min-height: 80px;
}
.quick-buy-popup .quick-buy-modal__el.active {
  background-color: #dcdcff;
}
.quick-buy-popup .quick-buy-modal__image {
  border-radius: 8px;
  border: 1px solid #dcdcff;
  overflow: hidden;
}
.quick-buy-popup input[type=radio]:checked ~ label {
  background-color: #dcdcff;
}
.quick-buy-popup .quick-buy-modal__label {
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 6px 8px;
  background: #817ee1;
  border-radius: 4px;
  position: absolute;
  top: -12px;
}
.quick-buy-popup .quick-buy-modal__el-title {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
}
.quick-buy-popup .quick-buy-modal__list .check {
  top: 25px;
}
.quick-buy-popup .quick-buy-modal__list label {
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-block: 14px 16px 14px 46px;
  padding: 14px 16px 14px 46px;
  letter-spacing: 0;
  min-height: 68px;
}
@media screen and (max-width: 767px) {
  .quick-buy-popup .quick-buy-modal__list label {
    padding: 14px 16px;
    min-height: 64px;
  }
}
.quick-buy-popup .quick-buy-modal__list-title {
  padding-right: 0;
  margin-bottom: 6px;
}
.quick-buy-popup .quick-buy-modal__list-title span {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .quick-buy-popup .quick-buy-modal__list-title {
    padding-left: 30px;
    display: inline-block;
    font-size: 16px;
    max-width: 168px;
  }
}
.quick-buy-popup .quick-buy-modal__list-desc {
  font-size: 14px;
  line-height: 14px;
  margin-top: 6px;
  letter-spacing: 0;
  max-width: 65%;
}
@media screen and (max-width: 767px) {
  .quick-buy-popup .quick-buy-modal__list:first-child .quick-buy-modal__list-title {
    max-width: 168px;
  }
}
.quick-buy-popup .quick-buy-modal__plan-select-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
.quick-buy-popup .quick-buy-modal__plan-select-wrapper label {
  font-size: 14px;
  line-height: 21px;
  padding: 0;
  min-height: unset;
}
.quick-buy-popup .quick-buy-modal__plan-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 7px 18px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.quick-buy-popup .quick-buy-modal__plan-select-container {
  border-radius: 100px;
  border: 1px solid #817ee1;
  font-size: 14px;
  line-height: 18px;
  min-width: 161px;
  background-color: transparent;
  position: relative;
}
.quick-buy-popup .select-icon-down {
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.quick-buy-popup .check {
  top: 23px;
  left: 16px;
  pointer-events: none;
}
.quick-buy-popup .quick-buy-modal__list-wrap {
  position: absolute;
  right: 16px;
  top: 14px;
}
@media screen and (max-width: 767px) {
  .quick-buy-popup .quick-buy-modal__list-price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .quick-buy-popup .quick-buy-modal__list-price-sale {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .quick-buy-popup .quick-buy-modal__list-price-text {
    font-size: 12px;
  }
}
.quick-buy-popup .shopify-product-form {
  width: 100%;
}
/*# sourceMappingURL=style.min.css.map */
