/**
 * Arquivo base do SCSS
 * @version 1.1.0
 */
/* ============= BASE ============= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

strong {
  font-weight: bold;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

input,
textarea {
  outline: none;
  border: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

:root {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

button,
input,
optgroup,
select,
textarea,
html input[type=button],
input[type=reset],
input[type=submit],
button[disabled],
html input[disabled],
button::-moz-focus-inner,
input::-moz-focus-inner,
input[type=checkbox],
input[type=radio],
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button,
input[type=search],
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  border: none;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
}

html {
  font-size: 62.5%;
}
@media (max-width: 900px) {
  html {
    font-size: 50%;
  }
}

html,
body {
  width: 100%;
  font-family: "Barlow", sans-serif;
  color: #000000;
}

body {
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Times New Roman", sans-serif;
  color: #000000;
  font-size: 4rem;
}

.text--ligther {
  font-weight: lighter;
}
.text--regular {
  font-weight: normal;
}
.text--bold {
  font-weight: bold;
}
.text--primary {
  color: #000000;
}
.text--secondary {
  color: #ffffff;
}

/* FUNCTIONS */
/* ============= FONTS ============ */
@font-face {
  font-family: "Anthemia";
  src: url(/fonts/AnthemiaRegular.ttf?17bedf4e0d99ca7d73a8d64eea41711a) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* =========== SECTIONS =========== */
.header {
  width: 100%;
  padding: 3.3rem 2rem 0 2rem;
  background: #ffffff;
  position: fixed;
  top: 0;
  z-index: 100;
}
.header__nav {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 105.6rem;
  margin: 0 auto;
  padding-bottom: 2.9rem;
}
.header .nav__desktop__left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.4rem;
}
.header .nav__desktop__left a {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 400;
}
.header .nav__desktop__left a::after {
  content: "";
  border-right: 1px solid #000000;
  margin-left: 3.2rem;
}
.header .nav__desktop__left a:last-child::after {
  display: none;
}
.header .nav__desktop__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.3rem;
}
.header .nav__desktop__right h2 {
  font-family: "Barlow", sans-serif;
  color: #000000;
  font-size: 2.4rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.header .nav__desktop__right .menu-hamburger {
  width: 5.9rem;
  height: 3.2rem;
  position: relative;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  cursor: pointer;
  display: block;
  z-index: 999999;
  margin-top: 6px;
}
.header .nav__desktop__right .menu-hamburger span {
  display: block;
  position: absolute;
  height: 0.5px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background: #1a1a1a;
}
.header .nav__desktop__right .menu-hamburger span:nth-child(1) {
  top: 0px;
}
.header .nav__desktop__right .menu-hamburger span:nth-child(2), .header .nav__desktop__right .menu-hamburger span:nth-child(3) {
  top: 13px;
}
.header .nav__desktop__right .menu-hamburger span:nth-child(4) {
  top: 26px;
}
.header .nav__desktop__right .menu-hamburger.open span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}
.header .nav__desktop__right .menu-hamburger.open span:nth-child(2) {
  animation: opacityFade 0.3s forwards;
  transition: all 0.3s;
  transform: translateX(-50px);
}
.header .nav__desktop__right .menu-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.header .nav__desktop__right .menu-hamburger.open span:nth-child(4) {
  top: 26px;
  width: 0%;
  left: 50%;
}
@keyframes opacityFade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.header__nav__mobile {
  width: 100%;
  height: calc(100vh - 10.1rem);
  display: none;
  padding-left: 17rem;
}
.header__nav__mobile.show {
  display: flex;
  position: absolute;
  left: 0;
  z-index: 10;
  background: #ffffff;
  border-top: 1px solid #1a1a1a;
}
.header__nav__mobile__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav__mobile__navigation {
  width: 100%;
  height: 85%;
  padding: 1rem 0 12rem 3.3rem;
  border-left: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.9rem;
}
.header__nav__mobile__navigation__all {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2rem);
  letter-spacing: 5px;
  margin-bottom: 2.3rem;
  text-transform: uppercase;
}
.header__nav__mobile__navigation__all:hover {
  opacity: 0.7;
}
.header__nav__mobile__navigation__group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.header__nav__mobile__navigation__group__title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2rem);
  letter-spacing: 5px;
  text-transform: uppercase;
}
.header__nav__mobile__navigation__group__link {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 5vw, 2rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 2.5rem;
}
.header__nav__mobile__navigation__group__link:hover {
  opacity: 0.7;
}
.header__nav__mobile__navigation__3d {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.3rem;
  margin-bottom: 1.4rem;
}
.header__nav__mobile__navigation__3d img {
  width: 5.7rem;
  height: 6.3rem;
}
.header__nav__mobile__navigation__3d__title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2rem);
  letter-spacing: 5px;
  text-transform: uppercase;
}
.header__nav__mobile__navigation__3d__title:hover {
  transition: opacity 0.2s ease-in;
  opacity: 0.7;
}
.header__nav__mobile__navigation__3d__link {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2rem);
  letter-spacing: 5px;
  text-transform: uppercase;
}
.header__nav__mobile__navigation__3d__link:hover {
  transition: opacity 0.2s ease-in;
  opacity: 0.7;
}
.header__nav__mobile__navigation-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 4.1rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}
.header__nav__mobile__navigation-left {
  position: relative;
}
.header__nav__mobile__navigation-left .products-navigation-left {
  position: absolute;
  left: -2rem;
  top: 45%;
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  letter-spacing: 1.6px;
  writing-mode: vertical-lr;
  transform: rotate(-180deg) translateY(-50%);
  transform-origin: left top;
  white-space: nowrap;
  text-transform: uppercase;
}

.freeze {
  overflow: hidden;
}

@media (max-width: 900px) {
  .header .nav__desktop__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
  .header .nav__desktop__left a::after {
    content: none;
  }
  .header .nav__desktop__right h2 {
    display: none;
  }
  .header__nav__mobile {
    overflow-y: auto;
    padding-left: 6rem;
  }
  .header__nav__mobile__wrapper {
    display: block;
  }
  .header__nav__mobile__navigation-right, .header__nav__mobile__navigation-left {
    height: auto;
    padding: 2rem 1rem 3rem 2rem;
  }
  .header__nav__mobile__navigation-right {
    justify-content: flex-start;
    gap: 2rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.footer {
  width: 100%;
  padding: 3.3rem 2rem 4rem;
  background: #1a1a1a;
}
.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 105.6rem;
  margin: 0 auto;
}
.footer__left-div {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2.5rem;
}
.footer__social-media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
}
.footer__social-media__facebook-div img, .footer__social-media__instagram-div img, .footer__social-media__3d-cube-div img {
  width: 2.3rem;
  height: 2.3rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__social-media__policy-div {
  display: flex;
  margin-left: 1.2rem;
}
.footer__social-media__privacy-policy {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}
.footer__newsletter {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 42rem;
}
.footer__newsletter__title {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.75px;
}
.footer__newsletter__form-group {
  width: 100%;
  display: flex;
}
.footer__newsletter__form-group input {
  width: 100%;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.75px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ffffff;
  background: none;
  margin-top: 1.7rem;
}
.footer__newsletter__form-group input::-moz-placeholder {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.footer__newsletter__form-group input::placeholder {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.footer__newsletter__btn {
  width: -moz-max-content;
  width: max-content;
  background: #ffffff;
  text-transform: uppercase;
  margin-top: 3.3rem;
  padding: 3px 5px 5px 5px;
  color: #1a1a1a;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  font-weight: 400;
}
.footer__right-div {
  display: flex;
}
.footer__right-div__villa-imperial {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__right-div__villa-imperial::after {
  content: "";
  display: block;
  height: 3.1rem;
  width: 1px;
  background: #ffffff;
  margin: 0 3.2rem;
  opacity: 0.6;
}
.footer__right-div__casavetti {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .footer__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer__right-div__villa-imperial::after {
    content: "";
    display: block;
    height: 3.1rem;
    width: 1px;
    background: #ffffff;
    margin: 0 1.2rem;
    opacity: 0.6;
  }
}
.home-banner__slider {
  width: 100%;
  height: 100%;
  max-width: 105.6rem;
  margin: 10.1rem auto 0;
}
.home-banner__banner {
  display: flex;
  flex-direction: column;
}
.home-banner__image {
  position: relative;
  width: 100%;
  display: flex;
  max-height: 39.5rem;
  padding-bottom: 5.2rem;
}
.home-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-banner__controls {
  position: absolute;
  bottom: 8.2rem;
  right: 2rem;
  z-index: 99;
  display: flex;
  align-items: center;
}
.home-banner__controls svg {
  width: 3.2rem;
  height: 2.3rem;
  cursor: pointer;
}
.home-banner__pagination {
  z-index: 100;
  width: 100%;
}
.home-banner__pagination .slick-dots {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.home-banner__pagination .slick-dots li {
  cursor: pointer;
  width: 8px;
  height: 8px;
  position: relative;
  background: #c8c8c8;
}
.home-banner__pagination .slick-dots li.slick-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #ffffff;
}
.home-banner__content {
  padding: 4.8rem 0 6.9rem;
  width: 100%;
  height: 25rem;
  justify-content: space-between;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.home-banner__content__left-div {
  max-width: 38.5rem;
  width: 100%;
}
.home-banner__content__left-div h3 {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.home-banner__content__right-div {
  width: 100%;
  max-width: 42.1rem;
}
.home-banner__content__right-div p {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1.12px;
  line-height: 2rem;
}

@media (max-width: 900px) {
  .home-banner__content {
    height: 32.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 900px) and (max-width: 600px) {
  .home-banner__content {
    height: 38.5rem;
  }
}
@media (max-width: 900px) {
  .home-banner__image {
    max-height: 100%;
  }
  .home-banner__image picture {
    width: 100%;
  }
}
.home-contact {
  padding: 5.4rem 0rem;
  overflow: hidden;
}
.home-contact__wrapper {
  max-width: 105.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
}
.home-contact__left-form-div {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.home-contact__left-form-div__title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 6.4px;
  text-transform: uppercase;
  margin-bottom: 1.7rem;
}
.home-contact__left-form-div__form-group {
  max-width: 42rem;
  width: 100%;
  display: flex;
  padding-bottom: 1.5rem;
  flex-direction: column;
}
.home-contact__left-form-div__form-group input {
  width: 100%;
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.75px;
  border: none;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 8px;
}
.home-contact__left-form-div__form-group input::-moz-placeholder {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.home-contact__left-form-div__form-group input::placeholder {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.home-contact__left-form-div__btn {
  width: -moz-max-content;
  width: max-content;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  padding: 3px 5px 5px 5px;
  background: #1a1a1a;
  text-transform: uppercase;
  margin-top: 1.5rem;
}
.home-contact__left-form-div .js-submit-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-contact__left-form-div .loader {
  position: absolute;
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #3498db;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
  display: none; /* Hidden by default */
}
.home-contact__left-form-div .js-submit-button.loading .loader {
  display: block; /* Show loader when loading */
}
.home-contact__left-form-div .js-submit-button.loading .button-content {
  visibility: hidden; /* Hide text and svg when loading */
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.home-contact__right-div {
  max-width: 23rem;
  display: flex;
  flex-direction: column;
}
.home-contact__right-div__title {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.home-contact__right-div__title, .home-contact__right-div__phone, .home-contact__right-div__address, .home-contact__right-div__cep, .home-contact__right-div__city, .home-contact__right-div__email {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.5rem;
  letter-spacing: 0.75px;
}
.home-contact__right-div__map-directions {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  margin-top: 2.1rem;
}
.home-contact__right-div__map-directions svg {
  width: 100%;
  height: 3rem;
  max-width: 2.5rem;
}
.home-contact__right-div__map-directions__description {
  color: #000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.75px;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .home-contact__wrapper {
    flex-direction: column;
    gap: 3rem;
  }
}
/* ============ PAGES ============= */
.home {
  padding: 0 2rem;
}
.home__slider div {
  height: 200px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #eaeaea;
}

.about {
  padding: 0 2rem;
}

.agents {
  padding: 0 2rem 9.8rem;
  max-width: 105.6rem;
  margin: 0 auto;
}
.agents__location {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 4.6rem;
}
.agents__location__left-div {
  max-width: 69.5rem;
  padding: 8px 0 0 0;
}
.agents__location__left-div h5 {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 3.2rem);
  line-height: 4.4rem;
  letter-spacing: 1.6px;
}
.agents__location__right-div {
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.agents__location__right-div__header__title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.75px;
}
.agents__location__right-div__content__phone, .agents__location__right-div__content__address, .agents__location__right-div__content__cep, .agents__location__right-div__content__city, .agents__location__right-div__content__email {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: 0.75px;
}
.agents__regions {
  max-width: 105.6rem;
  margin: 0 auto;
}
.agents__regions__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
.agents__regions__row {
  border-top: 1px solid #1a1a1a;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.agents__regions__row > *:nth-child(1) {
  justify-self: start;
}
.agents__regions__row > *:nth-child(2) {
  justify-self: center;
}
.agents__regions__row > *:nth-child(3) {
  justify-self: end;
}
.agents__regions__card {
  max-width: 29rem;
  padding: 4.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.agents__regions__card__title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 25px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.agents__regions__card__content .text-bold {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 25px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  font-weight: bold;
}
.agents__regions__card__content__contact, .agents__regions__card__content__phone, .agents__regions__card__content__email {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 25px;
  letter-spacing: 0.75px;
}

@media (max-width: 900px) {
  .agents__location {
    flex-direction: column;
  }
}
.product {
  padding: 14.8rem 2rem 8.1rem;
}
.product .category-list__wrapper {
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 5rem;
}
.product__gallery {
  padding: 10.8rem 0 5rem;
}
.product__gallery__wrapper {
  max-width: 105.6rem;
  margin: 0 auto;
}
.product__gallery__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__gallery__item .wrapper-gallery-items {
  position: relative;
  display: flex;
  flex-direction: column;
}
.product__gallery__item .slider-js-gallery {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__gallery__item .slider-js-prev-gallery {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 10;
  cursor: pointer;
}
.product__gallery__item .slider-js-next-gallery {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 10;
  cursor: pointer;
}
.product__gallery__item__visualization {
  position: absolute;
  right: 10%;
  z-index: 10;
  top: -5rem;
}
.product__gallery__item__image {
  max-width: 87rem;
  margin: 0 auto;
  max-height: 43.5rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__gallery .slick-track {
  display: flex;
  align-items: center;
}
.product__gallery__pagination {
  position: absolute;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
}
.product__gallery__pagination .slick-dots {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.product__gallery__pagination .slick-dots li {
  width: 10px;
  height: 10px;
  position: relative;
  background: rgb(194, 194, 194);
}
.product__gallery__pagination .slick-dots li.slick-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #000000;
}
.product__gallery__back {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  max-width: 87rem;
  margin: 4.3rem auto 4.5rem;
}
.product__gallery__back a {
  display: flex;
  gap: 8px;
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 99;
}
.product__content {
  max-width: 105.6rem;
  margin: 0 auto;
}
.product__content__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.7rem;
}
.product__content__header__img-div {
  width: 16.4rem;
  height: 100%;
}
.product__content__header__img-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__content__header__description {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product__content__details {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5.2rem 0 6.3rem;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.product__content__details__title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 3.2rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.product__content__details__specifications {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.6rem;
}
.product__content__details__specifications__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product__content__details__specifications__item.active {
  font-weight: 600;
}
.product__content__details__specifications__item img {
  width: 2rem;
  height: 2rem;
}
.product__content__info {
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 5.2rem;
  max-width: 62rem;
}
.product__content__info__text {
  display: none;
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.product__content__info__text.active {
  display: block;
}
.product__content__info__text img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 900px) {
  .product__gallery {
    padding: 5.8rem 0 0rem;
  }
  .product__gallery__item__image {
    max-width: 100%;
  }
  .product__content__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .product__content__details {
    flex-direction: column;
    align-items: flex-start;
  }
  .product__content__details__specifications {
    margin-top: 3.2rem;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }
  .product__content__details__specifications__item {
    width: 100%;
    justify-content: flex-start;
  }
  .product__content__info {
    flex-direction: column;
  }
  .product__content__info__text {
    display: none;
    color: #000000;
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }
  .product__content__info__text.active {
    display: block;
  }
}
.catalog {
  padding: 10.1rem 2rem 8.1rem;
}
.catalog .design-banner__wrapper {
  border-top: none;
}
.catalog .product-dropdown__content-bottom {
  max-height: 100% !important;
}
.catalog__items-list {
  max-width: 105.6rem;
  margin: 0 auto;
}
.catalog__items-list__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.catalog__items-list__wrapper > *:nth-child(1) {
  justify-self: start;
}
.catalog__items-list__wrapper > *:nth-child(2) {
  justify-self: center;
}
.catalog__items-list__wrapper > *:nth-child(3) {
  justify-self: end;
}
.catalog__items-list__card {
  width: 100%;
  max-width: 32rem;
}
.catalog__items-list__card__image-div {
  width: 100%;
  display: flex;
}
.catalog__items-list__card__image-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__items-list__card__title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 1px;
  text-align: center;
}

.brands {
  padding: 10.1rem 2rem 5.7rem;
}

.details {
  padding: 10.1rem 2rem 8.1rem;
}

/* ========= COMPONENTES ========== */
.section {
  background: #000;
  width: 100%;
  position: relative;
}
.section__wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding: 10rem 2rem 12rem;
}
.section__title {
  display: inline-flex;
}
.section__title h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 6.4rem;
}
.section__slider {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  display: flex;
}
.section__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100%;
}
.section__item h1 {
  color: white;
}

.brand-dropdown {
  padding: 5rem 0rem;
  max-width: 105.6rem;
  margin: 0 auto;
}
.brand-dropdown__title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  z-index: 2;
}
.brand-dropdown__wrapper {
  position: relative;
  max-width: 105.6rem;
  margin: 0 auto;
}
.brand-dropdown__image-div {
  position: relative;
  width: 100%;
  height: 100%;
}
.brand-dropdown__image-div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1));
}
.brand-dropdown__image-div img {
  width: 100%;
  height: 100%;
  max-height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.brand-dropdown__click-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2rem;
  z-index: 2;
  cursor: pointer;
}
.brand-dropdown__click-dropdown.open svg {
  animation: none;
  transform: rotate(180deg);
}
.brand-dropdown__click-dropdown:hover {
  opacity: 0.6;
}
.brand-dropdown__click-dropdown span {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.brand-dropdown__click-dropdown svg {
  transition: all 0.1s ease-in;
  animation: upAndDown 1s ease-in infinite;
}
@keyframes upAndDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0);
  }
}
.brand-dropdown__content-bottom {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in;
}
.brand-dropdown__content-bottom.open {
  margin-top: 5.5rem;
  max-height: 2000px;
  animation: opacityEffect 0.3s ease-in forwards;
}
@keyframes opacityEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.brand-dropdown__content-bottom__description {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  max-width: 95rem;
}
.brand-dropdown__content-bottom__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 5.2rem;
}
.brand-dropdown__content-bottom__list__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem;
  height: 30rem;
}
.brand-dropdown__content-bottom__list__item .brand-item-image {
  width: 100%;
  height: 100%;
  display: flex;
}
.brand-dropdown__content-bottom__list__item .brand-item-image__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brand-dropdown__content-bottom__list__item .brand-item-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.brand-dropdown__content-bottom__list__item .brand-item-content__img {
  width: 15rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brand-dropdown__content-bottom__list__item .brand-item-content__description {
  max-width: 42rem;
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.8px;
}

@media (max-width: 900px) {
  .brand-dropdown {
    padding: 5rem 0 0 0;
  }
  .brand-dropdown__title {
    width: 100%;
    text-align: center;
  }
  .brand-dropdown__image-div {
    height: 25rem;
  }
  .brand-dropdown__click-dropdown {
    text-align: center;
  }
  .brand-dropdown__content-bottom__list {
    margin-top: 1.6rem;
    gap: 4rem;
  }
  .brand-dropdown__content-bottom__list__item {
    flex-direction: column;
    height: auto;
  }
}
.design-banner__wrapper {
  padding: 3rem 0 5rem;
  width: 100%;
  max-width: 105.6rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.design-banner__top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9.1rem;
}
.design-banner__left-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 39.8rem;
}
.design-banner__left-div h3 {
  color: #000000;
  font-family: "Anthemia", sans-serif;
  font-size: clamp(2.6rem, 12vw, 7.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.75px;
  text-transform: uppercase;
}
.design-banner__left-div p {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.8px;
}
.design-banner__right-div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 3.6rem;
}
.design-banner__right-div__image-div {
  position: relative;
  width: 100%;
  height: 31.2rem;
  cursor: pointer;
  overflow: hidden;
}
.design-banner__right-div__image-div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #808080;
  mix-blend-mode: saturation;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 501px) {
  .design-banner__right-div__image-div .prev,
  .design-banner__right-div__image-div .next {
    display: none;
    opacity: 0;
  }
}
.design-banner__right-div__image-div .prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 4.2rem;
  height: 5.2rem;
  cursor: pointer;
  z-index: 9999;
}
.design-banner__right-div__image-div .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 4.2rem;
  height: 5.2rem;
  cursor: pointer;
  z-index: 9999;
}
.design-banner__right-div__image-div.open .click-dropdown svg {
  animation: none;
  transform: rotate(180deg);
}
.design-banner__right-div__image-div:hover img {
  transition: all 0.2s ease-in;
  transform: scale(1.05);
}
.design-banner__right-div__image-div h4 {
  position: absolute;
  font-size: 1.6rem;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  color: #ffffff;
  font-family: "Barlow";
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
}
.design-banner__right-div__image-div .click-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.5rem;
  z-index: 99;
  cursor: pointer;
}
@media (max-width: 500px) {
  .design-banner__right-div__image-div .click-dropdown {
    display: none;
  }
}
.design-banner__right-div__image-div .click-dropdown:hover {
  opacity: 0.6;
}
.design-banner__right-div__image-div .click-dropdown svg {
  animation: upAndDown 1s ease-in infinite;
}
.design-banner__right-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.design-banner__bottom-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  max-width: 105.6rem;
  margin: 0 auto;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.design-banner__bottom-content.open {
  height: auto;
  margin-top: 9rem;
  animation: opacityEffect 0.3s ease-in forwards;
}
@keyframes opacityEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.design-banner__bottom-content h4 {
  color: #000000;
  font-family: "Anthemia", sans-serif;
  font-size: clamp(2.6rem, 12vw, 3.6rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.75px;
  text-transform: uppercase;
  transition: opacity 0.3s ease-in-out;
}
.design-banner__bottom-content p {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.8px;
  transition: opacity 0.3s ease-in-out;
}
.design-banner__pagination {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 100;
}
.design-banner__pagination .slick-dots {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.design-banner__pagination .slick-dots li {
  cursor: pointer;
  width: 8px;
  height: 8px;
  position: relative;
  background: #c8c8c8;
}
.design-banner__pagination .slick-dots li.slick-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #ffffff;
}

@media (max-width: 900px) {
  .design-banner__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 5rem 0;
  }
  .design-banner__top-content {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 4rem;
  }
}
@media (max-width: 900px) and (max-width: 500px) {
  .design-banner__right-div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media (max-width: 900px) {
  .design-banner__right-div__image-div {
    width: auto;
    height: 40rem;
  }
  .design-banner__bottom-content.open {
    margin-top: 1.6rem;
    gap: 2rem;
  }
}
.product-dropdown {
  padding: 5rem 0rem;
}
.product-dropdown__title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  font-family: "Anthemia";
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 7.5rem);
  letter-spacing: 11.25px;
  text-transform: uppercase;
  z-index: 2;
}
.product-dropdown__wrapper {
  position: relative;
  max-width: 105.6rem;
  margin: 0 auto;
}
.product-dropdown__image-div {
  position: relative;
  width: 100%;
  height: 24.2rem;
}
.product-dropdown__image-div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3));
}
.product-dropdown__image-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-dropdown__click-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3rem;
  z-index: 2;
  cursor: pointer;
}
.product-dropdown__click-dropdown:hover {
  opacity: 0.6;
}
.product-dropdown__click-dropdown.open svg {
  animation: none;
  transform: rotate(180deg);
}
.product-dropdown__click-dropdown span {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.product-dropdown__click-dropdown svg {
  animation: upAndDown 1s ease-in infinite;
}
@keyframes upAndDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0);
  }
}
.product-dropdown__content-bottom {
  max-height: 0;
  overflow: hidden;
}
.product-dropdown__content-bottom.open {
  max-height: 1000px;
  animation: opacityEffect 0.3s ease-in forwards;
}
@keyframes opacityEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.product-dropdown .catalog__items-list {
  max-width: 105.6rem;
  margin: 6rem auto 0;
}
.product-dropdown .catalog__items-list__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product-dropdown .catalog__items-list__wrapper .list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 700px) {
  .product-dropdown .catalog__items-list__wrapper .list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-dropdown .catalog__items-list__wrapper .list-grid > *:nth-child(1) {
  justify-self: start;
}
.product-dropdown .catalog__items-list__wrapper .list-grid > *:nth-child(2) {
  justify-self: center;
}
.product-dropdown .catalog__items-list__wrapper .list-grid > *:nth-child(3) {
  justify-self: end;
}
.product-dropdown .catalog__items-list__wrapper .content__spinner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
}
.product-dropdown .catalog__items-list__card {
  width: 100%;
  max-width: 32rem;
}
.product-dropdown .catalog__items-list__card__image-div {
  display: flex;
}
@media (min-width: 700px) {
  .product-dropdown .catalog__items-list__card__image-div {
    height: 20rem;
  }
}
.product-dropdown .catalog__items-list__card__image-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-dropdown .catalog__items-list__card__title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 5vw, 2rem);
  letter-spacing: 1px;
  text-align: center;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .product-dropdown {
    padding: 5rem 0 0;
  }
  .product-dropdown__image-div {
    height: 25rem;
  }
  .product-dropdown .catalog__items-list {
    margin: 4rem auto 0;
  }
  .product-dropdown .catalog__items-list__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.details-component {
  max-width: 105.6rem;
  margin: 0 auto;
}
.details-component__wrapper {
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 5.2rem 0;
}
.details-component__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 5.1rem;
}
.details-component__header__title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-size: clamp(2.6rem, 6vw, 3.2rem);
  letter-spacing: 6.4px;
  text-transform: uppercase;
}
.details-component__header__description {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.75px;
  margin-top: 1rem;
}
.details-component__content__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
.details-component__content__list__item {
  width: 100%;
  display: flex;
  max-height: 7rem;
  overflow: hidden;
  cursor: pointer;
}
.details-component__content__list__item.open {
  max-height: 100%;
}
.details-component__content__list__item__left-dropdown {
  max-width: 40rem;
  width: 100%;
  padding: 2.5rem 1.8rem 4.5rem;
  background-color: #000000;
  display: flex;
  flex-direction: column;
}
.details-component__content__list__item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3.5rem;
  transition: all 0.2s ease;
}
.details-component__content__list__item__header h6 {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 2rem);
  text-transform: uppercase;
}
.details-component__content__list__item__header svg {
  transition: all 0.1s ease-in;
  animation: upAndDown 1s ease-in infinite;
}
.details-component__content__list__item__header.open svg {
  animation: none;
  transform: rotate(180deg);
}
@keyframes upAndDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0);
  }
}
.details-component__content__list__item__description {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-size: 1.6rem;
  letter-spacing: 1.2px;
  line-height: 2rem;
}
.details-component__content__list__item__right-image {
  flex: 1;
  display: flex;
  align-items: stretch;
  transition: height 0.2s ease;
}
.details-component__content__list__item__right-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.details-component__content-bottom {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.details-component__content-bottom.open {
  max-height: 2000px;
  animation: opacityEffect 0.3s ease-in forwards;
}
@keyframes opacityEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .details-component__header {
    margin-bottom: 4rem;
  }
}
.banner-generic {
  padding: 4.6rem 0rem 6.6rem;
  margin-top: 10.57rem;
}
.banner-generic__wrapper {
  position: relative;
  max-width: 105.6rem;
  height: 21.6rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-generic__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.banner-generic__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-generic__title {
  color: #ffffff;
  font-family: "Anthemia", sans-serif;
  font-size: clamp(1.9rem, 5vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 9.6px;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  text-align: center;
}

@media (max-width: 900px) {
  .banner-generic {
    padding: 4.6rem 0rem 4rem;
  }
}
.title-and-description {
  max-width: 105.6rem;
  margin: 0 auto;
}
.title-and-description__wrapper {
  height: -moz-max-content;
  height: max-content;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 9.4rem;
  padding: 6.6rem 0;
  border-top: 1px solid #1a1a1a;
}
.title-and-description__left-div {
  position: sticky;
  top: 13rem;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 33.5rem;
  width: 100%;
}
.title-and-description__left-div__title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  letter-spacing: 8px;
  text-transform: uppercase;
}
.title-and-description__right-div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
}
.title-and-description__right-div__description {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 1.6px;
}

.first .title-and-description__wrapper {
  border-top: none !important;
  padding: 0 0 6.6rem 0 !important;
}

.last {
  padding: 0 0 20rem 0;
}

@media (max-width: 900px) {
  .title-and-description__wrapper {
    flex-direction: column;
    gap: 4rem;
    padding: 3.3rem 0;
  }
  .title-and-description__left-div {
    position: static;
  }
  .last {
    padding: 0 0 8rem 0;
  }
}
.category-list {
  padding: 2.5rem 0rem;
}
.category-list__wrapper {
  max-width: 105.6rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10rem;
}
.category-list__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.category-list__item.all:hover {
  transition: opacity 0.2s ease-in;
  opacity: 0.7;
}
.category-list__item__link-title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2rem);
  letter-spacing: 5px;
  text-transform: uppercase;
}
.category-list__item__link {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 5vw, 2rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.category-list__item__link:hover {
  transition: opacity 0.2s ease-in;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .category-list__wrapper {
    flex-direction: column;
    gap: 3.6rem;
  }
}
.contact__form__group__agreement {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 1rem;
}
.contact__form__group__agreement .agreement-form-group {
  width: 100%;
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.contact__form__group__agreement .agreement-form-group #cookies {
  height: auto;
}
.contact__form__group__agreement .agreement-form-group .contact__form__group__agreement__link {
  color: #1a1a1a !important;
}
.contact__form__group__agreement .agreement-form-group label {
  color: #1a1a1a;
  font-size: 1.4rem;
  font-style: normal;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  line-height: 1.8rem !important;
}
.contact__form__group__agreement .agreement-form-group label a {
  text-decoration: underline;
  color: #1a1a1a;
}
.contact__form__group__agreement .agreement-form-group input[type=checkbox] {
  margin: 0;
  padding: 0;
  width: 1.8rem;
  height: 1.8rem;
  accent-color: #1a1a1a;
  border-radius: 50%;
  transition: border-color 0.3s;
}

.cms-bar {
  height: 50px;
}
.cms-bar__row {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #9700f6;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}
.cms-bar__row .text {
  color: #fff;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
}
.cms-bar__row .btn {
  background: #fff;
  padding: 5px 20px;
  border-radius: 15px;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
.cms-bar__row .btn:hover {
  background: #000;
  color: #fff;
}

.error {
  color: red;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6rem;
}

@media (max-width: 900px) {
  .cms-bar__row .text {
    display: none;
  }
}
