/* <--------------------------------------------------------- FONTS ---------------------------------------------------------> */
@font-face {
  font-family: "Montserrat-Black";
  src: url("fonts/Montserrat-Black.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-ExtraBold";
  src: url("fonts/Montserrat-ExtraBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url("fonts/Montserrat-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("fonts/Montserrat-SemiBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Medium";
  src: url("fonts/Montserrat-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Regular";
  src: url("fonts/Montserrat-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Light";
  src: url("fonts/Montserrat-Light.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-ExtraLight";
  src: url("fonts/Montserrat-ExtraLight.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Thin";
  src: url("fonts/Montserrat-Thin.ttf");
  font-display: swap;
}

/* <--------------------------------------------------------- ROOT ---------------------------------------------------------> */

:root {
  /**************************************** FONTS ****************************************/

  --font-black: "Montserrat-Black";
  --font-extrabold: "Montserrat-ExtraBold";
  --font-bold: "Montserrat-Bold";
  --font-semibold: "Montserrat-SemiBold";
  --font-medium: "Montserrat-Medium";
  --font-regular: "Montserrat-Regular";
  --font-light: "Montserrat-Light";
  --font-extralight: "Montserrat-ExtraLight";
  --font-thin: "Montserrat-Thin";

  /**************************************** COLORS ****************************************/

  --primary-color: linear-gradient(90deg, hsla(59, 86%, 68%, 1) 0%, hsla(134, 36%, 53%, 1) 100%);
  --btn-hover: linear-gradient(180deg, #394148 0%, #15191c 100%);
  --yellow: hsla(59, 86%, 68%, 1);
  --green: hsla(134, 36%, 53%, 1);
  --p-color: #666;
  --h-color: #000;
  --a-color: #666;
  --white-secondary: #f3f3f3;
  --black: #000000;
  --black-20: #cccccc;
  --black-80: #333333;
  --black-70: rgb(0, 0, 0, 70%);
  --black-60: rgb(0, 0, 0, 60%);
  --black-5: #eeeeee;
  --white: #ffffff;
  --white-80: #cccccc;
  --white-20: rgb(255, 255, 255, 20%);
  --white-60: rgb(255, 255, 255, 60%);
  --body-color: #fbfbfb;
  --border-radius: 5px;
  --btn-radius: 50px;
  --container-w: 90vw;
  --complementary-color: #394148;
  --hover-color: #50aab2;

  /**************************************** TRANSITIONS ****************************************/

  --transition-superfast: all 0.15s linear;
  --transition-fast: all 0.25s linear;
  --transition-medium: all 0.35s linear;
  --transition-slow: all 0.5s linear;

  /**************************************** DYNAMIC HEIGHT ****************************************/

  --dynamic-height: calc(var(--vh, 1vh) * 100);
  --header-height: --header-height;

  /**************************************** TEST ****************************************/
  --burger-size: --burger-size;
  --container-spacing: 5vw;
}

/* <--------------------------------------------------------- TYPOGRAPHY ---------------------------------------------------------> */

h1 {
  font-family: var(--font-semibold);
  font-size: min(max(24px, calc(1.5rem + ((1vw - 2.8px) * 1.8293))), 54px);
  color: var(--h-color);
}

h2 {
  font-family: var(--font-semibold);
  font-size: min(max(20px, calc(1.25rem + ((1vw - 2.8px) * 1.7073))), 48px);
  color: var(--h-color);
}

h3 {
  font-family: var(--font-medium);
  font-size: min(max(20px, calc(1.25rem + ((1vw - 2.8px) * 0.4878))), 28px);
  color: var(--h-color);
}

h4 {
  font-family: var(--font-medium);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
  color: var(--h-color);
}

p {
  font-family: var(--font-medium);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  color: var(--p-color);
}

p:last-of-type {
  margin-bottom: 0;
}

p:not(:last-of-type) {
  margin-bottom: 10px;
}

a {
  font-family: var(--font-medium);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  color: var(--a-color);
  transition: var(--transition-fast);
}

a:hover {
  text-decoration: none;
  color: var(--black);
  transition: var(--transition-fast);
}

strong {
  font-family: var(--font-bold);
}

ul li {
  font-family: var(--font-medium);
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.2439))), 16px);
}

/* <--------------------------------------------------------- GENERALS ---------------------------------------------------------> */

/**************************************** ALL CLASS ****************************************/

.mb_80 {
  margin-bottom: 80px;
}

.mt_80 {
  margin-top: 80px;
}

.mt_60 {
  margin-top: 60px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mt_50 {
  margin-top: 50px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mt_40 {
  margin-top: 40px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mt_30 {
  margin-top: 30px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mt_20 {
  margin-top: 20px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mt_10 {
  margin-top: 10px;
}

.pl_50 {
  padding-left: 50px;
}

.pr_50 {
  padding-right: 50px;
}

.h2mb_20 h2 {
  margin-bottom: 20px;
}

.section-space {
  margin-bottom: 100px;
}

.section-space-top {
  margin-top: 60px;
}
.pl-viewport {
  padding-left: 5vw !important;
}

@media (min-width: 1400px) {
  .col-xxl {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    max-width: 100%;
  }
  .col-xxl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/**************************************** CONTAINERS ****************************************/
body {
  background: var(--body-color);
}
.container {
  width: 90vw;
  max-width: 1920px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

.container-fluid {
  padding: 0;
}

main {
  margin-top: var(--header-height);
}

main:has(.hero-slider, .hero-section) {
  margin-top: 0px;
}

.hero-slider .module-image {
  opacity: 0;
  visibility: hidden;
}

/**************************************** BUTTONS ****************************************/

.btn-primary {
  background: var(--primary-color);
  border: none;
  border-radius: var(--btn-radius);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--black-70);
  font-family: var(--font-medium);

  background-size: 100% 100%;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: var(--black-70);
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: none;
  color: var(--black-70);
}

.btn-primary:hover {
  color: var(--black-70);
  background-size: 300% 100%;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-product {
  background: var(--primary-color);
  border: none;
  border-radius: var(--btn-radius);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--black-70);
  transition: var(--transition-fast);
  background-size: 100% 100%;
}

.btn-product:hover {
  background-size: 200% 100%;
  transition: var(--transition-fast);
}

.btn-primary svg path {
  stroke: var(--black-70);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--black-80);
  border-radius: var(--btn-radius);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--black-80);
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--black-80);
  transition: var(--transition-fast);
  color: var(--white);
}

.btn-secondary svg path {
  transition: var(--transition-fast);
}

.btn-secondary:hover svg path {
  stroke: var(--white);
  transition: var(--transition-fast);
}

.btn-secondary svg path {
  stroke: var(--black-80);
}

button:focus {
  outline: none;
}

.product-category-title .catalogue-button {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

/* <--------------------------------------------------------- NAVBAR ---------------------------------------------------------> */

header {
  top: 0;
  padding: 0;
  background: var(--body-color);
  position: fixed;
  width: 100%;
  z-index: 99999;
  transition: var(--transition-fast);
  padding: 20px 0;
}

header.fixed {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

header .header-inner {
  display: flex;
  gap: 2em;
}

header .navbar-nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 1em;
  height: 100%;
}

header .navbar-nav .main-nav-item.nav-item-level-1 {
  display: flex;
  height: 100%;
}

header .contact-btn svg {
  max-width: 18px;
  max-height: 18px;
}

header .contact-inner .module-contact a {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .contact-inner .module-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header .r-part {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

header #search {
  padding: 0;
  margin: 0;
}

header .navbar-brand {
  padding: 0;
  margin: 0;
}
header .search-wrapper {
  display: flex;
  height: 100%;
  align-items: center;
}
header .search-wrapper .search-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white-secondary);
  padding: 0px 18px;
  border-radius: 50px;
  max-height: 50px;
  min-height: 50px;
}

header .search-wrapper .search-input input {
  font-family: var(--font-medium);
  height: fit-content;
}

header .navbar-brand {
  display: flex;
  justify-content: center;
  border-radius: 5px;
}

header .navbar-brand img {
  max-height: 35px;
}

header .navbar-brand {
  background: var(--black);
  padding: 15px;
  width: fit-content;
  height: fit-content;
}

header #main-navbar {
  padding: 0;
  flex-grow: 1;
  position: inherit;
  gap: 1em;
}

header .btn-menu .menu-icon svg {
  stroke: var(--white-80);
  transition: 0.2s;
}

header .btn-menu .menu-icon svg g:first-child {
  opacity: 1;
  transition: opacity 0s 0.2s;
}

header .btn-menu .menu-icon svg line {
  transition: transform 0.2s 0.2s;
  transform: translateY(0px);
}

header .btn-menu .menu-icon svg g:last-child {
  opacity: 0;
  transition: opacity 0s 0.2s;
}
header .btn-menu .menu-icon svg g:last-child line {
  transition: transform 0.2s;
  transform: rotate(0deg);
  transform-origin: center;
}

header .btn-menu.open .menu-icon svg {
  stroke: var(--black);
}

header .btn-menu.open .menu-icon svg g:first-child {
  opacity: 0;
}
header .btn-menu.open .menu-icon svg g:first-child line {
  transition: transform 0.2s;
}
header .btn-menu.open .menu-icon svg g:first-child line:first-child {
  transform: translateY(3px);
}
header .btn-menu.open .menu-icon svg g:first-child line:last-child {
  transform: translateY(-3px);
}
header .btn-menu.open .menu-icon svg g:last-child {
  opacity: 1;
}
header .btn-menu.open .menu-icon svg g:last-child line {
  transition: transform 0.2s 0.2s;
}
header .btn-menu.open .menu-icon svg g:last-child line:first-child {
  transform: rotate(45deg);
}
header .btn-menu.open .menu-icon svg g:last-child line:last-child {
  transform: rotate(-45deg);
}

header .secondary-menu {
  display: flex;
  align-items: center;
}
/* header .secondary-menu .nav-item .nav-link {
  padding: 10px 15px;
} */

header .header-inner .navbar-nav .secondary-menu .nav-item .nav-link {
  background: transparent;
  border: none;
  /* font-family: var(--font-medium); */
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  /* color: var(--black); */
  display: flex;
  align-items: center;
  gap: 0.3em;
}

header #main-navbar-collapse .navbar-nav .secondary-menu .nav .nav-item .menu-dropdown {
  padding: 0;
  text-transform: uppercase;
  color: var(--black);
}

header .header-inner .navbar-nav .secondary-menu .nav-item .nav-link.menu-dropdown svg {
  transition: var(--transition-fast);
}

header .header-inner .navbar-nav .secondary-menu .nav-item .nav-link.menu-dropdown.active svg {
  transition: var(--transition-fast);
  transform: rotate(180deg);
}

header .secondary-menu .nav-item .nav-link svg path {
  stroke: var(--black);
}

header #main-navbar #main-navbar-collapse {
  gap: 2em;
}
@media screen and (min-width: 1200px) {
  header #main-navbar #main-navbar-collapse {
    height: 100%;
  }
}

header .nav-menu-dropdown {
  position: relative;
  z-index: 999999;
}

header .nav-menu_wrapper {
  --menu-offset: 20px;
  position: fixed;
  top: calc(var(--header-height) / 2 - 1px - var(--burger-size) / 2 - var(--menu-offset));
  left: calc(var(--container-spacing) - var(--menu-offset));
  display: grid;
  grid-template: auto / 1fr 1fr;
  width: calc(100% - (var(--container-spacing) - var(--menu-offset)) * 2);
  max-width: 60rem;
  height: calc(100% - (var(--header-height) / 2 - var(--burger-size) / 2 - var(--menu-offset)) - (var(--container-spacing) - var(--menu-offset)));
  max-height: 42.2222222222rem;
  padding: 20px;
  -webkit-clip-path: circle(calc(var(--burger-size) / 2) at calc(0% + (var(--menu-offset) + var(--burger-size) / 2)) calc(var(--menu-offset) + var(--burger-size) / 2));
  clip-path: circle(calc(var(--burger-size) / 2) at calc(0% + (var(--menu-offset) + var(--burger-size) / 2)) calc(var(--menu-offset) + var(--burger-size) / 2));
  opacity: 0;
  border-radius: 30px;
  background: var(--primary-color);
  color: #252323;
  pointer-events: none;
  transition: opacity 50ms linear 0.4s, -webkit-clip-path 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: clip-path 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53), opacity 50ms linear 0.4s;
  transition: clip-path 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53), opacity 50ms linear 0.4s, -webkit-clip-path 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: -1;
}

header .nav-menu_wrapper.menu-opened {
  -webkit-clip-path: circle(150% at calc(100% - (var(--menu-offset) + var(--burger-size) / 2)) calc(var(--menu-offset) + var(--burger-size) / 2));
  clip-path: circle(150% at calc(100% - (var(--menu-offset) + var(--burger-size) / 2)) calc(var(--menu-offset) + var(--burger-size) / 2));
  opacity: 1;
  pointer-events: all;
  transition: opacity 50ms linear, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 50ms linear;
  transition: clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 50ms linear, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header .nav-menu_wrapper .nav-menu-img {
  overflow: hidden;
  border-radius: 20px;
}

header .nav-menu_wrapper .nav-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: 1s cubic-bezier(0, 1.31, 1, 1);
}

header .nav-menu_wrapper.menu-opened .nav-menu-img img {
  transform: scale(1);
  transition: 1s cubic-bezier(0, 1.31, 1, 1);
}

header .btn-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  font-family: var(--font-medium);
  background: var(--primary-color);
  color: var(--white-80);
  padding: 9px 25px;
  border-radius: 25px;
  border: 0;
  transition: 0.3s cubic-bezier(0, 1.31, 1, 1);
}

header .btn-menu.open {
  background: var(--body-color);
  color: var(--black);
  transition: 0.3s cubic-bezier(0, 1.31, 1, 1);
}

header .nav-menu_wrapper .menu-nav-content {
  padding-top: calc(var(--burger-size) + var(--menu-offset));
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header .nav-menu_wrapper .menu-nav-content .navbar-nav .nav-item {
  overflow: hidden;
}

header .nav-menu_wrapper .menu-nav-content .navbar-nav .nav-link {
  color: var(--body-color);
  font-family: var(--font-regular);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.7317))), 28px);
  transform: translateY(100%);
  transition: 0.3s cubic-bezier(0, 1.31, 1, 1);
}

header .nav-menu_wrapper.menu-opened .menu-nav-content .navbar-nav .nav-link {
  transform: translateY(0);
}

header .nav-menu_wrapper .menu-nav-content .menu-nav-content-bot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

header .nav-menu_wrapper .menu-nav-content .menu-nav-content-bot a {
  color: var(--white-60);
  font-family: var(--font-light);
}

header .header-inner .gtranslate_wrapper .gt_switcher-popup img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 48px;
  max-height: 48px;
  border-radius: 100%;
  aspect-ratio: 4/4;
  background: var(--primary-color);
  opacity: 1;
  position: absolute;
  z-index: -1;
}

header .header-inner .gtranslate_wrapper .gt_switcher-popup > span {
  font-family: var(--font-regular);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  text-transform: uppercase;
  background: rgb(0, 0, 0, 50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--white);
}

.gt_white_content .gt_languages img {
  object-fit: cover;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.gt_white_content .gt_languages .glink {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-basis: auto;
  padding: 10px 0;
  border-bottom: 1px solid var(--black-20);
}

.gt_white_content .gt_languages .glink:last-of-type {
  border-bottom: none;
}
.gt_white_content .gt_languages .glink span {
  font-family: var(--font-regular);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.gt_white_content {
  border-radius: var(--border-radius);
  width: fit-content !important;
  height: auto !important;
  padding: 10px 20px !important;
}

.gtranslate_wrapper.gt_container-unisv1 {
  position: relative;
}

.navbar .navbar-nav .nav-item-level-1 .nav-link {
  text-transform: uppercase;
  color: var(--black);
  font-family: var(--font-medium);
  padding: 0;
}

/**************************************** MENU ****************************************/

header .secondary-menu .dropdown-menu-overlay {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  /* padding-top: 30px; */
  top: 100%;
}

header .secondary-menu .dropdown-menu-overlay.active {
  display: block;
}

header .secondary-menu .dropdown-menu {
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--black-20);
  border-top: 1px solid var(--black-20);
  width: 100%;
  height: calc(100vh - var(--header-height) - 15vh);
  overflow-y: auto;
  background: var(--body-color);
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner {
  display: grid;
  grid-template: auto / 1fr 1fr 1fr 2fr;
  gap: 30px;
  width: var(--container-w);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0;
  list-style: none;
}
header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-inner .submenu-item {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-inner .submenu-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-inner .submenu-main img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-inner .submenu-main .nav-img {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white-secondary);
  border-radius: 30px;
  max-height: 350px;
  overflow: hidden;
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-inner .submenu-main .nav-link {
  font-family: var(--font-semibold);
  color: var(--black);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
  padding: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black-20);
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-inner .submenu-item .nav-link {
  padding: 0;
}

/**************************************** MENU (CARDS) ****************************************/

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner {
  display: grid;
  grid-template: auto / 1fr 1fr;
  gap: 30px;
  padding: 0;
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card:nth-child(1),
header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card:nth-child(2) {
  background: var(--primary-color);
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card:nth-child(1) .nav-card-title .nav-title,
header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card:nth-child(2) .nav-card-title .nav-title {
  color: var(--black);
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card .nav-card-title .nav-title {
  margin-bottom: 0;
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card:nth-child(1) .nav-card-title .nav-card-description,
header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card:nth-child(2) .nav-card-title .nav-card-description {
  color: var(--black-70);
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card {
  border-radius: 30px;
  background: var(--white-secondary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card .card-link {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card .card-link .nav-card-title {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card .nav-img {
  display: flex;
  justify-content: end;
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card .nav-img img {
  max-width: 40px;
  max-height: 40px;
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card .nav-card-title .nav-title {
  color: var(--black);
  font-family: var(--font-semibold);
}

header .secondary-menu .dropdown-menu .dropdown-menu-inner .nav-cards-inner .nav-card .nav-card-title .nav-card-description {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  font-family: var(--font-regular);
}
/* <--------------------------------------------------------- DESPRE NOI ---------------------------------------------------------> */
/**************************************** HERO ****************************************/
.secondary_hero {
  min-height: 350px;
  align-items: center;
  padding-top: 50px;
  max-height: 500px;
}

.secondary_hero .secondary_hero_col {
  z-index: 1;
  position: relative;
}

.secondary_hero .secondary_hero_col .module-text {
  width: fit-content;
  background: var(--body-color);
  border-radius: 0 30px 30px 0;
  padding: 15px 30px 15px 0px;
  position: relative;
}

.secondary_hero h1 {
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  margin-bottom: 0;
}

.secondary_hero .secondary_hero_image img {
  border-radius: 40px;
  height: 100%;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.secondary_hero .secondary_hero_col::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: calc(-15px - 1.5rem);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../css/icons/border-top.svg);
  background-position: bottom left;
  background-size: cover;
}

.secondary_hero .secondary_hero_col::after {
  content: "";
  position: absolute;
  top: 100%;
  right: calc(-15px - 1.5rem);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../css/icons/border-bottom.svg);
  background-position: bottom left;
  background-size: cover;
}

/**************************************** GALLERY ****************************************/
/* .gallery_section .module-gallery {
  display: grid;
  grid-template: auto / repeat(3, 1fr);
  gap: 30px;
} */
.gallery_section figure {
  margin: 0;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.gallery_section figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* <--------------------------------------------------------- ACASA ---------------------------------------------------------> */

/**************************************** HERO ****************************************/
.hero-inner {
  height: calc(100vh - var(--header-height));
}

.hero-inner .text-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 1;
  justify-content: center;
  padding-top: 50px;
}

.hero-inner .text-inner .hero-title {
  width: fit-content;
  background: var(--body-color);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 15px 30px 15px 0px;
}

.hero-inner .text-inner .hero-title > * {
  white-space: nowrap;
  width: fit-content;
}

.hero-inner .hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-inner .slider-inner {
  display: flex;
  height: 100%;
  padding-bottom: 40px;
}

.hero-inner .slider-inner .module-gallery {
  width: 100%;
  margin-bottom: 0;
}

.hero-inner .slider-inner .module-gallery figure {
  height: 100%;
  width: 100%;
  margin: 0;
}

.hero-inner .slider-inner .module-gallery img {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}
.hero-inner .text-inner .hero-title-inner {
  position: relative;
}
.hero-inner .text-inner .hero-title-inner::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: calc(-30px - 1.5rem);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../css/icons/border-top.svg);
  background-position: bottom left;
  background-size: cover;
}

.hero-inner .text-inner .hero-title-inner::after {
  content: "";
  position: absolute;
  top: 100%;
  right: calc(-30px - 1.5rem);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../css/icons/border-bottom.svg);
  background-position: bottom left;
  background-size: cover;
}

.hero-inner .slider-inner .slick-dots {
  display: flex;
}
.hero-inner .slider-inner .slick-dots li {
  width: 100%;
  height: 5px;
  margin: 0;
  padding: 0;
}
.hero-inner .slider-inner .slick-dots li button {
  width: 100%;
  height: 5px;
  padding: 0;
  cursor: pointer;
  background: rgb(0, 0, 0, 20%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-inner .slider-inner .slick-dots li:first-child button {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.hero-inner .slider-inner .slick-dots li:last-child button {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.hero-inner .slider-inner .slick-dots li button::before {
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  content: "";
  text-align: center;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-inner .slider-inner .slick-dots li:first-child::before {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.hero-inner .slider-inner .slick-dots li:last-child::before {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.hero-inner .slider-inner .slick-dots li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: var(--white);
  z-index: 1;
}
.hero-inner .slider-inner .slick-dots li.slick-active::before {
  width: 100%;
  transition: all 2s linear;
}

.hero-inner .slider-inner .slick-arrows {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 0 20px;
}

.hero-inner .slider-inner .slick-arrows .slick-arrows-inner {
  display: flex;
  gap: 15px;
  order: 2;
}

.hero-inner .slider-inner .slick-arrows .slick-dots {
  position: static;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner .slider-inner .slick-dots .prev-arrow {
  order: -1;
}

.hero-inner .slider-inner .slick-arrows .slick-arrow {
  background: rgb(0, 0, 0, 20%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  padding: 15px 30px;
  border: none;
}

.hero-inner .slider-inner .slick-arrows .slick-arrow.next-arrow {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.hero-inner .slider-inner .slick-arrows .slick-arrow.prev-arrow {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.hero-inner .slider-inner .slick-list {
  height: 100%;
}

.hero-inner .slider-inner .slick-list .slick-track {
  height: 100%;
}

/**************************************** CARDS ****************************************/

.cards-section .card-inner:first-child .card-wrapper {
  background: var(--primary-color);
}
.modules-wrapper.card-wrapper {
  cursor: pointer;
  transition: all 0.2s linear;
  outline: 1px solid transparent;
}
.modules-wrapper.card-wrapper:hover {
  outline: 1px solid #0003;
}

.cards-section .card-inner:first-child .card-wrapper .card-body .card-title > * {
  color: var(--black);
}
.cards-section .card-inner:first-child .card-wrapper .card-body .card-description > * {
  color: var(--black-70);
}

.cards-section .card-inner .card-wrapper {
  background: var(--white-secondary);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 150px;
  height: 100%;
}
.cards-section .card-inner .card-wrapper .card-icon {
  display: flex;
  justify-content: flex-end;
}
.cards-section .card-inner .card-wrapper .card-icon img {
  max-width: 70px;
  max-height: 70px;
}

.cards-section .card-inner .card-wrapper .card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cards-section .card-inner .card-wrapper .card-body .card-title {
  margin: 0;
}

.cards-section .card-inner .card-wrapper .card-body .card-title a {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.6098))), 28px);
  font-family: var(--font-semibold);
  color: var(--black);
}

.cards-section .card-inner .card-wrapper .card-body .card-description > * {
  color: var(--black-60);
  font-family: var(--font-regular);
}

/**************************************** SECTION TEXT CARD ****************************************/
.container-fluid:has(.section-text-card) {
  background: var(--white-secondary);
}
.section-text-card {
  row-gap: 40px;
  width: calc(90vw + 30px);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-text-card .title-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}
.section-text-card .general-image {
  max-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-text-card .general-image .module-image {
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}

.section-text-card .general-image .module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-text-card .general-image.s-image .module-image {
  height: calc(100% - 100px);
}

.section-text-card .card-text .module-text {
  padding: 50px 50px 0px 50px;
  max-width: 480px;
  position: relative;
}

.section-text-card .card-text .module-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 170%;
  background: var(--primary-color);
  border-radius: 30px;
}

.section-text-card .card-text .module-text > * {
  color: var(--black-70);
  font-family: var(--font-light);
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.2439))), 22px);
  position: relative;
  z-index: 1;
}

/**************************************** CATEGORY CARD ****************************************/

.product-category-title .title-inner .module-text > * {
  text-align: center;
}

.product-category-title .title-inner .supratitle > * {
  font-family: var(--font-extrabold);
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
}

.product-category-cards {
  display: grid;
  grid-template: auto/repeat(5, 1fr);
  gap: 50px 30px;
}

.product-category-cards .category-card {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

/* .product-category-cards .category-card .card-image {
  position: relative;
  border-radius: 30px;
  background: var(--white-secondary);
  padding: 30px;
} */
.product-category-cards .category-card .card-image {
  position: relative;
  border-radius: 30px;
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
}

.product-category-cards .category-card .card-image .module-button {
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  background: rgb(255, 255, 255, 10%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
}

.product-category-cards .category-card .card-image:hover .module-button {
  opacity: 1;
  pointer-events: all;
  transition: var(--transition-fast);
}

.product-category-cards .category-card .card-image .module-image {
  position: relative;
  padding-top: 100%;
  padding-right: 100%;
}

.product-category-cards .category-card .card-image .module-image img {
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.product-category-cards .category-card .category-title {
  height: 100%;
}

.product-category-cards .category-card .category-title > * {
  text-align: center;
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.2439))), 22px);
  color: var(--black);
  font-family: var(--font-semibold);
}

.product-category-cards .category-card .card-image .module-button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-category-cards .category-view-all {
  grid-column: 1/6;
  max-width: 100%;
  width: 100%;
}

.product-category-cards .category-view-all .module-button {
  display: flex;
  justify-content: center;
}

/**************************************** SECTION TEXT IMG ****************************************/

.section-text-img {
  max-width: 1920px;
  width: calc(90vw + 30px);
  margin-left: auto;
  margin-right: auto;
  padding: 100px 0;
}

.container-fluid:has(.section-text-img) {
  background: var(--white-secondary);
}

.section-text-img .image-inner {
  display: grid;
  grid-template: auto auto / 1fr 1fr;
  gap: 30px;
}
.section-text-img .image-inner .module-image img {
  border-radius: 30px;
  height: 100vh;
  object-fit: cover;
}

.section-text-img .image-inner .module-image.img-contain img {
  object-fit: contain;
  background: rgb(0, 0, 0, 5%);
}

.section-text-img .image-inner .module-image:nth-child(1) {
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

.section-text-img .image-inner .module-image:nth-child(1) img {
  max-height: 460px;
}

.section-text-img .image-inner .module-image:nth-child(2) {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-text-img .image-inner .module-image:nth-child(2) img {
  max-height: 560px;
}

.section-text-img .image-inner .module-image:nth-child(3) {
  grid-row: 2 / 2;
  grid-column: 1 / 1;
}

.section-text-img .image-inner .module-image:nth-child(3) img {
  max-height: 270px;
}

.section-text-img .text-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

/**************************************** NEWS CARD ****************************************/

.news-section {
  gap: 50px;
}

.news-section .news-section-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.news-grid {
  display: grid;
  grid-template: auto / 1fr 1fr;
  gap: 30px;
  margin-left: auto;
  margin-right: auto;
}

.news-grid .news-item-wrapper:nth-child(1) {
  grid-row: 1/4;
}

.news-grid .news-item-wrapper:nth-child(1) .news-title .text {
  display: none;
}

.news-grid .news-item-wrapper:nth-child(1) .news-title .title > * {
  font-size: min(max(20px, calc(1.25rem + ((1vw - 2.8px) * 1.3415))), 42px);
  color: var(--black);
}

.news-grid .news-item-wrapper:nth-child(1) .news-item-inner {
  flex-direction: column;
}

.news-grid .news-item-wrapper:nth-child(2),
.news-grid .news-item-wrapper:nth-child(3),
.news-grid .news-item-wrapper:nth-child(4) {
  grid-column: 2/2;
}

.news-grid .news-item-wrapper:nth-child(2) .news-item,
.news-grid .news-item-wrapper:nth-child(3) .news-item,
.news-grid .news-item-wrapper:nth-child(4) .news-item {
  display: flex;
  height: 100%;
}

.news-grid .news-item-wrapper:nth-child(2) .news-item-inner,
.news-grid .news-item-wrapper:nth-child(3) .news-item-inner,
.news-grid .news-item-wrapper:nth-child(4) .news-item-inner {
  display: grid;
  grid-template: auto / 0.4fr 1fr;
}

.news-grid .news-item-inner {
  display: flex;
  gap: 30px;
}

.news-grid .news-item-inner .news-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.news-grid .news-item-inner .news-content .news-tag .tag {
  display: flex;
  width: fit-content;
  border: 1px solid var(--black-20);
  border-radius: 50px;
  padding: 10px 20px;
}

.news-grid .news-item-inner .news-content .news-tag .tag > * {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.2439))), 16px);
  font-family: var(--font-regular);
}

.news-grid .news-item-inner .news-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.news-grid .news-item-wrapper:nth-child(2) .news-item-inner .news-title .title > *,
.news-grid .news-item-wrapper:nth-child(3) .news-item-inner .news-title .title > *,
.news-grid .news-item-wrapper:nth-child(4) .news-item-inner .news-title .title > * {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.9756))), 34px);
  color: var(--black);
}

.news-grid .news-item-wrapper:nth-child(2) .news-item-inner .news-title,
.news-grid .news-item-wrapper:nth-child(3) .news-item-inner .news-title,
.news-grid .news-item-wrapper:nth-child(4) .news-item-inner .news-title {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-grid .news-item-wrapper:nth-child(3) .news-item-inner .news-title .text,
.news-grid .news-item-wrapper:nth-child(2) .news-item-inner .news-title .text,
.news-grid .news-item-wrapper:nth-child(4) .news-item-inner .news-title .text {
  font-family: var(--font-regular);
}

/* News item categ */
.news_item_title {
  font-size: 22px;
  margin-top: 15px;
}
.news_item_image img {
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}
.news_inner_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.short-description {
  flex-grow: 1;
}
/**************************************** VIEW NEWS ****************************************/

.similar-post-grid {
  gap: 20px;
  margin: 0;
}

.similar-post-grid .post_card {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(0, 0, 0, 20%);
}
.similar-post-grid .post_card .post-view-card .card-image .card-img-top {
  background: var(--secondary-color);
  border-radius: 10px;
}

.similar-post-grid .post_card .post-view-card .card-image {
  max-width: 150px;
  width: 100%;
}

.similar-post-grid .post_card .post-view-card .card-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.similar-post-grid .post_card .post-view-card {
  display: flex;
  gap: 15px;
}

.similar-post-grid .post_card .post-view-card .post-card-body .post-title-date .card-content .card-title-text .card-title {
  margin-bottom: 0;
}

.similar-post-grid .post_card .post-view-card .post-card-body .post-title-date .card-content .card-title-text .card-title a {
  font-weight: 500;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  transition: var(--transition-fast);
  color: var(--primary-color);
}

.similar-post-grid .post_card .post-view-card .post-card-body .post-title-date .card-content .card-title-text .card-title a:hover {
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.similar-post-grid .post_card .post-view-card .post-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}

.similar-post-grid .post_card .post-view-card .post-card-body .post-title-date .categ-and-date {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.similar-post-grid .post_card .post-view-card .post-card-body .post-title-date .categ-and-date .date-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.similar-post-grid .post_card .post-view-card .post-card-body .post-title-date .categ-and-date .date-container,
.similar-post-grid .post_card .post-view-card .post-card-body .post-title-date .categ-and-date .categ-container a {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  color: var(--black);
  font-family: var(--font-regular);
}

.similar-post-grid .post_card .post-view-card .post-card-body .post-title-date .categ-and-date .date-container svg,
.similar-post-grid .post_card .post-view-card .post-card-body .post-title-date .categ-and-date .categ-container svg {
  max-width: 16px;
  max-height: 16px;
}

.similar-post-inner {
  position: sticky;
  top: var(--header-height);
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px;
}

.similar-post-grid .post_card .post-view-card .post-card-body .btn-read-more {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
  color: var(--primary-color);
  font-weight: 500;
  width: fit-content;
}

.similar-post-grid .post_card .post-view-card .post-card-body .btn-read-more svg path {
  stroke: var(--black);
}

.similar-post-grid .post_card .post-view-card .post-card-body .btn-read-more:hover {
  color: var(--black);
  transition: var(--transition-fast);
}

.similar-post-grid .post_card .post-view-card .post-card-body .btn-read-more:hover svg path {
  stroke: var(--black);
  transition: var(--transition-fast);
}

.similar-post-grid .post_card .post-view-card .post-card-body .btn-read-more svg path {
  transition: var(--transition-fast);
}

.similar-post-grid .post_card .post-view-card .post-card-body .btn-read-more:hover svg {
  transition: var(--transition-fast);
  transform: translateX(5px);
}

.similar-post-grid .post_card .post-view-card .post-card-body .btn-read-more svg {
  transition: var(--transition-fast);
}

.similar-post-grid .post_card .post-view-card .post-card-body .btn-read-more svg {
  max-width: 14px;
  max-height: 14px;
}

.similar-post-inner .similar-post-title {
  font-family: var(--font-medium);
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.6098))), 28px);
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  border-bottom: 1px solid rgb(0, 0, 0, 10%);
  color: var(--black);
}

.page-description-inner {
  border-right: 1px solid rgb(0, 0, 0, 10%);
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-description-inner .empty-img {
  background: var(--primary-color);
}

.page-description-inner .page-description {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.page-description-inner img {
  border-radius: 30px;
  max-height: 600px;
  object-fit: cover;
}
.breadcrumbs-container {
  background: rgb(0, 0, 0, 3%);
  border-top: 1px solid rgb(0, 0, 0, 10%);
}
.breadcrumbs-container .breadcrumbs-inner {
  margin: 0;
  padding: 15px 0;
  flex-wrap: nowrap;
  gap: 20px;
}

.breadcrumbs-container .breadcrumbs-inner .breadcrumb {
  background: transparent;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.breadcrumbs-container .breadcrumbs-inner nav::-webkit-scrollbar {
  display: none;
}

.breadcrumbs-container .breadcrumbs-inner nav {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.breadcrumbs-container .breadcrumbs-inner .breadcrumb svg {
  max-height: 10px;
  min-width: 8px;
}

.breadcrumbs-container .breadcrumbs-inner nav {
  margin: auto;
  overflow-x: auto;
}

.breadcrumbs-container .breadcrumbs-inner .back-button {
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumbs-container .breadcrumbs-inner .back-button .icon-wrapper {
  display: flex;
  align-items: center;
}

.breadcrumbs-container .breadcrumbs-inner .back-button .icon-wrapper svg path {
  stroke: var(--p-color);
}

.breadcrumbs-container .breadcrumbs-inner .breadcrumb li a {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  color: var(--black);
}

.breadcrumbs-container .breadcrumbs-inner .breadcrumb li {
  font-family: var(--font-medium);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  color: var(--black-70);
  white-space: nowrap;
}

.breadcrumbs-container .breadcrumbs-inner .breadcrumb svg path {
  stroke: var(--black);
}

.page-post-inner {
  margin-top: 50px;
  margin-bottom: 50px;
}

.similar-post-inner .similar_posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.similar-post-inner .follow-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--black-20);
  border-radius: var(--border-radius);
}

.similar-post-inner .follow-us .social-media .social-media-items {
  gap: 10px;
}

.similar-post-inner .follow-us .social-media .social-media-items .nav-item .nav-link {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
}

.similar-post-inner .follow-us .social-media .social-media-items .nav-item .nav-link:hover {
  transition: var(--transition-fast);
  background: var(--primary-color);
}
.similar-post-inner .follow-us .social-media .social-media-items .nav-item .nav-link svg path {
  transition: var(--transition-fast);
}
.similar-post-inner .follow-us .social-media .social-media-items .nav-item .nav-link:hover svg path {
  transition: var(--transition-fast);
  fill: var(--white);
}

.similar-post-inner .follow-us .follow-us-title {
  font-family: var(--font-medium);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
}

.page-description-inner .blog-buttons-wrapper .blog-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-description-inner .blog-buttons-wrapper .blog-share .icon-section .share-icon svg {
  max-width: 40px;
  max-height: 40px;
}

.page-description-inner .blog-buttons-wrapper .blog-share .icon-section {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-description-inner .blog-buttons-wrapper .blog-share .share-title {
  font-family: var(--font-medium);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
}

.page-description-inner .blog-buttons-wrapper .blog-share .icon-section a {
  display: flex;
}

.page-description-inner .blog-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-description-inner .blog-buttons-wrapper .blog-share {
  padding: 15px 0;
  border-top: 1px solid rgb(0, 0, 0, 10%);
  border-bottom: 1px solid rgb(0, 0, 0, 10%);
  flex-wrap: wrap;
}

.page-description-inner .blog-buttons-wrapper .post-buttons {
  display: flex;
  justify-content: space-between;
}

.page-post .page-description-inner .page-description img {
  width: 100%;
  height: auto;
}

/* Cards */
.post-grid {
  row-gap: 30px;
}
.post-grid .post-card .post-view-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-grid .post-card .post-view-card .post-card-body {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 20px;
  background: var(--white);
  height: 100%;
  border-radius: 0 0 20px 20px;
  border: 1px solid rgb(0, 0, 0, 10%);
  border-top: none;
}

.post-grid .post-card .post-view-card .card-image {
  position: relative;
  padding-top: 60%;
}

.post-grid .post-card .post-view-card .card-image .card-img-top {
  border-radius: 20px 20px 0 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-grid .post-card .post-view-card .card-image .card-img-top.empty-img {
  object-fit: contain;
  background: var(--primary-color);
}

.post-grid .post-card .post-view-card .post-card-body .categ-and-date {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(0, 0, 0, 20%);
}

.post-grid .post-card .post-view-card .post-card-body .categ-and-date span {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-regular);
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  color: var(--black);
}

.post-grid .post-card .post-view-card .post-card-body .categ-and-date span a {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  color: var(--black);
  font-family: var(--font-regular);
}

.post-grid .post-card .post-view-card .post-card-body .card-content .card-title-text .card-title {
  margin: 0;
  text-transform: lowercase;
}

.post-grid .post-card .post-view-card .post-card-body .card-content .card-title-text .card-title::first-letter {
  text-transform: uppercase;
}

.post-grid .post-card .post-view-card .post-card-body .card-content .card-title-text .card-text {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  font-family: var(--font-regular);
}

.post-grid .post-card .post-view-card .post-card-body .card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  height: 100%;
  justify-content: space-between;
}
.post-grid .post-card .post-view-card .post-card-body .card-content .card-title-text {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.post-grid .post-card .post-view-card .post-card-body .card-content .btn-read-more {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-medium);
  width: fit-content;
}
.post-grid .post-card .post-view-card .post-card-body .card-content .card-title-text .card-title > * {
  font-family: var(--font-semibold);
  color: var(--primary-color);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
}

.article-section .article-wrapper {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.article-section .article-wrapper .title > * {
  text-align: center;
}

.article-section .container > .row {
  gap: 2em;
}

.article-section .article-view-all {
  display: flex;
  justify-content: center;
}

.categories-page .products-inner .category-title {
  text-align: center;
  margin-bottom: 40px;
}

/**************************************** SECTION OUT IMAGE ****************************************/

.section-out-image {
  background: var(--white-secondary);
  border-radius: 30px;
  padding: 60px;
  margin-top: 230px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section-out-image .image-inner {
  padding: 0;
  transform: translate3d(60px, 60px, 10px);
  margin-top: -250px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.section-out-image .text-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.section-out-image .text-inner .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/**************************************** SECTION OUT IMAGE ****************************************/

footer {
  background: var(--primary-color);
}

footer .footer-content {
  padding: 100px 0;
}

footer .footer-content .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .footer-content .footer-logo .logo-footer-img {
  background: var(--black);
  padding: 20px;
  border-radius: 10px;
  width: fit-content;
  height: fit-content;
}

footer .footer-content .footer-logo .footer-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

footer .footer-content .footer-logo .module-contact ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

footer .footer-content .footer-logo .module-contact li a {
  color: var(--black);
  font-family: var(--font-regular);
}

footer .footer-content .footer-logo .module-social ul {
  display: flex;
  gap: 15px;
}

footer .footer-links .title * {
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
  color: var(--black);
  font-family: var(--font-semibold);
}

footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

footer .footer-links .footer-category ul {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

footer .footer-links .links * {
  color: var(--black-70);
  font-family: var(--font-regular);
}

.container-fluid:has(.footer-copyright) {
  border-top: 1px solid rgb(0, 0, 0, 10%);
}

footer .footer-copyright {
  padding: 30px 0;
  width: 90vw;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

footer .footer-copyright .gdpr-icon {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

footer .footer-copyright .copyright-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer .footer-copyright .copyright-content p {
  color: var(--black-70);
  font-family: var(--font-regular);
}

/* <--------------------------------------------------------- PRODUCTS VIEWS ---------------------------------------------------------> */

/**************************************** PRODUCT LOOP ****************************************/

/* BREADCRUMBS */

.breadcrumbs {
  background: var(--black-5);
}

.breadcrumbs nav {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.breadcrumbs .breadcrumb {
  background: transparent;
  gap: 10px;
  flex-wrap: nowrap;
  display: inline-flex;
  padding: 15px 0;
}

.breadcrumbs nav::-webkit-scrollbar {
  display: none;
}

.breadcrumbs .breadcrumb li {
  white-space: nowrap;
}

.breadcrumbs .breadcrumb li a {
  white-space: nowrap;
}

.breadcrumbs .breadcrumb .breadcrumb-item.active {
  font-family: var(--font-medium);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  color: var(--black);
}

.breadcrumbs .breadcrumb li:not(.active) {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* PRODUCT */
.products-inner {
  padding-left: 30px;
}

.products-inner .products-count {
  color: var(--black);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.3659))), 20px);
  font-family: var(--font-semibold);
  padding: 20px 0;
}
.products-grid {
  row-gap: 30px;
}
.products-grid .product-item-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.products-grid .product-item-inner .product-image-wrapper {
  border: 1px solid var(--black-5);
  border-radius: 10px;
}

.products-grid .product-item-inner .product-image-wrapper img {
  transform: scale(1);
  transition: var(--transition-fast);
  padding: 30px;
}

.products-grid .product-item-inner .product-image-wrapper:hover img {
  transform: scale(1.1);
  transition: var(--transition-fast);
}

.products-grid .product-item-inner .product-image-wrapper .image-overflow {
  overflow: hidden;
}

.products-grid .product-item-wrapper .product-item {
  display: flex;
  height: 100%;
}
.products-grid .product-item-inner .product-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  height: 100%;
}
.products-grid .product-item-inner .product-body .product-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  justify-content: space-between;
}
.products-grid .product-item-inner .product-body .product-title .title {
  color: var(--black);
  font-size: 14px;
  font-family: var(--font-semibold);
  margin-bottom: 0;
  text-transform: uppercase;
}

.products-grid .product-item-inner .product-body .product-title .product-description {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.2439))), 16px);
}

.products-grid .product-item-inner .product-body .btn-product {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.2439))), 16px);
  padding: 12px 30px;
}

.products-inner .products-grid .info-message {
  display: flex;
  width: 100%;
  justify-content: center;
}
.products-inner .products-grid .info-message > * {
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.7317))), 28px);
  font-family: var(--font-semibold);
  color: var(--black);
}

/* PRODUCT VIEW */

.image_sp_product {
  max-height: 500px;
  object-fit: contain;
  width: 100%;
  padding: 15px;
  transition: all 0.15s linear;
}
.product_sp_image {
  height: fit-content;
  position: sticky;
  top: 150px;
  background: var(--white-secondary);
  border-radius: 30px;
}
.product_sp_description {
  position: relative;
  transition: all 0.2s linear;
  height: fit-content;
  max-height: 100%;
  overflow: visible;
}
.product_sp_description::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(251, 251, 251);
  background: linear-gradient(0deg, rgba(251, 251, 251, 1) 0%, rgba(0, 0, 0, 0) 65%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
}
.product_sp_description.adjusted_height::before {
  opacity: 1;
}
.product_sp_description.adjusted_height {
  max-height: 300px;
  overflow: hidden;
}
.read_more_btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: fit-content;
  background: var(--btn-hover);
  border: unset;
  color: #fff;
  padding: 3px 12px;
  border-radius: 9999px;
  font-size: 14px;
  font-family: var(--font-regular);
  transition: all 0.1s linear;
}

.product_sp_description h3 {
  font-size: 24px;
  font-family: var(--font-semibold);
  margin-top: 20px;
}
.product_sp_description li {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  color: #666666;
}
.product_sp_description li::marker {
  color: #15191c;
}
/* Breadcrumbs */
.breadcrums_container {
  background: #eee;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.breadcrums_container .breadcrumb_item {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  color: #000;
  font-family: var(--font-medium);
}
.breadcrums_container .breadcrumb_item.disabled {
  color: #666;
}
.breadcrums_container svg {
  max-width: 6px;
}
.breadcrums_container svg path {
  stroke: #666;
}
.card_pdf_info {
  padding: 50px;
  background: var(--white-secondary);
  height: 100%;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}
.info_card {
  flex-grow: 1;
}
.icon_card {
  width: 90px;
  height: 90px;
  display: flex;
  background: var(--primary-color);
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50%;
}
.info_card h3 {
  font-family: var(--font-semibold);
}
.info_card u {
  color: #000;
}

/* Table specs */
.table_specs table {
  background: #eee;
  border: unset;
  border-radius: 20px;
  overflow: hidden;
}
.table_specs table tbody tr:last-of-type td:first-of-type {
  border-bottom: unset;
  border-left: unset;
}
.table_specs table tbody tr:last-of-type td {
  border-bottom: unset;
  border-right: unset;
}
.table_specs table tbody tr td:first-of-type {
  border-left: unset;
}
.table_specs table tbody tr td:last-of-type {
  border-right: unset;
}
.table_specs table tbody tr:last-of-type td:last-of-type {
  border-right: unset;
}
.table_specs table * {
  border-color: #ddd;
}
.table_specs thead th {
  padding: 10px;
  text-align: center;
  border: unset;
  border-right: 1px solid #fff;
  font-family: var(--font-regular);
}

.table_specs thead th {
  color: #000;
  margin: 0;
  font-size: 14px;
  font-family: var(--font-regular);
  width: 16.666666%;
}

.table_specs thead th:last-of-type {
  border: unset;
  border-right: unset;
}
.table_specs thead tr {
  background: var(--primary-color);
}
.table_specs td {
  text-align: center;
  padding: 5px;
}
.product_sp_description img {
  width: 100%;
  height: auto;
  max-width: 550px;
  object-fit: contain;
  margin-top: 20px;
}

/* Style table features */
.product_sp_description table {
  width: 100% !important;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 16px;
  background: var(--primary-color);
  border-radius: 10px;
  overflow: hidden;
  max-width: 700px;
  border: unset;
}
.product_sp_description th,
.product_sp_description td {
  border: 1px solid #ffffff;
  padding: 10px;
  text-align: left;
}
.product_sp_description th {
  border: unset;
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}
.product_sp_description th:last-of-type {
  border-right: unset !important;
}
.product_sp_description tbody tr:nth-child(even) {
  background-color: #f2f2f290;
}
.product_sp_description tr:first-of-type td {
  border-top: unset;
}
.product_sp_description tr:last-of-type td {
  border-bottom: unset;
}
.product_sp_description tr td:first-of-type {
  border-left: unset;
}
.product_sp_description tr td:last-of-type {
  border-right: unset;
}

.pdf_info_toggle {
  display: none;
  position: absolute;
  left: 0;
  z-index: 99;
}
.pdf_info_container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: var(--white-secondary);
  border: 1px solid rgb(0, 0, 0, 10%);
  border-radius: 15px;
  margin-top: 10px;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 0px;
}

.pdf_info_container .document_button {
  display: flex;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  color: var(--black);
  transition: var(--transition-fast);
  white-space: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pdf_info_container .document_button::-webkit-scrollbar {
  display: none;
}

.pdf_info_container .document_button:hover {
  transition: var(--transition-fast);
  color: var(--hover-color);
}

.pdf_info_toggle .pdf_info_container .document_button_wrapper {
  display: flex;
  gap: 1em;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 15px;
  background: rgb(0, 0, 0, 0%);
  transition: var(--transition-fast);
}

.pdf_info_toggle .pdf_info_container .document_button_wrapper:hover {
  background: rgb(0, 0, 0, 10%);
  transition: var(--transition-fast);
}

.pdf_info_toggle .pdf_info_container .document_button_wrapper .document_view_download {
  display: flex;
  align-items: center;
}

.pdf_info_toggle .pdf_info_container .document_button_wrapper .document_view_download a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.pdf_info_toggle .pdf_info_container .document_button_wrapper .document_view_download a svg path {
  transition: var(--transition-fast);
}

.pdf_info_toggle .pdf_info_container .document_button_wrapper .document_view_download a:hover svg path {
  transition: var(--transition-fast);
  stroke: var(--hover-color);
}

.pdf_info_container .document_view_download svg {
  max-width: 18px;
  max-height: 18px;
}

.pdf_info_container .document_button_wrapper:not(:last-of-type) {
  border-bottom: 1px solid rgb(0, 0, 0, 10%);
}

.pdf_info_container .document_button svg {
  max-width: 20px;
  min-width: 20px;
}

.download_info_btn {
  background: #fff;
  padding: 7px 15px;
  border-radius: 50px;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  color: #000;
  border: 1px solid #0004;
  font-size: 12px;
}
.download_info_btn path {
  stroke: #000;
}

.show_files {
  background: var(--white-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  gap: 0.5em;
  width: fit-content;
  transition: var(--transition-fast);
  border: 1px solid rgb(0, 0, 0, 10%);
}

.show_files.active .arrow-down {
  transform: rotate(180deg);
  transition: var(--transition-fast);
  transform-origin: center;
}

.show_files svg {
  max-width: 18px;
  max-height: 18px;
  width: auto;
}

.show_files .arrow-down {
  max-width: 10px;
  max-height: 10px;
  transition: var(--transition-fast);
}

/* Product gallery */
.custom_arrows {
  position: absolute;
  height: 50px;
  width: 50px;
  border: none;
  border-radius: 12px;
  background: var(--primary-color);
  top: calc(50% - 25px);
  z-index: 2;
}
.custom_arrows svg path {
  stroke: #000;
}
.custom_arrows.next-arrow.slick-arrow {
  right: 20px;
}
.custom_arrows.prev-arrow.slick-arrow {
  left: 20px;
}
.slick-slide {
  min-height: unset;
}

/* Zoom gallery */
.wrapper {
  display: flex;
  height: 100vh;
  width: 600px;
  height: 400px;
  margin: 10px auto;
}

.right {
  flex: 1 1 auto;
  max-width: 50%;
  height: 400px;
  position: absolute !important;
  width: 400px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #0003;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
}

.left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.left > img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.product_page .right {
  position: relative;
  overflow: hidden;
  display: none;
}

.product_page .product_description {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product_page .product_cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product_page .product_cta .documents-btn {
  position: relative;
}

.product_page .inner {
  position: absolute;
  width: 400%;
  height: 400%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner > img {
  width: 100%;
  height: auto;
}

/* Afisare tipuri tencuiala */
.tip_tencuiala_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 15px;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}
.tip_tencuiala_item img {
  height: 300px;
}
.tip_tencuiala_item h3 {
  font-size: 14px;
  margin-top: 0;
  text-align: center;
}
.custom_card_body {
  background: transparent;
  margin-top: 1rem;
  border-radius: 25px;
}

.product_page .container-certificat-si-catalog .row-certificat-si-catalog {
  row-gap: 30px;
}

/* CATEGORY PAGE */
.categories-page {
  margin: 50px 0;
}
/* FILTERS */
.categories-page .filters-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.categories-page .filters-inner .filters-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.categories-page .filters-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
  border: 1px solid var(--black-5);
  border-radius: 10px;
}
.categories-page .filters-inner .filters-menu .categories .main-category .main-category-wrapper {
  background: var(--black-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--border-radius);
  gap: 10px;
}

.categories-page .filters-inner .filters-menu .categories .main-category .main-category-wrapper .main-category-link {
  color: var(--black);
  font-family: var(--font-semibold);
  font-size: 13px;
  transition: var(--transition-superfast);
  text-transform: uppercase;
  padding: 10px 20px;
  width: 100%;
}

.categories-page .filters-inner .filters-menu .categories .main-category .main-category-wrapper.active .main-category-link {
  color: var(--hover-color);
}

.categories-page .filters-inner .filters-menu .categories .main-category .main-category-wrapper .main-category-link:hover {
  color: var(--hover-color);
  transition: var(--transition-superfast);
}

.categories-page .filters-inner .filters-menu .categories .main-category .main-category-wrapper .subcategories-dropdown {
  padding: 10px 20px;
  background: transparent;
  border: none;
}

.categories-page .filters-inner .filters-menu .categories .main-category .main-category-wrapper .subcategories-dropdown svg path {
}

.categories-page .filters-inner .filters-menu .categories .main-category .main-category-wrapper .subcategories-dropdown:hover svg path {
  stroke: var(--hover-color);
}

.categories-page .filters-inner .filters-menu .categories .main-category .main-category-wrapper .subcategories-dropdown.active svg .line-1 {
  transform: scaleY(0);
  transform-origin: center;
}

.categories-page .filters-inner .filters-menu .categories .subcategories {
  display: none;
  padding-left: 20px;
  padding-top: 15px;
}

.categories-page .filters-inner .filters-menu .categories .subcategories .subcategory-wrapper {
  padding: 5px 0;
}

.categories-page .filters-inner .filters-menu .categories .subcategories .subcategory-wrapper .subcategory {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.2439))), 16px);
  transition: var(--transition-superfast);
}

.categories-page .filters-inner .filters-menu .categories .subcategories .subcategory-wrapper.active .subcategory {
  color: var(--hover-color);
}

.categories-page .filters-inner .filters-menu .categories .subcategories .subcategory-wrapper .subcategory:hover {
  color: var(--hover-color);
  transition: var(--transition-superfast);
}

/* PAGINATION  */

.pagination {
  margin-bottom: 0;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding-top: 40px;
}
.pagination .disabled {
  display: none;
}

.pagination li {
  width: 37px;
  height: 37px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.pagination li:hover {
  background: var(--primary-color);
}

.pagination li:hover a {
  /* color: var(--white); */
}

.pagination li a {
  color: var(--black);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.2439))), 16px);
}

.pagination li a svg path {
  stroke: var(--black);
  /* transition: var(--transition-fast); */
}

.pagination li a:hover svg path {
  /* transition: var(--transition-fast); */
}

.pagination li a svg {
  max-height: 16px;
}

.pagination li a:hover {
  text-decoration: none;
}

.pagination .active {
  background: var(--primary-color);
  border: none;
}

.pagination .active a {
  color: var(--black-70);
}

.pagination .active a:hover {
  text-decoration: none;
}

/* <--------------------------------------------------------- SEARCH ---------------------------------------------------------> */

.search-wrapper {
  position: relative;
}

.search-wrapper .search-results {
  position: absolute;
  width: 100%;
  background: var(--white-secondary);
  top: 100%;
  max-height: 50vh;
  overflow: auto;
  border-radius: 10px;
}

.search-wrapper .search-input .close-search {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  padding: 5px;
}

.search-wrapper .search-input .close-search svg {
  width: 10px;
  height: 10px;
}

.search-wrapper .search-results .search-result-inner {
  display: flex;
  padding: 15px;
  align-items: center;
  gap: 1em;
}

.search-wrapper .search-results .search-result-inner img {
  max-height: 70px;
  max-width: 70px;
  margin: 0;
  border: 1px solid var(--black-20);
  border-radius: 5px;
  padding: 5px;
}

.search-wrapper .search-results .search-result-inner .result-title {
  font-family: var(--font-regular);
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.2439))), 16px);
}

.search-wrapper .search-results ul {
  margin: 0;
}

/* <--------------------------------------------------------- CONTACT ---------------------------------------------------------> */
#requested_product {
  font-family: var(--font-semibold);
}
.contact-form-wrapper {
  top: calc(var(--header-height) + 20px);
  position: sticky;
  height: fit-content;
}
.contact-form-wrapper .c-form {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.contact-form-wrapper .c-form .form-buttons {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.contact-form-wrapper .c-form .form-buttons .form-group {
  margin: 0;
}

.contact-form-wrapper .c-form .form-buttons .form-group .acceptance label {
  margin: 0;
}

.contact-form-wrapper .c-form .form-buttons .form-group .acceptance .checkbox-text {
  color: var(--black);
  font-family: var(--font-regular);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.contact-form-wrapper .c-form .form-buttons .form-group .acceptance .checkbox-text a {
  color: var(--black);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.contact-form-wrapper .c-form .contact-form-col .form-group {
  margin: 0;
}

.contact-form-wrapper .c-form .contact-form-col .form-group .form-control {
  background: transparent;
  border: 1px solid var(--black-20);
  border-radius: 10px;
  height: 55px;
  padding: 10px 20px;
}

.contact-form-wrapper .c-form .contact-form-col .form-group .form-control::placeholder {
  font-family: var(--font-medium);
}

.contact-form-wrapper .c-form .contact-form-col .form-group-textarea .form-control {
  background: transparent;
  border: 1px solid var(--black-20);
  border-radius: 10px;
  padding: 20px;
  height: 110px;
}

.contact-form-wrapper .c-form .contact-form-col .form-group-textarea .form-control::placeholder {
  font-family: var(--font-medium);
}

.contact-form-wrapper .c-form .contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.title-header .title-inner {
  padding-top: 2em;
  padding-bottom: 2em;
}

.title-header .title-inner .module-text {
  text-align: center;
}

.contact-inner .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.contact-inner .contact-cards .card-icon img {
  max-height: 70px;
  max-width: 70px;
}

.contact-inner .contact-cards .card-content strong {
  color: var(--black);
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.6098))), 28px);
}

.contact-inner .contact-cards .card-content * {
  text-align: center;
}

.contact-inner .contact-cards .module-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-inner .contact-cards .module-contact ul li a {
  color: var(--black);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.4878))), 24px);
}

.contact-inner .contact-cards .contact-card-wrapper {
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--black-20);
  border-radius: 30px;
}
.contact-map .map-inner .module-code {
  display: flex;
}
.contact-map .map-inner iframe {
  width: 100%;
}

/* <--------------------------------------------------------- LOADER ---------------------------------------------------------> */

.loader-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: var(--white);
  margin: 0;
  z-index: 999999;
  position: fixed;
  top: 0;
}

.loader-page {
  position: relative;
  width: 100%;
  max-width: 180px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.logo-loader {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.progress-bar {
  position: relative;
  width: 0;
  height: 3px;
  background-color: var(--black);
  overflow: hidden;
  border-radius: 5px;
}

.drowpdown_container_navitem {
  display: flex;
  align-items: center;
  gap: 0.3em;
}

.main-nav-item.dropdown .drowpdown_container_navitem .toggle-menu .nav-link-arrow svg {
  transition: var(--transition-fast);
}

.main-nav-item.dropdown.active .drowpdown_container_navitem .toggle-menu .nav-link-arrow svg {
  transform: rotate(180deg);
  transition: var(--transition-fast);
}

.drowpdown_container_navitem svg path {
  stroke: var(--black);
}

.nav-item-servicii .dropdown-menu .nav-item .nav-link {
  padding: 15px;
  border-bottom: 1px solid rgb(0, 0, 0, 10%);
  transition: var(--transition-fast);
}

.nav-item-servicii .dropdown-menu .nav-item .nav-link:hover {
  background: rgb(0, 0, 0, 10%);
  transition: var(--transition-fast);
}
.nav-item-servicii .dropdown-menu .nav-item:last-of-type .nav-link {
  border-bottom: unset;
}
.navbar-nav .dropdown-menu.collapse {
  position: absolute;
  width: 300px;
  padding: 0;
  margin-top: 20px !important;
  border-radius: 0 0 10px 10px;
  border: 1px solid rgb(0, 0, 0, 10%);
  border-top: none;
  background: var(--body-color);
  overflow: hidden;
}

.nav-item.show_content .dropdown-menu {
  display: block !important;
}
.toggle-menu {
  cursor: pointer;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ERROR PAGE */
.error_page {
  min-height: 70vh;
  align-items: center;
}
.error_page .module.module-text {
  width: fit-content;
  background: #ddd;
  padding: 30px;
  border-radius: 20px;
}

/* COLOR PAGE */
.color_hero_text {
  position: relative;
  z-index: 1;
}
.color_hero_text * {
  color: #000;
}
.color_hero_text p {
  max-width: 1000px;
}
.header_colors {
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  padding: 20px 5vw;
  position: relative;
}
.header_colors::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(262deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4878151944371498) 39%, rgba(255, 255, 255, 0.9191877434567577) 100%);
}
.header_colors h1 {
  text-transform: uppercase;
}
.color_btns_container {
  gap: 10px;
  padding: 0 15px;
}
.color_inner_container {
  height: 100%;
}
.color_inner_container span {
  font-family: var(--font-regular);
  text-transform: uppercase;
  font-size: 14px;
}
.color_code {
  font-family: var(--font-bold) !important;
}

.modal {
  z-index: 999999;
}
.configurator_imagine img {
  width: 100%;
  object-fit: contain;
  height: auto;
  transition: all 0.2s linear;
}
.custom_modal .modal-dialog {
  max-width: 90vw;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.custom_modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.modal-backdrop {
  z-index: 99999;
}

.container_config_colors {
  display: grid;
  gap: 2px;
  grid-template: auto / repeat(5, 1fr);
  width: 360px;
  position: absolute;
  left: 15px;
  height: calc(100% - 69px);
  overflow: hidden auto;
  padding: 10px;
  background: #6f6f6f;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  opacity: 1;
  transition: all 0.2s linear;
  top: 15px;
}

.configurator_imagine .config_modal_close {
  position: absolute;
  top: 15px;
  right: 15px;
}
.color_inner_container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 2px;
  border-radius: 5px;
  border: 1px solid #fff3;
  cursor: pointer;
}
.container_config_colors span {
  font-size: 10px;
  white-space: nowrap;
}
.btn_config {
  background: #000;
  color: #fff;
  border: unset;
  border-radius: 5px;
  padding: 5px 15px;
  font-family: var(--font-regular);
  text-transform: uppercase;
  font-size: 13px;
}
.config_btns_container {
  position: absolute;
  bottom: 10px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.container_config_colors.ncs {
  display: none;
}
.config_selected_color {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #fff;
  padding: 2px 15px;
  border-radius: 9999px;
  font-family: var(--font-regular);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.config_selected_color em {
  font-family: var(--font-semibold);
}
.config_selected_color {
  transition: all 0.2s linear;
  opacity: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.container_config_colors::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.container_config_colors {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* COMPANY PAGE */
.section-text-img.company_cards {
  display: grid;
  grid-template: auto / repeat(2, 1fr);
  gap: 30px;
  width: 90vw;
}
.company_col {
  background: var(--white);
  border-radius: 15px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
  border: 1px solid rgb(0, 0, 0, 10%);
}
.company_col:last-of-type {
  grid-column: 1/-1;
  max-width: 50%;
  align-self: center;
  margin: auto;
}
.company_col .module-image {
  width: fit-content;
  padding: 0px 20px 20px 20px;
  margin: auto;
  border-radius: 0 0 20px 20px;
  margin-top: -1px;
  margin-bottom: 0;
  border: 1px solid rgb(0, 0, 0, 10%);
  border-top: none;
  background: var(--white-secondary);
  position: relative;
  max-width: 50%;
}
.company_col .module-image a {
  display: flex;
}
.company_col img {
  height: 50px;
  object-fit: contain;
  width: 100%;
}
.company_large_logo img {
  height: 100px;
  object-fit: contain;
  width: fit-content !important;
}

.company_col .module-text {
  padding: 20px;
}

.company_col .module-text p {
  text-align: center;
}

/* <--------------------------------------------------------- GALLERY ---------------------------------------------------------> */
.gallery-slider {
  padding: 0 34px;
}
.gallery-slider .slick-slide {
  margin: 0 15px;
}

.gallery-slider .slick-list {
  margin: 0 -15px;
}

.gallery-slider figure img {
  border-radius: var(--border-radius-s);
  object-fit: cover;
  height: 100%;
  width: 100%;
  aspect-ratio: 4/3;
}

.gallery-slider .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  background: var(--body-color);
}

.gallery-slider .slick-arrow .arrow {
  padding: 10px;
  cursor: pointer;
}

.gallery-slider .slick-arrow .arrow svg {
  width: 14px;
  height: auto;
}

/* .gallery-slider .slick-arrow .arrow svg path {
  stroke: var(--primary-color);
} */

.gallery-slider .slick-arrow.slick-arrow-left {
  left: 0;
}

.gallery-slider .slick-arrow.slick-arrow-right {
  right: 0;
}

/* <--------------------------------------------------------- COOKIE ---------------------------------------------------------> */

#cookie_notice {
  padding: 40px;
  border-radius: 0;
  background-color: var(--white-secondary);
  right: 0;
  border-top: 2px solid var(--primary-color);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgb(0, 0, 0, 10%);
}

#cookie_notice.active {
  bottom: 0px;
}

#cookie_notice .cookie_notice_container {
  flex-direction: column;
  gap: 20px;
}

#cookie_notice .cookie_notice_container button {
  background: var(--primary-color);
  color: var(--black-70);
  border-radius: 50px;
  padding: 0.7em 1.4em;
  border: none;
  margin-left: 0;
  font-family: var(--font-medium);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  padding: 15px 30px;
}

.btn-info.focus,
.btn-info:focus {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: none;
  box-shadow: none;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: none;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

#cookie_notice .cookie_notice_container p {
  color: var(--black);
  margin-bottom: 0px;
  text-align: center;
  font-weight: 400;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
}

#cookie_notice .cookie_notice_container p a {
  color: var(--secondary-color);
  font-weight: 400;
  text-decoration: underline;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
}

/* <--------------------------------------------------------- 404 ---------------------------------------------------------> */

.site-error h1 {
  font-family: var(--font-bold);
  font-size: min(max(64px, calc(4rem + ((1vw - 2.8px) * 8.2927))), 200px);
  color: var(--primary-color);
  background: -webkit-linear-gradient(hsla(59, 86%, 68%, 1), hsla(134, 36%, 53%, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-error .error-404 {
  min-height: calc(100vh - var(--header-height) - 100px);
}

.site-error .btn-404 {
  margin-top: 20px;
}

.site-error .message-404 {
  font-size: min(max(20px, calc(1.25rem + ((1vw - 2.8px) * 0.4878))), 28px);
  font-family: var(--font-semibold);
  color: var(--black);
}

.site-error {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* <--------------------------------------------------------- THANK YOU PAGE ---------------------------------------------------------> */

.thank-you-section {
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 40px;
  min-height: calc(100vh - var(--header-height));
  padding-top: 50px;
  padding-bottom: 50px;
}
.thank-you-section .thank-you-text {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: auto;
}

.thank-you-section .thank-you-text .module-text * {
  text-align: center;
}
.thank-you-section .thank-you-text .module-text b {
  color: var(--black);
  font-family: var(--font-semibold);
}
.thank-you-section .thank-you-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-section .thank-you-icon .module-code {
  width: 130px;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.thank-you-section .thank-you-icon .module-code .icon-mail-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.icon {
  position: absolute;
  z-index: 2;
  /* top: 130px;
  left: 140px; */
  transform: translate3d(0, 0, 0);
  fill: none;
  stroke-width: 2px;
  stroke: var(--black);
  stroke-linecap: square;
  stroke-dasharray: 325 325;
}

.mail {
  stroke-dashoffset: 326;
  transition: stroke-dashoffset 1s ease-in-out;
}

.plane {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s ease-in-out 0.6s;
}

.icon.mail {
  stroke-dashoffset: 0;
  animation: mail-anim 1s ease-in-out 0.2s forwards;
}

.icon.plane {
  stroke-dashoffset: 325;
  animation: plane-anim 1s ease-in-out 0.2s forwards, fly-anim 1.5s ease-in-out 1.2s forwards;
  opacity: 0;
}

.circle,
.circle-outer {
  animation: circle-anim 1s ease-in-out 0.2s forwards;
}

@keyframes mail-anim {
  to {
    stroke-dashoffset: 326;
  }
}

@keyframes plane-anim {
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes circle-anim {
  to {
    transform: scale(0);
  }
}

@keyframes fly-anim {
  0%,
  50% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  60% {
    transform: translate3d(-10px, 5px, 0) scale(1.05);
  }
  70% {
    opacity: 1;
  }
  85% {
    opacity: 0;
  }
  100% {
    transform: translate3d(300px, -150px, 0) scale(0.4);
    opacity: 0;
  }
}

.thank-you-section .thank-you-icon .module-text > * {
  animation: thank-you-title 1s forwards;
  opacity: 0;
  transform: scale(0);
  animation-delay: 2.4s;
  font-size: min(max(24px, calc(1.5rem + ((1vw - 2.8px) * 1.4634))), 48px);
}

@keyframes thank-you-title {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* <--------------------------------------------------------- GDPR PAGE ---------------------------------------------------------> */

.gdpr-section {
  padding: 50px 0;
}

.gdpr-section .gdpr-inner {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.gdpr-section .gdpr-inner .gdpr-description h2 {
  font-size: min(max(20px, calc(1.25rem + ((1vw - 2.8px) * 0.4878))), 28px);
  margin-bottom: 0.5em;
}

.gdpr-section .gdpr-inner .gdpr-description ul li {
  font-family: var(--font-medium);
  color: var(--p-color);
}

.gdpr-section .gdpr-inner .gdpr-description ul li::marker {
  color: var(--hover-color);
}

.gdpr-section .gdpr-inner .gdpr-description a {
  color: var(--hover-color);
}

.product_page .table_specs {
  overflow-x: auto;
}

.badge.badge-warning {
  white-space: wrap;
  text-align: start;
  margin-top: 10px;
}
