/*SETTINGS*/
:root {
   --mainColor: #453E2B;
   --beige: #B2A494;
   --platina: #D3C9BF;
}

* {
   box-sizing: border-box;
}

html {
   height: 100%;
   font-size: 16px;
}

html,
:has(:target) {
   scroll-behavior: smooth;
}

a {
   color: var(--mainColor);
   text-decoration: none;
   cursor: pointer;
   transition: 0.5s;
}

a:hover,
a:visited,
a:focus {
   color: var(--mainColor);
   text-decoration: none;
}

a:focus {
   outline: none;
   outline-offset: 0px;
}

.bg {
   display: none;
   content: "";
   position: fixed;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   background: rgba(24, 58, 79, 0.6);
   z-index: 99;
   opacity: 0;
}

img {
   display: block;
   max-width: 100%;
}

input,
textarea,
select,
button {
   font: inherit;
}

:where(ul, ol):where([class]) {
   padding-left: 0;
}

:where(ul[class]) {
   list-style: none;
}

:where(ul,
   ol,
   dl):where([class]) {
   margin-block: 0 !important;
}

p {
   --paragraphMarginBottom: 20px;
   margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
   margin-bottom: var(--paragraphMarginBottom);
}

@media (prefers-reduced-motion: reduce) {

   *,
   ::before,
   ::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
   }
}

#body {
   display: flex;
   flex-direction: column;
   min-height: 100%;
}

#content {
   flex: 1 0 auto;
}

footer {
   flex: 0 0 auto;
   background: #D3C9BF;
}

button {
   background: none;
   border: none;
   padding: 0;
   cursor: pointer;
}

section,
.ob-fit {
   position: relative;
}

.ob-fit img {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   object-fit: cover;
}

input::-moz-placeholder {
   color: var(--mainColor);
}

input::-webkit-input-placeholder {
   color: var(--mainColor);
}

textarea:-moz-placeholder {
   color: var(--mainColor);
}

textarea::-webkit-input-placeholder {
   color: var(--mainColor);
}

/*focus*/
:focus {
   outline: none;
   -moz-outline: 3px solid #fff !important;
}

button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"]>input[type="button"]::-moz-focus-inner {
   border: none;
}

input[type="radio"]:focus {
   -moz-outline-radius: 12px !important;
   -moz-outline-offset: 0px !important;
}

input[type="checkbox"]:focus {
   -moz-outline-offset: -1px !important;
   -moz-outline: 1px solid #000 !important;
}


/*-----All-----*/
.description {
   font-family: "Inter", sans-serif;
}

.description :where(h1,
   h2,
   h3,
   h4,
   h5,
   h6) {
   font-family: "Philosopher", sans-serif;
   font-weight: 700;
   margin-top: 0;
   margin-bottom: 20px;
}

.description ul,
.description ol {
   margin-block: 0;
   padding-left: 30px;
}

.description a:hover {
   color: var(--mainColor);
}

.description p:last-child {
   margin-bottom: 0px !important;
}

#mob-menu .language,
.d-none,
.bars {
   display: none;
}

/*--------*/
.title-h1,
.title-h2,
.title-h3 {
   font-family: "Philosopher", sans-serif;
   font-weight: 700;
   margin-top: 0;
   margin-bottom: 20px;
}

.title-h1 {
   font-size: clamp(3.25rem, -0.417rem + 6.11vw, 6rem);
   text-transform: uppercase;
}

.title-h1 span {
   color: var(--beige);
   text-shadow: none;
}

.item-product__name,
.title-h2,
h2 {
   font-size: clamp(1.5rem, 1.069rem + 1.84vw, 3rem);
   line-height: 1.1;
}

.title-h3,
h3 {
   font-size: clamp(1.125rem, 0.874rem + 1.07vw, 2rem);
   line-height: 1.1;
}

body {
   font-family: "Philosopher", sans-serif;
   font-size: clamp(1rem, 0.892rem + 0.46vw, 1.375rem);
   line-height: 1.2;
   height: 100%;
   width: 100%;
   margin: 0;
   min-width: 344px;
   color: var(--mainColor);
   background: #FAF9F6;
}

.container,
.container-big {
   width: 100%;
   margin-inline: auto;
   position: relative;
}

.container {
   padding-inline: 15px;
   max-width: 1710px;
}

.container-big {
   max-width: 1920px;
}

.description a,
.breadcrumb-item a:hover,
.language .active,
.menu-list .active,
.menu-list__link:hover {
   text-decoration: underline;
   text-decoration-thickness: 1px;
}

header:before,
.hero:before {
   content: "";
   height: 100%;
   width: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

.section-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
}

.section-padding {
   padding-block: clamp(2.5rem, 1.422rem + 4.6vw, 6.25rem);
}

.padding-text {
   padding-left: clamp(0rem, -0.718rem + 3.07vw, 2.5rem);
}

.padding-block {
   padding: clamp(0rem, -0.718rem + 3.07vw, 2.5rem);
}

.btn {
   display: inline-block;
   text-align: center;
   padding: 10px 30px;
   font-size: 20px;
   border: 1px solid var(--mainColor);
   transition: 0.5s;
   cursor: pointer;
   white-space: nowrap;
}

.btn:hover {
   background: var(--mainColor);
   color: #fff;
}

.section-firs {
   padding-top: 150px;
}