/**
 * 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;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

strong {
  font-weight: bold;
}

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

:root {
  font-size: 62.5%;
}

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

ol,
ul {
  list-style: 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%;
}

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;
}

button {
  cursor: pointer;
  border: none;
}

a,
ul {
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

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

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

body {
  position: relative;
  font-size: 1.5rem;
}

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

/* ============= FONTS ============ */
/* =========== SECTIONS =========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 3.2rem;
  z-index: 9999;
  transition: all 0.3s ease;
}
.header:has(.is-hidden) {
  pointer-events: none;
}
.header:has(.is-hidden) .header__menu {
  pointer-events: all;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 4rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 9.5rem;
}
.header__nav__mobile {
  display: none;
}
.header__nav__hamburger {
  display: none;
}
.header__logo, .header__social {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.header__logo.is-hidden, .header__social.is-hidden {
  transform: translateY(-30px);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  width: 100%;
  height: 100%;
}
.header__menu {
  position: fixed;
  left: 57.5%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  display: flex;
  gap: 4rem;
  align-items: center;
  padding: 2.4rem 3.2rem;
  border-radius: 200px;
  background: var(--black, rgba(0, 0, 0, 0.4));
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  z-index: 999;
}
@media (min-width: 1200px) {
  .header__menu {
    left: 50%;
  }
}
.header__menu__item {
  display: flex;
  align-items: center;
  position: relative;
}
.header__menu__item .circle-orange {
  display: none;
  visibility: hidden;
  opacity: 0;
  width: 8px;
  height: 8px;
  margin-right: 1.6rem;
  border-radius: 50%;
  background: #ec662b;
}
.header__menu__item.active .circle-orange {
  display: block;
  visibility: visible;
  opacity: 1;
}
.header__menu a {
  position: relative;
  font-family: "Epilogue", sans-serif;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header__menu a:hover {
  color: #ec662b;
}
.header__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__social a,
.header__social button {
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  padding: 1.6px;
  justify-content: center;
  align-items: center;
  gap: 6.5px;
  transition: all 0.3s ease;
  border-radius: 8.3rem;
  background: #ffffff;
}
.header__social a:hover,
.header__social button:hover {
  background: #ec662b;
}
.header__social a:hover svg path,
.header__social button:hover svg path {
  fill: #ffffff;
}
.header__social i {
  color: #282828;
  width: 2rem;
  height: 2rem;
}
.header .nav__mobile {
  display: none;
  opacity: 0;
  transition: 0.3s all ease;
  z-index: 9999;
}
.header__mobile__menu {
  display: none;
  transition: 0.3s all ease;
}

@media (max-width: 900px) {
  .header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header__menu, .header__social {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .header__logo {
    width: 80%;
  }
}
@media (max-width: 900px) and (min-width: 390px) {
  .header__logo {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .header__nav {
    width: 100%;
    display: flex;
    gap: 1rem;
    position: relative;
  }
  .header__nav__hamburger {
    width: 4.5rem;
    height: 4.5rem;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    cursor: pointer;
    display: block;
    z-index: 999999;
    background: #ec662b;
    padding: 2rem;
    border-radius: 9999px;
  }
  .header__nav__hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 65%;
    border-radius: 9px;
    opacity: 1;
    left: 16%;
    transform: translateX(-50%);
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    background: #fff;
  }
  .header__nav__hamburger span:nth-child(1) {
    top: 1.4rem;
  }
  .header__nav__hamburger span:nth-child(2), .header__nav__hamburger span:nth-child(3) {
    top: 2.2rem;
  }
  .header__nav__hamburger span:nth-child(4) {
    top: 3rem;
  }
  .header__nav__hamburger.open {
    background: #282828;
  }
  .header__nav__hamburger.open span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
  }
  .header__nav__hamburger.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  .header__nav__hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .header__nav__hamburger.open span:nth-child(4) {
    top: 16px;
    width: 0%;
    left: 50%;
  }
  .header__nav__mobile {
    display: none;
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
    height: 100vh;
    width: 75vw;
    background: #ec662b;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
  }
  .header__nav__mobile ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
    gap: 5rem;
  }
  .header__nav__mobile ul li a {
    max-width: 25rem;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.6rem;
    position: relative;
    cursor: pointer;
    background: #c2551f;
    padding: 1.6rem 2.4rem;
    border-radius: 100px;
  }
  .header__nav__mobile ul li a img {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 1.6rem;
  }
  .header__nav__mobile.show {
    position: fixed;
    display: block;
    transform: translateX(0);
    animation: fadeIn 0.3s ease forwards;
    pointer-events: all;
    opacity: 1;
    z-index: 9999;
  }
  .header__nav__mobile.hiding {
    display: block;
    transform: translateX(0);
    animation: fadeOut 0.3s ease forwards;
    pointer-events: none;
  }
  .header__mobile__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    gap: 1rem;
    padding: 2.4rem 3.2rem;
    border-radius: 200px;
    background: var(--black, rgba(0, 0, 0, 0.4));
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
    z-index: 999;
  }
  .header__mobile__menu.is-hidden {
    transform: translateY(-20px);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }
}
@media (max-width: 900px) and (min-width: 390px) {
  .header__mobile__menu {
    gap: 4rem;
  }
}
@media (max-width: 900px) {
  .header__mobile__menu a {
    color: #ffffff;
    font-family: "Epilogue", sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    z-index: 99999;
  }
}
.freeze {
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.footer {
  background: #6e6e5f;
  position: relative;
  z-index: 550;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 4rem;
}
.footer__top .logo_mrp_div img {
  width: 100%;
  height: 100%;
}
.footer__top .logo_deen_div {
  width: 10.8rem;
  display: flex;
  justify-content: flex-end;
}
.footer__top .logo_deen_div img {
  width: 3.4rem;
  height: 1.3rem;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__social a,
.footer__social button {
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  padding: 1.6px;
  justify-content: center;
  align-items: center;
  gap: 6.5px;
  transition: all 0.3s ease;
  border-radius: 8.3rem;
  background: #000000;
}
.footer__social a svg path,
.footer__social button svg path {
  fill: #ffffff;
}
.footer__social a:hover,
.footer__social button:hover {
  background: #ec662b;
}
.footer__social i {
  color: #282828;
  width: 2rem;
  height: 2rem;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.1rem;
  color: #000000;
  margin-top: 8px;
}
.footer__bottom__rights {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #282828;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Epilogue", sans-serif;
  line-height: 2.3rem;
}
.footer__bottom__contact {
  color: #282828;
  text-align: center;
  font-family: "Epilogue", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem;
  text-decoration-line: underline;
  margin: 4rem 0 8rem;
}
.footer__bottom__image {
  display: flex;
  width: 100%;
}
.footer__bottom__image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .footer__bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

.footer--dark {
  background: #282828;
}
.footer--dark .footer__top .logo_mrp_div img {
  width: 100%;
  height: 100%;
}
.footer--dark .footer__social a,
.footer--dark .footer__social button {
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  padding: 1.6px;
  justify-content: center;
  align-items: center;
  gap: 6.5px;
  transition: all 0.3s ease;
  border-radius: 8.3rem;
  background: #000000;
}
.footer--dark .footer__social a svg path,
.footer--dark .footer__social button svg path {
  fill: #ffffff;
}
.footer--dark .footer__social a:hover,
.footer--dark .footer__social button:hover {
  background: #ffffff;
}
.footer--dark .footer__social a:hover svg path,
.footer--dark .footer__social button:hover svg path {
  fill: #000000;
}
.footer--dark .footer__social i {
  color: #282828;
  width: 2rem;
  height: 2rem;
}
.footer--dark .footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.1rem;
  margin-top: 8px;
}
.footer--dark .footer__bottom__rights {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #edede8;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Epilogue", sans-serif;
  line-height: 2.3rem;
}
.footer--dark .footer__bottom__contact {
  color: #edede8;
  text-align: center;
  font-family: "Epilogue", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem;
  text-decoration-line: underline;
  margin: 4rem 0 8rem;
}
.footer--dark .footer__bottom__image {
  display: flex;
  width: 100%;
}
.footer--dark .footer__bottom__image img {
  width: 100%;
  height: 100%;
}

.footer--white {
  background: #edede8;
}
.footer--white .footer__top .logo_mrp_div img {
  width: 100%;
  height: 100%;
}
.footer--white .footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.1rem;
  margin-top: 8px;
}
.footer--white .footer__bottom__rights {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #282828;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Epilogue", sans-serif;
  line-height: 2.3rem;
}
.footer--white .footer__bottom__contact {
  color: #282828;
  text-align: center;
  font-family: "Epilogue", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem;
  text-decoration-line: underline;
  margin: 4rem 0 8rem;
}
.footer--white .footer__bottom__image {
  display: flex;
  width: 100%;
  z-index: 999;
}
.footer--white .footer__bottom__image img {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .footer__top {
    flex-direction: column;
    padding: 2.4rem 0;
  }
  .footer__top .logo_mrp_div {
    width: 24.2rem;
    height: 9.5rem;
  }
  .footer__top .logo_deen_div {
    justify-content: center;
  }
  .footer__bottom {
    gap: 4rem;
  }
  .footer__bottom .footer__bottom__contact {
    margin: 0 auto;
    max-width: 30rem;
    padding: 0 4rem;
  }
  .footer__bottom .footer__bottom__image {
    margin-top: 0rem;
  }
}
/* ============ PAGES ============= */
.main {
  position: relative;
  height: auto;
}
.main .banner {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.main .banner .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.main .banner .bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.main .banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}
.main .banner__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 30;
  padding: 0 4rem 4rem 4rem;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2.8rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.main .banner__content.is-hidden {
  transform: translateY(-30px);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.main .banner__content span {
  font-family: "IBM Plex Mono", sans-serif;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
  z-index: 99;
}
.main .banner__content h1 {
  color: #ffffff;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -3.6px;
  text-transform: lowercase;
  position: relative;
  z-index: 99;
}
.main .banner__content h1 span {
  color: #ec662b;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -3.6px;
}
.main .banner__content .btn-banner-wrapper {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.4rem;
  border-radius: 2000px;
  background: #ec662b;
}
.main .banner__content .btn-banner-wrapper:hover .btn-banner {
  transform: scale(1.05);
}
.main .banner__content .btn-banner-wrapper:hover .btn-banner svg {
  transform: translateX(3px);
  animation: arrowMovement 1s ease-in-out infinite;
}
.main .banner__content .btn-banner-wrapper .btn-banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-family: "Epilogue", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 1.6rem 2.4rem;
  gap: 8px;
}
.main .about {
  position: relative;
  z-index: 10;
  margin-top: 100vh;
  height: 100vh;
  background: #ffffff;
  display: flex;
  background-color: #6e6e5f;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 15rem;
  overflow: hidden;
}
.main .about .background {
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  width: 200%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 99;
  will-change: transform;
  background-image: url(/images/MRPgigante.svg?01b61b1a9a8e5c328041c48264551f50);
  background-repeat: repeat-x;
  background-size: 93% 100%;
  background-position: center center;
  animation: infiniteScroll 20s linear infinite;
}
@media (min-width: 1600px) {
  .main .about .background {
    background-size: 70% 100%;
  }
}
.main .about__sticky {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 1.6rem;
}
.main .about__background {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: 1;
  transition: transform 0.2s ease-out;
}
.main .about__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 150;
}
.main .about__content__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 8.8rem;
  margin-bottom: 9.9rem;
}
.main .about__content__header__pretitle {
  color: #ffffff;
  font-family: "Epilogue";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.main .about__content__body {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main .about__content__body h2 {
  max-width: 81.8rem;
  color: #ffffff;
  text-align: center;
  font-family: "Epilogue";
  font-size: clamp(3rem, 5vw, 4rem);
  font-style: normal;
  font-weight: 300;
  line-height: 4.9rem;
  letter-spacing: -2px;
  margin-bottom: 12.8rem;
  margin-top: 13.5rem;
  text-transform: lowercase;
}
.main .about__content__body__bottom {
  display: flex;
  gap: 18rem;
}
@media (max-width: 1024px) {
  .main .about__content__body__bottom {
    transform: translateX(0);
  }
}
.main .about__content__body__bottom__left, .main .about__content__body__bottom__right {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.main .about__content__body__bottom__left h4, .main .about__content__body__bottom__right h4 {
  color: #ffffff;
  font-family: "Epilogue";
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: lowercase;
}
.main .about__content__body__bottom__left .stats, .main .about__content__body__bottom__right .stats {
  display: flex;
  gap: 5.6rem;
}
.main .about__content__body__bottom__left .stats__item, .main .about__content__body__bottom__right .stats__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.main .about__content__body__bottom__left .stats__item__number, .main .about__content__body__bottom__right .stats__item__number {
  color: #ffffff;
  font-family: "Epilogue";
  font-size: clamp(4rem, 2vw, 7.2rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -3.6px;
  width: -moz-max-content;
  width: max-content;
}
.main .about__content__body__bottom__left .stats__item__text, .main .about__content__body__bottom__right .stats__item__text {
  display: flex;
  flex-wrap: wrap;
  color: #ffffff;
  font-family: "IBM Plex Mono";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  max-width: 8rem;
}
.main .projects {
  background: #282828;
  position: relative;
  z-index: 20;
  height: 360vh;
  display: flex;
  flex-direction: column;
}
.main .projects .after-animation {
  background: #282828;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  display: block;
}
.main .projects .after-animation .icon {
  width: 3.6rem;
  height: 3.6rem;
}
.main .projects .after-animation .clip-path-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  justify-content: space-between;
  position: relative;
  height: 100%;
  color: #ffffff;
  opacity: 0;
  transition: opacity 1s ease;
  padding: 4.5rem;
  z-index: 2;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  max-width: 38rem;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper__wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  flex-wrap: wrap;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper__tag {
  width: -moz-max-content;
  width: max-content;
  border-radius: 2000px;
  padding: 1.2rem 1.6rem;
  background-color: #ec662b;
  color: #ffffff;
  font-family: "Epilogue";
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  word-break: keep-all;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper__location {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  line-height: 100%;
  color: #ffffff;
  text-transform: uppercase;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper__title {
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: clamp(3.8rem, 3vw, 7.2rem);
  line-height: 100%;
  letter-spacing: -3.2px;
  color: #ffffff;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper__price {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #ffffff;
  font-family: "Epilogue", sans-serif;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper a {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 8px;
  background-color: white;
  border: 1px solid #282828;
  color: #282828;
  padding: 1.6rem 2.4rem;
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 100%;
  letter-spacing: 0%;
  border-radius: 2000px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper a svg {
  transition: all 0.3s ease;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper a svg path {
  fill: #000000;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper a:hover {
  background-color: #ec662b;
  color: #ffffff;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper a:hover svg path {
  fill: #ffffff;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom {
  display: flex;
  gap: 8rem;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom .item {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  gap: 2.4rem;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom .item svg {
  width: 2.4rem;
  height: 2.4rem;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom .item svg path {
  fill: #ffffff;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom .item span {
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: 6.2rem;
  line-height: 4.9rem;
  letter-spacing: -3.2px;
}
.main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom .item p {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.main .projects .after-animation .clip-path-image-wrapper .square-image {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 5;
  width: 270px;
  height: 420px;
  right: 0;
  top: 25vh;
  margin-right: 10rem;
}
.main .projects .after-animation .one {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}
.main .projects .after-animation .two {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main .projects .after-animation .three {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main .projects .after-animation .background-image {
  width: 100%;
  height: 100vh;
  max-width: 100%;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(100vh);
}
.main .projects .after-animation .background-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}
.main .projects__grid {
  background: #282828;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  transition: opacity 0.5s ease;
  z-index: 40;
  padding: 2rem 0;
  overflow: hidden;
}
.main .projects__row {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 1.6rem;
  flex-shrink: 0;
  justify-content: center;
  pointer-events: none;
}
.main .projects__row.no-gap {
  gap: 0;
}
.main .projects .item--large {
  width: 60vw;
}
.main .projects .item--big {
  width: 55vw;
}
.main .projects .item--medium {
  width: 50vw;
}
.main .projects .item--small {
  width: 20vw;
}
.main .projects .item--smallest {
  width: 10vw;
}
.main .projects .top-row {
  height: 30vh;
}
.main .projects .main-row {
  height: 40vh;
  position: relative;
  z-index: 30;
  align-items: center;
  justify-content: space-between;
}
.main .projects .main-row .highlight-image {
  max-width: 100%;
  max-height: 100%;
}
.main .projects .main-row .projects__item:not(.js-expandable) {
  width: 50vw;
}
.main .projects .main-row .projects__item.js-expandable {
  z-index: 30;
}
.main .projects .bottom-row {
  height: 30vh;
}
.main .projects__item {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem;
  height: 100%;
  z-index: 20;
}
.main .projects .highlight-image {
  z-index: 30;
}
.main .future-releases {
  overflow: hidden;
  padding: 7.2rem 5.6rem 38.5rem;
  background: #edede8;
}
.main .future-releases__title {
  width: 100%;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-bottom: 3.8rem;
}
.main .future-releases__title h2 {
  color: #282828;
  font-family: "Epilogue";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.main .future-releases__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 4rem;
}
.main .future-releases__header__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  text-transform: lowercase;
}
.main .future-releases__header__title .text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main .future-releases__header__title .text h1 {
  font-family: "Epilogue", sans-serif;
  height: -moz-max-content;
  height: max-content;
  font-size: clamp(3.2rem, 5vw, 6.5rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -3.25px;
  color: #282828;
}
.main .future-releases__header__title .text h6 {
  font-family: "Epilogue", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2rem;
  color: #282828;
}
.main .future-releases__header__title a {
  display: flex;
  padding: 1.6rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 2000px;
  background: #ffffff;
  border: none;
  color: #282828;
  font-family: "Epilogue", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.3s ease;
  text-transform: lowercase;
}
.main .future-releases__header__title a:hover {
  background: #ec662b;
  color: #ffffff;
}
.main .future-releases__header__title a:hover svg path {
  fill: #ffffff;
}
.main .future-releases__header__title a svg {
  width: 2.4rem;
  height: 2.4rem;
}
.main .future-releases__content {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 7.2rem;
  gap: 16.8rem;
}
.main .future-releases__content .left-paragraph {
  width: 100%;
  max-width: 49.3rem;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-style: normal;
  font-weight: 300;
  line-height: 3.4rem;
  color: #282828;
  text-transform: lowercase;
}
.main .future-releases__content .right-paragraph {
  width: 100%;
  max-width: 48.4rem;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
  color: #282828;
}
.main .future-releases-slider {
  width: 100%;
  height: 57.2rem;
  background-color: #6e6e5f;
  overflow-x: clip;
}
.main .future-releases-slider .wrapper {
  position: relative;
  z-index: 1;
  padding: 0 0 0 5.6rem;
  display: flex;
  align-items: center;
  gap: 15rem;
}
.main .future-releases-slider .wrapper .bg-mrpgigante {
  position: absolute;
  top: -26rem;
  left: 0;
  width: 200%;
  height: 100%;
  max-height: 50.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 33;
  will-change: transform;
  background-image: url(/images/MRPgigante.svg?01b61b1a9a8e5c328041c48264551f50);
  background-position: repeat-x;
  object-fit: cover;
  z-index: 1;
  animation: infiniteScroll 20s linear infinite;
}
.main .future-releases-slider .wrapper .buttons-slider-div {
  transition: all 0.3s ease;
  cursor: pointer;
  transform: translateY(-32rem);
  z-index: 999;
}
.main .future-releases-slider .wrapper .buttons-slider-div .left-button.slick-disabled,
.main .future-releases-slider .wrapper .buttons-slider-div .right-button.slick-disabled {
  opacity: 0.5;
  cursor: auto;
}
.main .future-releases-slider .wrapper .buttons-slider-div .left-button.slick-disabled:hover,
.main .future-releases-slider .wrapper .buttons-slider-div .right-button.slick-disabled:hover {
  background: #ffffff;
  color: #000000;
}
.main .future-releases-slider .wrapper .buttons-slider-div .left-button.slick-disabled:hover svg path,
.main .future-releases-slider .wrapper .buttons-slider-div .right-button.slick-disabled:hover svg path {
  fill: #000000;
}
.main .future-releases-slider__slider {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transform: translateY(-25rem);
}
.main .future-releases-slider__slider__item {
  position: relative;
  z-index: 3;
  margin-right: 12rem;
}
.main .future-releases-slider__slider__item:last-child {
  margin-right: 0;
}
.main .future-releases-slider__slider__item h6 {
  color: #edede8;
  font-family: "IBM Plex Mono";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2.4rem;
  text-transform: uppercase;
}
.main .future-releases-slider__slider__item .wrapper-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2.4rem;
  gap: 2.4rem;
}
.main .future-releases-slider__slider__item .wrapper-text h3 {
  color: #edede8;
  font-family: "Epilogue", sans-serif;
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.4rem;
}
.main .future-releases-slider__slider__item .wrapper-text p {
  color: #edede8;
  font-family: "Epilogue", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
  max-width: 28.8rem;
}
.main .future-releases-slider__slider__item img {
  width: 100%;
  height: 43.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.main .future-releases-slider .btn-slider {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 1.6rem;
  margin-left: 5.6rem;
  left: 20%;
  padding-top: 3px;
}
.main .future-releases-slider .btn-slider .btn-slider-div {
  position: relative;
  z-index: 90;
  display: flex;
  width: 5.6rem;
  height: 5.6rem;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 2000px;
  background: #ffffff;
}
.main .future-releases-slider .btn-slider .btn-slider-div svg {
  width: 2.4rem;
  height: 2.4rem;
}

@media (max-width: 900px) {
  .main .banner__content {
    padding: 0 4rem 6rem 4rem;
  }
  .main .banner__content h1 {
    display: inline;
  }
  .main .about {
    overflow: hidden;
    padding: 0 0 2rem 0;
  }
  .main .about .background {
    background-size: cover;
    height: 50.6rem;
    animation: infiniteScroll 15s linear infinite;
  }
  .main .about__sticky {
    padding: 2rem;
    height: 100%;
  }
  .main .about__content {
    height: 100%;
  }
  .main .about__content__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 6rem;
    margin-bottom: 0;
  }
  .main .about__content__body {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .main .about__content__body h2 {
    margin: 6rem 0;
    line-height: 110%;
    max-width: 70rem;
  }
  .main .about__content__body__bottom {
    flex-direction: column;
    transform: translateX(0);
    gap: 3rem;
  }
  .main .about__content__body__bottom__left, .main .about__content__body__bottom__right {
    max-width: 31rem;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
  .main .about__content__body__bottom__left .stats, .main .about__content__body__bottom__right .stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
}
@media (max-width: 900px) and (min-width: 700px) {
  .main .about__content__body__bottom__left .stats, .main .about__content__body__bottom__right .stats {
    gap: 5rem;
  }
}
@media (max-width: 900px) {
  .main .about__content__body__bottom__left .stats__item, .main .about__content__body__bottom__right .stats__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .main .projects .after-animation {
    background: #282828;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    display: block;
  }
  .main .projects .after-animation .icon {
    width: 3.6rem;
    height: 3.6rem;
  }
  .main .projects .after-animation .clip-path-image-wrapper {
    opacity: 1;
  }
  .main .projects .after-animation .clip-path-image-wrapper .square-image {
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 5;
    width: 10rem;
    height: 15rem;
    right: 2rem;
    top: 4rem;
    margin-right: 0;
  }
}
@media (max-width: 900px) and (min-width: 450px) {
  .main .projects .after-animation .clip-path-image-wrapper .square-image {
    width: 14rem;
    height: 19rem;
  }
}
@media (max-width: 900px) {
  .main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper {
    width: 100%;
    padding: 4rem 2rem;
    gap: 4rem;
  }
  .main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper {
    display: flex;
    flex-direction: column;
    max-width: 17rem;
  }
}
@media (max-width: 900px) and (min-width: 500px) {
  .main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper {
    max-width: 21rem;
  }
}
@media (max-width: 900px) {
  .main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper__wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    flex-wrap: wrap;
  }
  .main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-upper a {
    padding: 1rem 2rem;
  }
  .main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  .main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom .item {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    gap: 6px;
    width: 45%;
  }
}
@media (max-width: 900px) and (min-width: 450px) {
  .main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom .item {
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 900px) {
  .main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom .item svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  .main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom .item span {
    font-size: 2.6rem;
    line-height: normal;
    letter-spacing: 0;
  }
  .main .projects .after-animation .clip-path-image-wrapper .clip-path-content .text-wrapper .text-bottom .item p {
    font-size: 1rem;
  }
  .main .projects__grid {
    background: #282828;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    transition: opacity 0.5s ease;
    z-index: 40;
    padding: 2rem 0;
    overflow: hidden;
  }
  .main .projects__row {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1.6rem;
    flex-shrink: 0;
    justify-content: center;
    pointer-events: none;
  }
  .main .projects__row.no-gap {
    gap: 0;
  }
  .main .projects .item--large {
    width: 60vw;
  }
  .main .projects .item--big {
    width: 55vw;
  }
  .main .projects .item--medium {
    width: 50vw;
  }
  .main .projects .item--small {
    width: 20vw;
  }
  .main .projects .item--smallest {
    width: 10vw;
  }
  .main .projects .top-row {
    height: 30vh;
  }
  .main .projects .main-row {
    height: 40vh;
    position: relative;
    z-index: 30;
    align-items: center;
    justify-content: space-between;
  }
  .main .projects .main-row .highlight-image {
    max-width: 100%;
    max-height: 100%;
  }
  .main .projects .main-row .projects__item:not(.js-expandable) {
    width: 50vw;
  }
  .main .projects .main-row .projects__item.js-expandable {
    z-index: 30;
  }
  .main .projects .bottom-row {
    height: 30vh;
  }
  .main .projects__item {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0.8rem;
    height: 100%;
    z-index: 20;
  }
  .main .projects .highlight-image {
    z-index: 30;
  }
  .main .future-releases {
    padding: 4rem 2rem 32rem 2rem;
  }
  .main .future-releases__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding-bottom: 4rem;
  }
  .main .future-releases__header__title {
    align-items: flex-start;
    flex-direction: column;
    gap: 2.4rem;
  }
  .main .future-releases__header__title button {
    padding: 1rem 1.6rem;
    gap: 8px;
    font-weight: 400;
    font-size: 1.4rem;
  }
  .main .future-releases__header h6 {
    font-family: "Epilogue", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2rem;
    color: #282828;
  }
  .main .future-releases__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 3.2rem;
    margin-top: 3.2rem;
  }
  .main .future-releases__content .left-paragraph {
    line-height: 2.8rem;
  }
  .main .future-releases-slider .wrapper {
    padding: 0 3.2rem;
  }
}
@media (max-width: 900px) and (min-width: 768px) {
  .main .future-releases-slider .wrapper {
    padding: 0 5px 0 3.2rem;
  }
}
@media (max-width: 900px) {
  .main .future-releases-slider .wrapper .buttons-slider-div {
    position: relative;
    transform: translateY(-22.1rem);
    z-index: 20;
  }
  .main .future-releases-slider .wrapper .buttons-slider-div .left-button,
  .main .future-releases-slider .wrapper .buttons-slider-div .right-button {
    background: #181818;
  }
  .main .future-releases-slider .wrapper .buttons-slider-div .left-button svg path,
  .main .future-releases-slider .wrapper .buttons-slider-div .right-button svg path {
    fill: #ffffff;
  }
  .main .future-releases-slider__slider {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    transform: translateY(-25rem);
    margin-left: 0;
  }
  .main .future-releases-slider__slider__item {
    margin-right: 0;
  }
}
@media (max-width: 900px) and (min-width: 768px) {
  .main .future-releases-slider__slider__item {
    margin-right: 2.4rem;
  }
}
@media (max-width: 900px) {
  .main .future-releases-slider__slider__item .wrapper-text {
    flex-direction: column;
    gap: 1rem;
  }
  .main .future-releases-slider__slider__item img {
    width: 100%;
    height: 43.5rem;
    -o-object-fit: cover;
       object-fit: cover;
    position: relative;
    z-index: 1;
  }
  .main .future-releases-slider .btn-slider {
    transform: translateY(-25rem);
  }
  .main .future-releases-slider .btn-slider .btn-slider-div {
    position: relative;
    z-index: 90;
    display: flex;
    width: 5.6rem;
    height: 5.6rem;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 2000px;
    background: #ffffff;
  }
  .main .future-releases-slider .btn-slider .btn-slider-div svg {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes arrowMovement {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.ventures {
  min-height: 100vh;
  width: 100%;
  background: #1a1a1a;
  overflow: hidden;
}
.ventures__wrapper {
  width: 100%;
  padding: 11.4rem 0rem 0rem;
  display: flex;
  flex-direction: column;
}
.ventures__status-row:nth-child(even) {
  background: #6E6E5F;
}
.ventures__status-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 4rem 4rem;
  background: transparent;
}
.ventures__status-row__header {
  display: flex;
}
.ventures__status-row__header__word {
  display: flex;
  align-items: center;
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 100%;
  color: #ffffff;
  text-transform: uppercase;
}
.ventures__status-row__header__word::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #ec662b;
  border-radius: 99px;
  margin: 0 4rem;
}
.ventures__status-row__header__title {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 100%;
  color: #ffffff;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}
.ventures__status-row__building {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ventures__status-row__building__item {
  position: relative;
  overflow: hidden;
  height: 67.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}
.ventures__status-row__building__item:hover .video-button {
  opacity: 1;
}
.ventures__status-row__building__item:hover .ventures__status-row__building__item__title .tags {
  opacity: 1;
}
.ventures__status-row__building__item:hover .ventures__status-row__building__item__title p {
  opacity: 1;
}
.ventures__status-row__building__item:hover .ventures__status-row__building__item__footer {
  opacity: 1;
}
.ventures__status-row__building__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}
.ventures__status-row__building__item video,
.ventures__status-row__building__item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.ventures__status-row__building__item .video-button {
  opacity: 0;
  width: -moz-max-content;
  width: max-content;
  display: inline-flex;
  padding: 1rem 1.6rem;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 2000px;
  background: #ec662b;
  color: #edede8;
  position: relative;
  z-index: 30;
  font-family: "Epilogue", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: normal;
  transition: all 0.4s ease;
  border: 1px solid #ec662b;
}
.ventures__status-row__building__item .video-button:hover svg {
  transform: translateX(3px);
  animation: arrowMovement 0.6s ease-in-out infinite;
}
.ventures__status-row__building__item .video-button svg {
  width: 1.8rem;
  height: 1.8rem;
  transition: transform 0.3s ease;
}
@keyframes arrowMovement {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.ventures__status-row__building__item__title, .ventures__status-row__building__item__footer {
  width: 100%;
}
.ventures__status-row__building__item__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
  z-index: 30;
}
.ventures__status-row__building__item__title .tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  margin-bottom: 4.8rem;
  opacity: 0;
  transition: all 0.4s ease;
}
.ventures__status-row__building__item__title .tags span {
  color: #edede8;
  font-family: "IBM Plex Mono";
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
}
.ventures__status-row__building__item__title h2 {
  color: #edede8;
  font-family: "Epilogue";
  font-size: clamp(2rem, 2vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 3.2rem;
}
.ventures__status-row__building__item__title p {
  opacity: 0;
  color: #edede8;
  font-family: "Epilogue";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.5rem;
  margin-bottom: 3.2rem;
  transition: all 0.4s ease;
}
.ventures__status-row__building__item__footer {
  opacity: 0;
  display: flex;
  position: absolute;
  justify-content: center;
  bottom: 5rem;
  gap: 2.4rem;
  z-index: 30;
  padding: 0 1rem;
  transition: all 0.4s ease;
}
.ventures__status-row__building__item__footer__differences {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.ventures__status-row__building__item__footer__difference {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.ventures__status-row__building__item__footer__difference span {
  color: #edede8;
  font-family: "Epilogue";
  font-size: clamp(1.4rem, 2vw, 3.2rem);
  font-weight: 300;
  line-height: clamp(1.4rem, 2vw, 2.4rem);
  letter-spacing: -1.6px;
}
.ventures__status-row__building__item__footer__difference p {
  color: #edede8;
  font-family: "IBM Plex Mono";
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.ventures .bg-orange {
  background: #ec662b;
}
.ventures .border-orange {
  border: 1px solid #ec662b;
}

@media (max-width: 900px) {
  .ventures__wrapper {
    padding: 16.4rem 0rem 0rem;
  }
  .ventures__status-row__header {
    flex-direction: column;
    gap: 1.6rem;
  }
  .ventures__status-row__header__word::after {
    margin: 0 1rem;
  }
  .ventures__status-row__header__title {
    width: -moz-max-content;
    width: max-content;
  }
  .ventures__status-row__building {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 900px) and (min-width: 600px) {
  .ventures__status-row__building {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .ventures__status-row__building__item {
    height: 40rem;
  }
  .ventures__status-row__building__item .video-button {
    opacity: 1;
    padding: 8px 12px;
  }
  .ventures__status-row__building__item .ventures__status-row__building__item__title .tags {
    opacity: 1;
    margin-bottom: 3rem;
  }
  .ventures__status-row__building__item .ventures__status-row__building__item__title h2 {
    margin-bottom: 1.6rem;
  }
  .ventures__status-row__building__item .ventures__status-row__building__item__title p {
    opacity: 1;
    margin-bottom: 1.6rem;
  }
  .ventures__status-row__building__item .ventures__status-row__building__item__footer {
    bottom: auto;
    top: 2rem;
    opacity: 1;
  }
  .ventures__status-row__building__item .ventures__status-row__building__item__footer .ventures__status-row__building__item__footer__differences {
    flex-wrap: nowrap;
    gap: 1rem;
  }
  .ventures__status-row__building__item .ventures__status-row__building__item__footer .ventures__status-row__building__item__footer__differences .ventures__status-row__building__item__footer__difference {
    gap: 8px;
    text-align: center;
  }
  .ventures__status-row__building__item .ventures__status-row__building__item__footer .ventures__status-row__building__item__footer__differences .ventures__status-row__building__item__footer__difference span {
    letter-spacing: normal;
  }
  .ventures__status-row__building__item__title {
    text-align: center;
  }
}
.venture__details {
  overflow: hidden;
}
.venture__details__section1 {
  background: #edede8;
}
.venture__details__section1__background-gray {
  background: #181818;
  width: 100%;
  height: 51rem;
  flex: 1;
}
.venture__details__section1__video {
  flex: 1;
  width: 100%;
  height: 51rem;
  position: relative;
  overflow: hidden;
}
.venture__details__section1__video::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}
.venture__details__section1__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: fixed;
}
.venture__details__section1__header {
  position: relative;
  padding: 4rem;
  background: #edede8;
}
.venture__details__section1__header .image-highlight-div {
  position: absolute;
  top: -20rem;
  right: 13.7rem;
  width: 100%;
  height: 48.5rem;
  max-width: 32.5rem;
  z-index: 20;
}
@media (max-width: 1300px) {
  .venture__details__section1__header .image-highlight-div {
    right: 4rem;
    height: 30rem;
  }
}
.venture__details__section1__header .image-highlight-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.venture__details__section1__header__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.venture__details__section1__header__wrapper .tags {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.venture__details__section1__header__wrapper .tags .tag {
  font-family: "IBM Plex Mono";
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.venture__details__section1__header__wrapper .tags .tag.orange {
  color: #ec662b;
}
.venture__details__section1__header__wrapper .title {
  color: #282828;
  font-family: "Epilogue";
  font-size: clamp(3.4rem, 6vw, 7.2rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -3.6px;
}
.venture__details__section1__header__wrapper .description {
  color: #282828;
  font-family: "Epilogue";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
}
.venture__details__section1__header__wrapper .differences {
  display: flex;
  align-items: center;
  gap: 7rem;
}
.venture__details__section1__header__wrapper .differences .difference {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}
.venture__details__section1__header__wrapper .differences .difference img {
  width: 2.4rem;
  height: 2.4rem;
  filter: brightness(0);
}
.venture__details__section1__header__wrapper .differences .difference .difference__number {
  color: #282828;
  font-family: "Epilogue";
  font-size: 5.2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 4.9rem;
  letter-spacing: -2.6px;
}
.venture__details__section1__header__wrapper .differences .difference .difference__title {
  color: #282828;
  font-family: "IBM Plex Mono";
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.venture__details__section2 {
  background: #edede8;
  padding: 3.2rem 0 0 4rem;
  position: relative;
  z-index: 2;
}
.venture__details__section2__content {
  position: relative;
  display: flex;
  gap: 6rem;
  padding-top: 5.6rem;
}
.venture__details__section2__content__text {
  position: sticky;
  top: 0;
  height: -moz-max-content;
  height: max-content;
  max-width: 45.3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.venture__details__section2__content__text h3 {
  color: #282828;
  font-family: "Epilogue";
  font-size: 4rem;
  font-style: normal;
  font-weight: 300;
  line-height: 4.3rem;
  letter-spacing: -2px;
}
.venture__details__section2__content__text p {
  max-width: 30rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: "Epilogue";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
}
.venture__details__section2__content__text .buttons-pagination {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.venture__details__section2__content__text .buttons-pagination .slider-js-venture-details-carousel-pagination {
  width: 100%;
}
.venture__details__section2__content__text .buttons-pagination .slider-js-venture-details-carousel-pagination .slick-dots {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 2rem;
}
.venture__details__section2__content__text .buttons-pagination .slider-js-venture-details-carousel-pagination .slick-dots li {
  padding-top: 0;
  margin: 0;
}
.venture__details__section2__content__text .buttons-pagination .slider-js-venture-details-carousel-pagination .slick-dots li.slick-active a {
  background-color: #ec662b;
}
.venture__details__section2__content__text .buttons-pagination .slider-js-venture-details-carousel-pagination .slick-dots li a {
  height: 4px;
  width: 100%;
  background-color: #e5e5e5;
  display: block;
  transition: background-color 0.3s;
  font-size: 0;
}
.venture__details__section2__content__text .generic-button {
  padding: 1.6rem 2.4rem;
}
.venture__details__section2__content__slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.venture__details__section2__content__slider .item {
  flex: 1;
  margin-right: 1.6rem;
  width: 744px;
  height: 682px;
}
.venture__details__section2__content__slider .item:last-child {
  margin-right: 0;
}
.venture__details__section2__content__slider .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.venture__details__section3 {
  background: #edede8;
  padding: 13.6rem 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 1400px) {
  .venture__details__section3 {
    padding: 6.6rem 2rem;
  }
}
.venture__details__section3__content {
  max-width: 52.4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4rem;
  text-align: center;
}
.venture__details__section3__content h3 {
  color: #282828;
  font-family: "Epilogue";
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-style: normal;
  font-weight: 300;
  line-height: 4.3rem;
  letter-spacing: -2px;
}
.venture__details__section3__content p {
  color: rgba(0, 0, 0, 0.4);
  font-family: "Epilogue";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
  max-width: 35.2rem;
}
.venture__details__section3__content .generic-button {
  padding: 1.6rem 2.4rem;
}
.venture__details__section4 {
  background: #edede8;
  padding: 3.4rem 3rem 6.4rem;
  position: relative;
  z-index: 2;
}
.venture__details__section4__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7.2rem;
  text-align: center;
}
.venture__details__section4__content h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #282828;
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: clamp(3.4rem, 6vw, 24.3rem);
  letter-spacing: -5%;
  text-transform: uppercase;
}
.venture__details__section4__content h2 .point {
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: clamp(3.4rem, 6vw, 24.3rem);
  letter-spacing: -1rem;
  color: #ec662b;
}
.venture__details__section4__content p {
  max-width: 35.2rem;
  font-family: "Epilogue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.5rem;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}
.venture__details__section4__content__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
}
.venture__details__section4__content__tags div {
  max-width: 13.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.6rem;
}
.venture__details__section4__content__tags div img {
  width: 4rem;
  height: 4rem;
}
.venture__details__section4__content__tags div span {
  text-transform: uppercase;
  color: #282828;
  font-family: "IBM Plex Mono";
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.venture__details__section5 {
  background: #282828;
  position: relative;
  z-index: 2;
}
.venture__details__section5__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.6rem;
}
.venture__details__section5__content div {
  position: relative;
}
.venture__details__section5__content div span {
  position: absolute;
  left: 2.4rem;
  bottom: 2.4rem;
  z-index: 120;
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #282828;
  gap: 8px;
  color: #edede8;
  font-family: "IBM Plex Mono";
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.venture__details__section5__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.venture__details__section5__content .image-highlight-div {
  width: 100%;
  height: 100%;
  max-height: 81rem;
  position: relative;
  overflow: hidden;
}
.venture__details__section5__content .image-highlight-div img {
  aspect-ratio: 16/9;
}
.venture__details__section5__content .double-image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.venture__details__section5__content .double-image-wrapper__image__one {
  display: flex;
  width: 100%;
  height: 100%;
}
@media (min-width: 1400px) {
  .venture__details__section5__content .double-image-wrapper__image__one {
    width: 45%;
  }
}
.venture__details__section5__content .double-image-wrapper__image__one img {
  max-height: 56.2rem;
  height: 100%;
  aspect-ratio: 1/1;
}
.venture__details__section5__content .double-image-wrapper__image__two {
  display: flex;
  width: 100%;
  height: 100%;
}
@media (min-width: 1400px) {
  .venture__details__section5__content .double-image-wrapper__image__two {
    width: 55%;
  }
}
.venture__details__section5__content .double-image-wrapper__image__two img {
  max-height: 56.2rem;
  height: 100%;
  aspect-ratio: 1/1;
}
.venture__details__section6 {
  padding: 18.4rem 1rem 6.4rem 1rem;
  background: #282828;
  position: relative;
  z-index: 15;
}
.venture__details__section6__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7.2rem;
  text-align: center;
}
.venture__details__section6__content h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #edede8;
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: clamp(3.4rem, 6vw, 17.8rem);
  letter-spacing: -5%;
  text-transform: uppercase;
}
.venture__details__section6__content h2 .point {
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: clamp(3.4rem, 6vw, 17.8rem);
  letter-spacing: -1rem;
  color: #ec662b;
}
.venture__details__section6__content p {
  max-width: 35.2rem;
  font-family: "Epilogue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.5rem;
  letter-spacing: 0%;
  text-align: center;
  color: #edede8;
}
.venture__details__section6__content__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
}
.venture__details__section6__content__tags div {
  max-width: 17.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.6rem;
}
.venture__details__section6__content__tags div img {
  width: 4rem;
  height: 4rem;
}
.venture__details__section6__content__tags div span {
  text-transform: uppercase;
  color: #edede8;
  font-family: "IBM Plex Mono";
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.venture__details__section7 {
  background: #282828;
  padding-bottom: 1.6rem;
  position: relative;
  z-index: 2;
}
.venture__details__section7__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.6rem;
}
.venture__details__section7__content div {
  position: relative;
}
.venture__details__section7__content div span {
  position: absolute;
  left: 2.4rem;
  bottom: 2.4rem;
  z-index: 120;
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #282828;
  gap: 8px;
  color: #edede8;
  font-family: "IBM Plex Mono";
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.venture__details__section7__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.venture__details__section7__content .image-highlight-div {
  width: 100%;
  height: 100%;
  max-height: 81rem;
  position: relative;
  overflow: hidden;
}
.venture__details__section7__content .image-highlight-div img {
  aspect-ratio: 16/9;
}
.venture__details__section7__content .double-image-wrapper-50-50 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.venture__details__section7__content .double-image-wrapper-50-50 .image__one,
.venture__details__section7__content .double-image-wrapper-50-50 .image__two {
  display: flex;
  flex: 1;
  height: 100%;
}
.venture__details__section7__content .double-image-wrapper-50-50 .image__one img,
.venture__details__section7__content .double-image-wrapper-50-50 .image__two img {
  max-height: 56.2rem;
  height: 100%;
  aspect-ratio: 1/1;
}
.venture__details__section7__content .double-image-wrapper-30-70 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.venture__details__section7__content .double-image-wrapper-30-70 .image__one {
  display: flex;
  width: 50%;
  height: 100%;
}
@media (max-width: 1400px) {
  .venture__details__section7__content .double-image-wrapper-30-70 .image__one {
    width: 100%;
    flex: 1;
  }
}
.venture__details__section7__content .double-image-wrapper-30-70 .image__one img {
  max-height: 56.2rem;
  height: 100%;
  aspect-ratio: 1/1;
}
.venture__details__section7__content .double-image-wrapper-30-70 .image__two {
  display: flex;
  width: 70%;
  height: 100%;
}
@media (max-width: 1400px) {
  .venture__details__section7__content .double-image-wrapper-30-70 .image__two {
    width: 100%;
    flex: 1;
  }
}
.venture__details__section7__content .double-image-wrapper-30-70 .image__two img {
  max-height: 56.2rem;
  height: 100%;
  aspect-ratio: 1/1;
}
.venture__details__section8 {
  background: #edede8;
  padding: 8.8rem 0rem 6.8rem 4rem;
  position: relative;
  z-index: 2;
}
.venture__details__section8__content {
  width: 100%;
  display: flex;
  gap: 12rem;
}
.venture__details__section8__content__sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 22.5rem;
  max-width: 22.5rem;
  gap: 4rem;
}
.venture__details__section8__content__sidebar h3 {
  color: #282828;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(3.2rem, 6vw, 4rem);
  font-style: normal;
  font-weight: 300;
  line-height: 4.3rem;
  letter-spacing: -2px;
}
.venture__details__section8__content__sidebar__list ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.venture__details__section8__content__sidebar__list ul li {
  color: #282828;
  font-family: "Epilogue", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 8px 16px;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid #6e6e5f;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
.venture__details__section8__content__sidebar__list ul li.active {
  background: #282828;
  color: #ffffff;
}
.venture__details__section8__content__sidebar .generic-button {
  padding: 1.6rem 2.4rem;
}
.venture__details__section8__content__main {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.venture__details__section8__content__main__header {
  width: 100%;
  max-width: 109rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-right: 5.6rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 1400px) {
  .venture__details__section8__content__main__header {
    flex-direction: row;
    gap: 8.6rem;
    align-items: center;
  }
}
.venture__details__section8__content__main__header h4 {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #282828;
  white-space: nowrap;
}
.venture__details__section8__content__main__header .black-circle {
  width: 6px;
  height: 6px;
  background: #282828;
  border-radius: 100px;
}
.venture__details__section8__content__main__header .bedrooms {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  white-space: nowrap;
}
.venture__details__section8__content__main__header .bedrooms span {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: #282828;
}
.venture__details__section8__content__main__header .image-and-compass {
  display: flex;
  gap: 2.4rem;
  justify-content: space-between;
  align-items: center;
}
.venture__details__section8__content__main__header .image-and-compass .image {
  width: 100%;
}
.venture__details__section8__content__main__header .image-and-compass .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.venture__details__section8__content__main__header .image-and-compass .compass img {
  width: 100%;
  height: 100%;
  max-width: 10rem;
  max-height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.venture__details__section8__content__main__slider {
  margin-bottom: 4rem;
}
.venture__details__section8__content__main__slider__item {
  margin-right: 4rem;
}
.venture__details__section8__content__main__slider__item .image-div {
  width: 100%;
}
.venture__details__section8__content__main__slider__item .image-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.venture__details__section8__content__main__slider__item .wrapper-text {
  margin-top: 1.6rem;
}
.venture__details__section8__content__main__slider__item .wrapper-text h3 {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: #282828;
  text-transform: uppercase;
}
.venture__details__section8__content__main__slider__item .wrapper-text p {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #282828;
  font-size: 1.3rem;
}
.venture__details__section8__content__main .buttons-slider-div {
  margin-bottom: 4rem;
}
.venture__details__section8 .venture__details__section8__content__main__pagination {
  width: 100%;
}
.venture__details__section8 .venture__details__section8__content__main__pagination .slick-dots {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 2rem;
}
.venture__details__section8 .venture__details__section8__content__main__pagination .slick-dots li {
  padding-top: 0;
  margin: 0;
}
.venture__details__section8 .venture__details__section8__content__main__pagination .slick-dots li.slick-active a {
  background-color: #ec662b;
}
.venture__details__section8 .venture__details__section8__content__main__pagination .slick-dots li a {
  height: 4px;
  width: 100%;
  background-color: #e5e5e5;
  display: block;
  transition: background-color 0.3s;
  font-size: 0;
}
.venture__details__section9 {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 500;
}
.venture__details__section9 .map__background-image {
  width: 62%;
}
.venture__details__section9 .map__background-image iframe {
  width: 100%;
  height: 100%;
}
.venture__details__section9 .info-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 38%;
  background: #181818;
}
.venture__details__section9 .info-wrapper .map__info {
  display: flex;
  flex-direction: column;
  z-index: 500;
  gap: 2.4rem;
  border-bottom: 1px solid rgba(237, 237, 232, 0.2);
  padding: 6rem 4rem;
}
@media (min-width: 1200px) {
  .venture__details__section9 .info-wrapper .map__info {
    padding: 8.8rem 7.2rem;
  }
}
.venture__details__section9 .info-wrapper .map__info h6 {
  color: #edede8;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 4.3rem;
  letter-spacing: -2px;
}
.venture__details__section9 .info-wrapper .map__info .map__info__content_upper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.6rem;
}
.venture__details__section9 .info-wrapper .map__info .map__info__content_upper .icon-div {
  display: flex;
  gap: 1.6rem;
}
.venture__details__section9 .info-wrapper .map__info .map__info__content_upper .icon-div p {
  color: #edede8;
  font-family: "IBM Plex Mono", sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.venture__details__section9 .info-wrapper .map__info .map__info__content_upper .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.venture__details__section9 .info-wrapper .map__info .map__info__content_upper .info p {
  color: #edede8;
  font-family: "IBM Plex Mono", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.venture__details__section9 .info-wrapper .bottom__info {
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 500;
  gap: 3.2rem;
  padding: 8.8rem 7.2rem;
}
.venture__details__section9 .info-wrapper .bottom__info p {
  font-family: "Epilogue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.7rem;
  color: #edede8;
}
.venture__details__section9 .info-wrapper .bottom__info .map__info__content_lower {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3.2rem;
}
.venture__details__section9 .info-wrapper .bottom__info .map__info__content_lower .icon-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.venture__details__section9 .info-wrapper .bottom__info .map__info__content_lower .icon-div p {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: normal;
  letter-spacing: 0%;
  color: #edede8;
  text-transform: uppercase;
}
.venture__details__section9 .info-wrapper .bottom__info .generic-button {
  width: 100%;
  display: flex;
  padding: 1.6rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-family: "Epilogue", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: normal;
}
.venture__details__section10 {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  background: #6e6e5f;
  position: relative;
  z-index: 2;
}
.venture__details__section10__progress-work {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 6.4rem 4rem 0 4rem;
  overflow: hidden;
}
.venture__details__section10__progress-work .background-image {
  position: absolute;
  top: 50%;
  right: -6rem;
  height: 50.6rem;
  transform: translateY(-50%);
}
@media (min-width: 1600px) {
  .venture__details__section10__progress-work .background-image {
    right: 0;
    height: 60rem;
  }
}
.venture__details__section10__progress-work .background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.venture__details__section10__progress-work .info {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  z-index: 50;
}
.venture__details__section10__progress-work .info .info__title {
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: clamp(4.5rem, 6vw, 17.8rem);
  line-height: 100%;
  letter-spacing: -5%;
  max-width: 92rem;
  text-transform: uppercase;
  color: #edede8;
}
.venture__details__section10__progress-work .info .info__title .point {
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: clamp(5rem, 6vw, 17.8rem);
  letter-spacing: -1rem;
  color: #ec662b;
}
.venture__details__section10__progress-work .info .info__text {
  font-family: "Epilogue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.7rem;
  color: #edede8;
  max-width: 35.2rem;
}
.venture__details__section10__progress-work .info ul {
  width: 100%;
  display: flex;
  gap: 7.2rem;
}
.venture__details__section10__progress-work .info ul li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.venture__details__section10__progress-work .info ul li .progress-number {
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: 5.2rem;
  line-height: 4.9rem;
  letter-spacing: -2.6px;
  color: #edede8;
}
.venture__details__section10__progress-work .info ul li .progress-title {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.7rem;
  letter-spacing: 0%;
  color: #edede8;
  text-transform: uppercase;
}
.venture__details__section10__progress-work .buttons-slider-div {
  margin-top: 3.2rem;
}
.venture__details__section10__progress-work .slider-js-venture-details-progress-work-pagination {
  width: 100%;
  margin-top: 2.4rem;
}
.venture__details__section10__progress-work .slider-js-venture-details-progress-work-pagination .slick-dots {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 2rem;
}
.venture__details__section10__progress-work .slider-js-venture-details-progress-work-pagination .slick-dots li {
  padding-top: 0;
  margin: 0;
  height: 2px;
}
.venture__details__section10__progress-work .slider-js-venture-details-progress-work-pagination .slick-dots li.slick-active a {
  background-color: #ec662b;
}
.venture__details__section10__progress-work .slider-js-venture-details-progress-work-pagination .slick-dots li a {
  height: 2px !important;
  width: 100%;
  background-color: #e5e5e5;
  display: block;
  transition: background-color 0.3s;
  font-size: 0;
}
.venture__details__section10__gallery {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 0rem 0rem 4.4rem 2.5rem;
}
.venture__details__section10__gallery__slider {
  width: 100%;
}
.venture__details__section10__gallery .item {
  height: 100%;
  margin-left: 1.5rem;
}
.venture__details__section10__gallery .item .item-title {
  margin-top: 2.4rem;
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 100%;
  color: #edede8;
  text-transform: uppercase;
  z-index: 100;
  position: relative;
}
.venture__details__section10__gallery .item .img-div {
  position: relative;
}
.venture__details__section10__gallery .item .img-div::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 20;
}
.venture__details__section10__gallery .item .img-div iframe,
.venture__details__section10__gallery .item .img-div img {
  width: 100%;
  height: 100%;
  max-height: 41.9rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  aspect-ratio: 16/9;
}
.venture__details__section10__gallery .item .img-div .inside-title {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 100%;
  color: #edede8;
  text-transform: uppercase;
  z-index: 100;
}
.venture__details__section10__gallery .buttons-slider-div {
  margin-top: 2.2rem;
  padding-left: 1.5rem;
}
.venture__details__section10__gallery .slider-js-venture-details-gallery-pagination {
  width: 100%;
  margin-top: 2.4rem;
  padding-right: 4rem;
  padding-left: 1.5rem;
}
.venture__details__section10__gallery .slider-js-venture-details-gallery-pagination .slick-dots {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 2rem;
}
.venture__details__section10__gallery .slider-js-venture-details-gallery-pagination .slick-dots li {
  padding-top: 0;
  margin: 0;
  height: 2px;
}
.venture__details__section10__gallery .slider-js-venture-details-gallery-pagination .slick-dots li.slick-active a {
  background-color: #ec662b;
}
.venture__details__section10__gallery .slider-js-venture-details-gallery-pagination .slick-dots li a {
  height: 2px !important;
  width: 100%;
  background-color: #e5e5e5;
  display: block;
  transition: background-color 0.3s;
  font-size: 0;
}
.venture__details__section11 {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  padding: 0 4rem 7.2rem 4rem;
  background: #6e6e5f;
  position: relative;
  z-index: 2;
}
.venture__details__section11__content {
  display: flex;
  flex-direction: column;
  padding: 20rem 8rem;
  height: 100%;
  max-height: 54.3rem;
}
.venture__details__section11__content .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7.2rem;
}
.venture__details__section11__content .wrapper .wrapper__left {
  max-width: 55.5rem;
}
.venture__details__section11__content .wrapper .wrapper__left h2 {
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: clamp(4.5rem, 6vw, 7.2rem);
  line-height: 100%;
  letter-spacing: -3px;
  color: #edede8;
}
.venture__details__section11__content .wrapper .wrapper__right {
  max-width: 36.7rem;
}
.venture__details__section11__content .wrapper .wrapper__right .generic-button {
  width: 100%;
  padding: 1.6rem 8.5rem;
  text-transform: none;
}
@media (max-width: 1200px) {
  .venture__details__section11__content .wrapper .wrapper__right .generic-button {
    padding: 1.6rem 3.2rem;
  }
}

@media (max-width: 900px) {
  .venture__details__section1__video {
    flex: 1;
    width: 100%;
    height: 51rem;
    position: relative;
    overflow: hidden;
  }
  .venture__details__section1__video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    position: fixed;
  }
  .venture__details__section1__header {
    padding: 2rem;
  }
  .venture__details__section1__header .image-highlight-div {
    right: 2rem;
    height: 24.5rem;
    max-width: 16.5rem;
  }
  .venture__details__section1__header__wrapper .tags {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .venture__details__section1__header__wrapper .differences {
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 30rem;
  }
}
@media (max-width: 900px) and (min-width: 600px) {
  .venture__details__section1__header__wrapper .differences {
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 4rem;
  }
}
@media (max-width: 900px) {
  .venture__details__section1__header__wrapper .differences .difference {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .venture__details__section1__header__wrapper .differences .difference .difference__number {
    font-size: 3rem;
  }
  .venture__details__section2 {
    padding: 2rem;
  }
  .venture__details__section2__content {
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 0;
  }
  .venture__details__section2__content__text {
    gap: 2rem;
  }
  .venture__details__section2__content__text h3 {
    font-size: 3.4rem;
  }
  .venture__details__section2__content__text .buttons-pagination {
    gap: 2rem;
  }
  .venture__details__section2__content__text .generic-button {
    padding: 1.6rem 2.4rem;
  }
  .venture__details__section2__content__slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .venture__details__section2__content__slider .item {
    flex: 1;
    margin-right: 0;
    height: 40rem;
  }
  .venture__details__section2__content__slider .item:last-child {
    margin-right: 0;
  }
  .venture__details__section2__content__slider .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .venture__details__section3 {
    background: #edede8;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
  }
  .venture__details__section3__content {
    gap: 4rem;
  }
  .venture__details__section3__content h3 {
    line-height: 3rem;
  }
  .venture__details__section4 {
    padding: 6rem 2rem;
  }
  .venture__details__section4__content {
    gap: 4rem;
  }
  .venture__details__section4__content h2 {
    line-height: 100%;
  }
  .venture__details__section4__content__tags {
    gap: 2rem;
    flex-wrap: wrap;
  }
  .venture__details__section4__content__tags div span {
    font-size: 1rem;
  }
  .venture__details__section5__content {
    gap: 1rem;
  }
  .venture__details__section5__content div span {
    font-size: 1rem;
  }
  .venture__details__section5__content .image-highlight-div {
    width: 100%;
    height: 100%;
    max-height: 81rem;
    position: relative;
    overflow: hidden;
  }
  .venture__details__section5__content .image-highlight-div img {
    aspect-ratio: 16/9;
  }
  .venture__details__section5__content .double-image-wrapper__image__one, .venture__details__section5__content .double-image-wrapper__image__two {
    width: 100%;
  }
  .venture__details__section6 {
    background: #282828;
    padding: 6rem 2rem 6rem;
    position: relative;
  }
  .venture__details__section6__content {
    gap: 4rem;
  }
  .venture__details__section6__content h2 {
    align-items: flex-end;
  }
  .venture__details__section6__content__tags {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .venture__details__section6__content__tags div {
    max-width: 11.8rem;
  }
  .venture__details__section6__content__tags div span {
    font-size: 1rem;
  }
  .venture__details__section7__content div span {
    font-size: 1rem;
  }
  .venture__details__section8 {
    padding: 4rem 2rem;
  }
  .venture__details__section8__content {
    flex-direction: column;
    gap: 3rem;
  }
  .venture__details__section8__content__sidebar {
    gap: 1rem;
  }
  .venture__details__section8__content__sidebar__list ul li {
    padding: 8px 0;
    line-height: 1.7rem;
    font-size: 1.4rem;
  }
  .venture__details__section8__content__main__header {
    align-items: flex-start;
    gap: 2rem;
    margin: 0;
    flex-direction: column;
  }
  .venture__details__section8__content__main__header .image-and-compass {
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .venture__details__section8__content__main__header .image-and-compass img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .venture__details__section8__content__main__slider {
    margin-bottom: 2rem;
  }
  .venture__details__section8__content__main__slider__item .wrapper-text {
    margin-top: 1.6rem;
  }
  .venture__details__section9 {
    flex-direction: column;
  }
  .venture__details__section9 .map__background-image {
    display: flex;
    width: 100%;
    height: 30rem;
  }
  .venture__details__section9 .info-wrapper {
    width: 100%;
  }
  .venture__details__section9 .info-wrapper .map__info {
    padding: 4rem 3.2rem;
  }
  .venture__details__section9 .info-wrapper .map__info h6 {
    line-height: 120%;
  }
  .venture__details__section9 .info-wrapper .bottom__info {
    gap: 3.2rem;
    padding: 4rem 3.2rem;
  }
  .venture__details__section9 .info-wrapper .bottom__info p {
    line-height: 2.4rem;
  }
  .venture__details__section10 {
    gap: 1rem;
  }
  .venture__details__section10__progress-work {
    padding: 4rem 2rem;
  }
  .venture__details__section10__progress-work .info {
    gap: 4rem;
  }
  .venture__details__section10__progress-work .info .info__text {
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.7rem;
    color: #edede8;
    max-width: 35.2rem;
  }
  .venture__details__section10__progress-work .info ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .venture__details__section10__progress-work .info ul li {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .venture__details__section10__progress-work .info ul li .progress-number {
    font-family: "Epilogue", sans-serif;
    font-weight: 300;
    font-size: 5.2rem;
    line-height: 4.9rem;
    letter-spacing: -2.6px;
    color: #edede8;
  }
  .venture__details__section10__progress-work .info ul li .progress-title {
    font-family: "IBM Plex Mono", sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.7rem;
    letter-spacing: 0%;
    color: #edede8;
    text-transform: uppercase;
  }
  .venture__details__section10__progress-work .buttons-slider-div {
    margin-top: 3.2rem;
  }
  .venture__details__section10__progress-work .slider-js-venture-details-progress-work-pagination {
    width: 100%;
    margin-top: 2.4rem;
  }
  .venture__details__section10__gallery {
    padding: 0 2rem 2rem 2rem;
  }
  .venture__details__section10__gallery .item {
    margin-left: 0;
  }
  .venture__details__section10__gallery .item img {
    width: 100%;
    height: 100%;
    max-height: 41.9rem;
    -o-object-fit: cover;
       object-fit: cover;
    position: relative;
    aspect-ratio: 16/9;
  }
  .venture__details__section10__gallery .buttons-slider-div {
    margin-top: 2.2rem;
    padding-left: 0;
  }
  .venture__details__section10__gallery .slider-js-venture-details-gallery-pagination {
    margin-top: 2.4rem;
    padding-right: 0;
    padding-left: 0;
  }
  .venture__details__section11 {
    padding: 0 2rem 5rem 2rem;
  }
  .venture__details__section11__content {
    display: flex;
    flex-direction: column;
    padding: 5rem 4rem;
    height: 100%;
    max-height: 54.3rem;
  }
  .venture__details__section11__content .wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  .venture__details__section11__content .wrapper .wrapper__left {
    max-width: 55.5rem;
  }
  .venture__details__section11__content .wrapper .wrapper__right {
    max-width: 36.7rem;
  }
  .venture__details__section11__content .wrapper .wrapper__right .generic-button {
    width: -moz-max-content;
    width: max-content;
    padding: 1.6rem;
  }
}
.about-page {
  position: relative;
  height: auto;
  overflow: hidden;
}
.about-page__banner::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  background: linear-gradient(180deg, rgba(40, 40, 40, 0.1) 0%, #282828 100%), linear-gradient(180deg, rgba(40, 40, 40, 0.1) 0%, #282828 100%);
  pointer-events: none;
}
.about-page__banner .sticky-wrapper {
  position: relative;
  height: 200vh;
}
.about-page__banner .sticky-video {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 1;
}
.about-page__banner .sticky-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-page__banner .section {
  position: relative;
  height: 100vh;
  width: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-page__banner .section-content {
  max-width: 65.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  padding: 0 4rem;
}
.about-page__banner .section-span {
  color: var(--Cores-Base-Branco, #fff);
  font-family: "IBM Plex Mono", sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.about-page__banner .section-title {
  color: #ffffff;
  text-align: center;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(4rem, 6vw, 6.2rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -3.6px;
}
.about-page__banner .section-text {
  max-width: 52.8rem;
  color: #edede8;
  font-family: "Epilogue", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
  text-align: center;
}
.about-page__banner .section-title-two {
  color: #ffffff;
  text-align: center;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-style: normal;
  font-weight: 300;
  line-height: 4.3rem;
  letter-spacing: -2px;
}
.about-page__banner .button {
  display: flex;
  padding: 1.6rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 2000px;
  background: #ec662b;
  color: #ffffff;
  font-family: "Epilogue", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  transition: transform 0.3s ease;
}
.about-page__banner .button:hover {
  transform: scale(1.05);
}
.about-page__content__two {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  background-color: #282828;
  align-items: flex-start;
  justify-content: center;
  padding: 12.9rem 0rem;
  overflow: hidden;
}
.about-page__content__two .background-about {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 99;
  will-change: transform;
  background-image: url(/images/MRPgigante.svg?01b61b1a9a8e5c328041c48264551f50);
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: auto 100%;
  animation: moveBackground 60s linear infinite;
}
.about-page__content__two__body {
  width: 100%;
  height: 50.6rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18rem;
  z-index: 180;
}
.about-page__content__two__body__left, .about-page__content__two__body__right {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.about-page__content__two__body__left h4, .about-page__content__two__body__right h4 {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: #ffffff;
  font-family: "Epilogue";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.about-page__content__two__body__left .stats, .about-page__content__two__body__right .stats {
  display: flex;
  gap: 5.6rem;
}
.about-page__content__two__body__left .stats__item, .about-page__content__two__body__right .stats__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.about-page__content__two__body__left .stats__item__number, .about-page__content__two__body__right .stats__item__number {
  color: #ffffff;
  font-family: "Epilogue";
  font-size: clamp(4rem, 6vw, 7.2rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -3.6px;
  width: -moz-max-content;
  width: max-content;
}
.about-page__content__two__body__left .stats__item__text, .about-page__content__two__body__right .stats__item__text {
  display: flex;
  flex-wrap: wrap;
  color: #ffffff;
  font-family: "IBM Plex Mono";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  max-width: 8rem;
}
.about-page__content__two__title {
  color: #ffffff;
  font-family: "Epilogue";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.about-page__content__three {
  padding: 7.2rem 5.6rem 4rem;
  background: #edede8;
  z-index: 10;
  position: relative;
}
.about-page__content__three__title {
  width: 100%;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-bottom: 3.8rem;
}
.about-page__content__three__title h2 {
  color: #282828;
  font-family: "Epilogue";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.about-page__content__three__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 4rem;
}
.about-page__content__three__header__title {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.6rem;
  text-transform: lowercase;
}
.about-page__content__three__header__title h1 {
  max-width: 62rem;
  height: -moz-max-content;
  height: max-content;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -3.25px;
  color: #282828;
}
.about-page__content__three__header h6 {
  font-family: "Epilogue", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2rem;
  color: #282828;
}
.about-page__content__three .slider-div {
  position: relative;
  z-index: 10;
}
.about-page__content__three .slider-div .about-page__content__three__slider .slick-slide {
  margin-right: 12rem;
}
.about-page__content__three .slider-div .about-page__content__three__slider .slick-list {
  overflow: visible;
  margin-right: -12rem;
}
.about-page__content__three .slider-div .about-page__content__three__slider__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-top: 10px;
  max-width: 63.4rem;
  box-sizing: border-box;
}
.about-page__content__three .slider-div .about-page__content__three__slider__item::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  width: 2.1rem;
  height: 2.1rem;
  background: #ec662b;
  border-radius: 50%;
  z-index: 999;
}
.about-page__content__three .slider-div .about-page__content__three__slider__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background: #282828;
}
.about-page__content__three .slider-div .about-page__content__three__slider__item h3 {
  color: #282828;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(4rem, 6vw, 20rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -1.08px;
  margin-top: 3.2rem;
}
.about-page__content__three .slider-div .about-page__content__three__slider__item .title-and-image {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 1.6rem;
  flex-direction: column;
}
.about-page__content__three .slider-div .about-page__content__three__slider__item .title-and-image h6 {
  color: #282828;
  font-family: "Epilogue", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
}
.about-page__content__three .slider-div .about-page__content__three__slider__item .title-and-image img {
  width: 100%;
  height: 100%;
  max-width: 46rem;
  max-height: 46rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-page__future-releases {
  padding: 7.2rem 5.6rem 38.5rem;
  background: #edede8;
  z-index: 10;
  position: relative;
}
.about-page__future-releases__title {
  width: 100%;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-bottom: 3.8rem;
}
.about-page__future-releases__title h2 {
  color: #282828;
  font-family: "Epilogue";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.about-page__future-releases__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 4rem;
}
.about-page__future-releases__header__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  text-transform: lowercase;
}
.about-page__future-releases__header__title h1 {
  font-family: "Epilogue", sans-serif;
  height: -moz-max-content;
  height: max-content;
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -3.25px;
  color: #282828;
}
.about-page__future-releases__header__title a {
  display: flex;
  padding: 1.6rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 2000px;
  background: #ec662b;
  border: none;
  color: #ffffff;
  font-family: "Epilogue", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.3s ease;
  text-transform: lowercase;
}
.about-page__future-releases__header__title a:hover {
  background: #ec662b;
  color: #ffffff;
}
.about-page__future-releases__header__title a svg {
  width: 2.4rem;
  height: 2.4rem;
}
.about-page__future-releases__header__title a svg path {
  fill: #ffffff;
}
.about-page__future-releases__header h6 {
  font-family: "Epilogue", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2rem;
  color: #282828;
}
.about-page__future-releases__content {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-top: 7.2rem;
  gap: 16.8rem;
}
.about-page__future-releases__content .left-paragraph {
  max-width: 49.3rem;
  font-family: "Epilogue", sans-serif;
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.4rem;
  color: #282828;
  text-transform: lowercase;
}
.about-page__future-releases__content .right-paragraph {
  max-width: 48.4rem;
  font-family: "Epilogue", sans-serif;
  font-family: Epilogue;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
  color: #282828;
}
.about-page__future-releases-slider {
  width: 100%;
  height: 57.2rem;
  background-color: #6e6e5f;
  z-index: 10;
  position: relative;
}
.about-page__future-releases-slider .wrapper {
  position: relative;
  z-index: 1;
  padding: 0 0 0 5.6rem;
  display: flex;
  align-items: center;
  gap: 15rem;
}
@media (max-width: 1100px) {
  .about-page__future-releases-slider .wrapper {
    flex-direction: column;
    gap: 4rem;
  }
}
.about-page__future-releases-slider .wrapper .bg-mrpgigante {
  position: absolute;
  top: -26rem;
  left: 0;
  width: 200%;
  height: 100%;
  max-height: 50.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 33;
  will-change: transform;
  background-image: url(/images/MRPgigante.svg?01b61b1a9a8e5c328041c48264551f50);
  background-position: center center;
  background-size: auto 100%;
  animation: moveBackground 60s linear infinite;
  object-fit: cover;
  z-index: 1;
}
.about-page__future-releases-slider .wrapper .buttons-slider-div {
  transition: all 0.3s ease;
  cursor: pointer;
  cursor: pointer;
  transform: translateY(-32rem);
  z-index: 999;
}
@media (max-width: 1100px) {
  .about-page__future-releases-slider .wrapper .buttons-slider-div {
    width: 100%;
  }
}
.about-page__future-releases-slider__slider {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transform: translateY(-25rem);
}
.about-page__future-releases-slider__slider__item {
  position: relative;
  z-index: 3;
  margin-right: 12rem;
}
.about-page__future-releases-slider__slider__item:last-child {
  margin-right: 0;
}
.about-page__future-releases-slider__slider__item h6 {
  color: #edede8;
  font-family: "IBM Plex Mono";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2.4rem;
}
.about-page__future-releases-slider__slider__item .wrapper-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2.4rem;
  gap: 2.4rem;
}
.about-page__future-releases-slider__slider__item .wrapper-text h3 {
  color: #edede8;
  font-family: "Epilogue", sans-serif;
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.4rem;
}
.about-page__future-releases-slider__slider__item .wrapper-text p {
  color: #edede8;
  font-family: "Epilogue", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
  max-width: 28.8rem;
}
.about-page__future-releases-slider__slider__item img {
  width: 100%;
  height: 43.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.about-page__future-releases-slider .btn-slider {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 1.6rem;
  margin-left: 5.6rem;
  left: 20%;
  padding-top: 3px;
}
.about-page__future-releases-slider .btn-slider .btn-slider-div {
  position: relative;
  z-index: 90;
  display: flex;
  width: 5.6rem;
  height: 5.6rem;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 2000px;
  background: #ffffff;
}
.about-page__future-releases-slider .btn-slider .btn-slider-div svg {
  width: 2.4rem;
  height: 2.4rem;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.video-modal__content {
  position: relative;
  width: 85%;
  max-width: 120rem;
  aspect-ratio: 16/9;
}
.video-modal__content video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-modal__close {
  position: absolute;
  top: -4rem;
  right: 0;
  width: 3.2rem;
  height: 3.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
.video-modal__close::before, .video-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: background 0.3s;
}
.video-modal__close::before {
  transform: rotate(45deg);
}
.video-modal__close::after {
  transform: rotate(-45deg);
}
.video-modal__close:hover::before, .video-modal__close:hover::after {
  background: #ec662b;
}

@media (max-width: 900px) {
  .about-page__banner .section-content {
    padding: 0 2rem;
  }
  .about-page__content__two {
    padding: 6rem 2rem;
  }
  .about-page__content__two__body {
    flex-direction: column;
    gap: 7rem;
  }
  .about-page__content__two__body__left, .about-page__content__two__body__right {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .about-page__content__two__body__left h4, .about-page__content__two__body__right h4 {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    color: #ffffff;
    font-family: "Epilogue";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: lowercase;
  }
  .about-page__content__two__body__left .stats, .about-page__content__two__body__right .stats {
    gap: 2rem;
  }
  .about-page__content__three {
    padding: 4rem 2rem;
  }
  .about-page__content__three__header {
    gap: 2rem;
  }
  .about-page__content__three__header__title {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-page__content__three__header h6 {
    font-family: "Epilogue", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2rem;
    color: #282828;
  }
  .about-page__content__three .slider-div .about-page__content__three__slider__item::after {
    width: 90vw;
  }
  .about-page__content__three .slider-div .about-page__content__three__slider__item .title-and-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    max-height: 20rem;
    min-height: 20rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-page__future-releases {
    padding: 0 2rem 6rem;
  }
  .about-page__future-releases__header {
    flex-direction: column;
    gap: 2rem;
  }
  .about-page__future-releases__header__title {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-page__future-releases__content {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3rem;
    gap: 4rem;
  }
  .about-page__future-releases__content .left-paragraph {
    font-size: 2.2rem;
  }
  .about-page__future-releases-slider {
    height: 100%;
  }
  .about-page__future-releases-slider .wrapper {
    position: relative;
    flex-direction: column;
    z-index: 1;
    padding: 0 2rem;
    gap: 4rem;
  }
  .about-page__future-releases-slider .wrapper .buttons-slider-div {
    width: 100%;
    transform: translateY(-2.8rem);
    z-index: 100;
    position: relative;
  }
  .about-page__future-releases-slider__slider {
    width: 100%;
    height: 100%;
    transform: translateY(-2rem);
    margin-left: 0;
  }
  .about-page__future-releases-slider__slider__item {
    margin-right: 2rem;
  }
  .about-page__future-releases-slider__slider__item .wrapper-text {
    flex-direction: column;
    gap: 1rem;
  }
  .about-page__future-releases-slider__slider__item .wrapper-text p {
    max-width: 100%;
  }
  .about-page__future-releases-slider__slider__item img {
    width: 100%;
    height: 40rem;
    -o-object-fit: cover;
       object-fit: cover;
    position: relative;
    z-index: 1;
  }
  .about-page__future-releases-slider .btn-slider {
    display: flex;
    align-items: center;
    align-self: flex-start;
    gap: 1.6rem;
    margin-left: 5.6rem;
    left: 20%;
    padding-top: 3px;
  }
  .about-page__future-releases-slider .btn-slider .btn-slider-div {
    position: relative;
    z-index: 90;
    display: flex;
    width: 5.6rem;
    height: 5.6rem;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 2000px;
    background: #ffffff;
  }
  .about-page__future-releases-slider .btn-slider .btn-slider-div svg {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@keyframes moveBackground {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -2000px center;
  }
}
.blog {
  position: relative;
  height: auto;
  overflow: hidden;
  z-index: 10;
}
.blog__banner {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}
.blog__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  pointer-events: none;
}
.blog__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 20;
  pointer-events: none;
}
.blog__banner__content {
  position: relative;
  z-index: 40;
  padding: 0 4rem 4rem 4rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2.8rem;
}
.blog__banner__content span {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0%;
  color: #ffffff;
}
.blog__banner__content h1 {
  max-width: 136rem;
  color: #edede8;
  font-family: "Epilogue";
  font-size: clamp(3.6rem, 6vw, 7.2rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -3.6px;
}
.blog__banner__content p {
  max-width: 48.5rem;
  font-family: "Epilogue", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.5rem;
  letter-spacing: 0%;
  color: #edede8;
}
.blog__banner__content .generic-button {
  position: relative;
  padding: 1.6rem 2.4rem;
  z-index: 150;
  cursor: pointer;
}
.blog__posts {
  padding: 13.6rem 4rem;
  margin-top: 100vh;
  background: #edede8;
}
.blog__posts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem;
}
@media (min-width: 1900px) {
  .blog__posts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog__post {
  width: 100%;
  max-width: 100rem;
  background: #edede8;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  gap: 2.4rem;
}
.blog__post__image {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 43.5rem;
  min-height: 43.5rem;
  overflow: hidden;
}
.blog__post__image img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog__post__image img:hover {
  transform: scale(1.05);
}
.blog__post__date {
  display: flex;
  align-items: center;
}
.blog__post__date span {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  color: #282828;
}
.blog__post__texts {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.blog__post__texts .title {
  max-width: 28.9rem;
  width: 100%;
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: 2.6rem;
  line-height: 3.4rem;
  letter-spacing: 0%;
  color: #282828;
}
.blog__post__texts .excerpt {
  max-width: 29.7rem;
  width: 100%;
  font-family: "Epilogue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.5rem;
  color: #282828;
}

.js-load-more {
  width: 100%;
  height: 1px;
  opacity: 0;
  margin: 20px 0;
}

.blog__posts__spinner {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}
.blog__posts__spinner img {
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@media (max-width: 900px) {
  .blog {
    height: auto;
  }
  .blog__banner__content {
    padding: 0 2rem 6rem;
    flex-direction: column;
  }
  .blog__banner__content h1 {
    max-width: 40rem;
  }
  .blog__posts {
    padding: 6.8rem 2rem;
    margin-top: 100vh;
    background: #edede8;
  }
  .blog__posts__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.8rem;
  }
}
@media (max-width: 900px) and (min-width: 650px) {
  .blog__posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .blog__post {
    width: 100%;
  }
  .blog__post__image {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 20rem;
    min-height: 20rem;
  }
  .blog__post__image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog__post__image img:hover {
    transform: scale(1.05);
  }
  .blog__post__date {
    display: flex;
    align-items: center;
  }
  .blog__post__date span {
    font-family: "IBM Plex Mono", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.4rem;
    color: #282828;
  }
  .blog__post__texts {
    flex-direction: column;
  }
  .blog__post__texts .title {
    max-width: 28.9rem;
    width: 100%;
    font-family: "Epilogue", sans-serif;
    font-weight: 300;
    font-size: 2.6rem;
    line-height: 3.4rem;
    letter-spacing: 0%;
    color: #282828;
  }
  .blog__post__texts .excerpt {
    max-width: 29.7rem;
    width: 100%;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.5rem;
    color: #282828;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.blog-details {
  position: relative;
  height: auto;
  overflow: hidden;
}
.blog-details__banner {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}
.blog-details__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.blog-details__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 20;
}
.blog-details__banner__content {
  position: relative;
  z-index: 40;
  padding: 0 4rem 8.8rem 4rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2.8rem;
}
.blog-details__banner__content span {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0%;
  color: #ffffff;
}
.blog-details__banner__content h1 {
  max-width: 136rem;
  color: #edede8;
  font-family: "Epilogue";
  font-size: clamp(3.6rem, 6vw, 7.2rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -3.6px;
}
.blog-details__banner__content p {
  max-width: 48.5rem;
  font-family: "Epilogue", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.5rem;
  letter-spacing: 0%;
  color: #edede8;
}
.blog-details__banner__content .generic-button {
  padding: 1.6rem 2.4rem;
}
.blog-details__content {
  margin-top: 100vh;
  background: #edede8;
  position: relative;
  padding: 13.6rem 4rem 13.6rem;
}
.blog-details__content__back {
  position: absolute;
  top: -2.9rem;
  left: 4rem;
  z-index: 100;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ec662b;
  transition: all 0.3s ease;
}
.blog-details__content__back svg {
  width: 4rem;
  height: 2.4rem;
  transition: all 0.3s ease;
}
.blog-details__content__back:hover {
  background: #ffffff;
}
.blog-details__content__back:hover svg path {
  fill: #282828;
}
.blog-details__content__section1 {
  max-width: 65rem;
  margin: 0 auto;
}
.blog-details__content__section1 p {
  font-family: "Epilogue", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3.3rem;
  color: #282828;
}
.blog-details__content__section2 {
  margin-top: 8rem;
  position: relative;
}
.blog-details__content__section2 .buttons-slider-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.blog-details__content__section2 .slider {
  max-width: 65rem;
  margin: 0 auto;
  width: 100%;
}
.blog-details__content__section2 .slider .slider-item {
  width: 65rem;
}
.blog-details__content__section2 .slider .slick-slide {
  margin-right: 12rem;
}
.blog-details__content__section2 .slider .slick-list {
  overflow: visible;
  margin-right: -12rem;
}
.blog-details__content__section2 .slider .slick-list .slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details__content .share {
  display: flex;
  max-width: 65rem;
  margin: 8rem auto 13.6rem auto;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(35, 31, 32, 0.3);
  padding-top: 2.4rem;
}
.blog-details__content .share p {
  color: #282828;
  font-family: "IBM Plex Mono", sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.blog-details__content .share .social-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.blog-details__content .share .social-links a {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 5px 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 200px;
  background: #ec662b;
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  transition: all 0.3s ease;
}
.blog-details__content .share .social-links a:hover img {
  transform: scale(1.1);
}
.blog-details__content .share .social-links a img {
  width: 2.4rem;
  height: 2.4rem;
}
.blog-details__content__section3 {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
}
.blog-details__content__section3 .title {
  color: #282828;
  font-family: "Epilogue", sans-serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 300;
  line-height: 4.3rem;
  letter-spacing: -2px;
  text-transform: lowercase;
}
.blog-details__content__section3 .slider .blog__post {
  width: 100%;
  max-width: 100rem;
  background: #edede8;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  gap: 2.4rem;
}
.blog-details__content__section3 .slider .blog__post__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.blog-details__content__section3 .slider .blog__post__image img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 43.5rem;
  min-height: 43.5rem;
}
.blog-details__content__section3 .slider .blog__post__image img:hover {
  transform: scale(1.05);
}
.blog-details__content__section3 .slider .blog__post__date {
  display: flex;
  align-items: center;
}
.blog-details__content__section3 .slider .blog__post__date span {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  color: #282828;
}
.blog-details__content__section3 .slider .blog__post__texts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.blog-details__content__section3 .slider .blog__post__texts .title {
  max-width: 24rem;
  width: 100%;
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: 2.6rem;
  line-height: 3.4rem;
  letter-spacing: 0%;
  color: #282828;
}
.blog-details__content__section3 .slider .blog__post__texts .excerpt {
  max-width: 29.7rem;
  width: 100%;
  font-family: "Epilogue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.5rem;
  color: #282828;
}
.blog-details__content__section3 .slider .slick-slide {
  margin-right: 2.8rem;
}
.blog-details__content__section3 .slider .slick-list {
  overflow: visible;
  margin-right: -2.8rem;
}
.blog-details__content__section3 .slider .slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details__content__section3 .blog-details__content__section3__pagination {
  width: 100%;
}
.blog-details__content__section3 .blog-details__content__section3__pagination .slick-dots {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 2rem;
}
.blog-details__content__section3 .blog-details__content__section3__pagination .slick-dots li {
  padding-top: 0;
  margin: 0;
}
.blog-details__content__section3 .blog-details__content__section3__pagination .slick-dots li.slick-active a {
  background-color: #ec662b;
}
.blog-details__content__section3 .blog-details__content__section3__pagination .slick-dots li a {
  height: 4px;
  width: 100%;
  background-color: #e5e5e5;
  display: block;
  transition: background-color 0.3s;
  font-size: 0;
}

@media (max-width: 900px) {
  .blog-details__banner__content h1 {
    max-width: 40rem;
  }
  .blog-details__banner__content p {
    max-width: 38rem;
  }
  .blog-details__content {
    padding: 7rem 2rem 0 2rem;
  }
  .blog-details__content__back {
    position: absolute;
    top: -2.9rem;
    left: 4rem;
    z-index: 100;
    width: 5.6rem;
    height: 5.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ec662b;
    transition: all 0.3s ease;
  }
  .blog-details__content__back svg {
    width: 4rem;
    height: 2.4rem;
    transition: all 0.3s ease;
  }
  .blog-details__content__back:hover {
    background: #ffffff;
  }
  .blog-details__content__back:hover svg path {
    fill: #282828;
  }
  .blog-details__content__section1 {
    max-width: 65rem;
    margin: 0 auto;
  }
  .blog-details__content__section1 p {
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 3rem;
    color: #282828;
  }
  .blog-details__content__section2 {
    margin-top: 8rem;
    position: relative;
  }
  .blog-details__content__section2 .buttons-slider-div {
    top: -4rem;
    left: 2rem;
    width: -moz-max-content;
    width: max-content;
    height: -moz-max-content;
    height: max-content;
    max-width: 65rem;
    margin: 0 auto;
  }
  .blog-details__content__section2 .slider {
    max-width: 65rem;
    margin: 0 auto;
    width: 100%;
  }
  .blog-details__content__section2 .slider .slick-slide {
    margin-right: 12rem;
  }
  .blog-details__content__section2 .slider .slick-list {
    overflow: visible;
    margin-right: -12rem;
  }
  .blog-details__content__section2 .slider .slick-list .slider-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-details__content .share {
    flex-direction: column;
    margin: 4rem auto;
    gap: 2rem;
  }
  .blog-details__content .share p {
    color: #282828;
    font-family: "IBM Plex Mono", sans-serif;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }
  .blog-details__content .share .social-links {
    display: flex;
    align-items: center;
    gap: 2.4rem;
  }
  .blog-details__content .share .social-links a {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 5px 3px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 200px;
    background: #ec662b;
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
    transition: all 0.3s ease;
  }
  .blog-details__content .share .social-links a:hover img {
    transform: scale(1.1);
  }
  .blog-details__content .share .social-links a img {
    width: 2.4rem;
    height: 2.4rem;
  }
  .blog-details__content__section3 {
    margin-bottom: 0;
  }
  .blog-details__content__section3 .title {
    color: #282828;
    font-family: "Epilogue", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 4.3rem;
    letter-spacing: -2px;
    text-transform: lowercase;
  }
  .blog-details__content__section3 .slider .blog__post {
    width: 100%;
    max-width: 100rem;
    background: #edede8;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    gap: 2.4rem;
  }
  .blog-details__content__section3 .slider .blog__post__image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .blog-details__content__section3 .slider .blog__post__image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 43.5rem;
    min-height: 43.5rem;
  }
  .blog-details__content__section3 .slider .blog__post__image img:hover {
    transform: scale(1.05);
  }
  .blog-details__content__section3 .slider .blog__post__date {
    display: flex;
    align-items: center;
  }
  .blog-details__content__section3 .slider .blog__post__date span {
    font-family: "IBM Plex Mono", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.4rem;
    color: #282828;
  }
  .blog-details__content__section3 .slider .blog__post__texts {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-details__content__section3 .slider .blog__post__texts .title {
    max-width: none;
  }
  .blog-details__content__section3 .slider .blog__post__texts .excerpt {
    max-width: 29.7rem;
    width: 100%;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.5rem;
    color: #282828;
  }
  .blog-details__content__section3 .slider .slick-slide {
    margin-right: 2.8rem;
  }
  .blog-details__content__section3 .slider .slick-list {
    overflow: visible;
    margin-right: -2.8rem;
  }
  .blog-details__content__section3 .slider .slider-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-details__content__section3 .blog-details__content__section3__pagination {
    width: 100%;
  }
  .blog-details__content__section3 .blog-details__content__section3__pagination .slick-dots {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 2rem;
  }
  .blog-details__content__section3 .blog-details__content__section3__pagination .slick-dots li {
    padding-top: 0;
    margin: 0;
  }
  .blog-details__content__section3 .blog-details__content__section3__pagination .slick-dots li.slick-active a {
    background-color: #ec662b;
  }
  .blog-details__content__section3 .blog-details__content__section3__pagination .slick-dots li a {
    height: 4px;
    width: 100%;
    background-color: #e5e5e5;
    display: block;
    transition: background-color 0.3s;
    font-size: 0;
  }
}
.contact {
  background: #282828;
  padding: 13.6rem 0 4rem 0;
  overflow: hidden;
}
.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9.6rem;
  padding: 0 1.3rem;
}
.contact__content__title {
  width: 98vw;
}
.contact__content__title h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.4);
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: clamp(2.16rem, 12.8vw, 25.6rem);
  line-height: 15.9rem;
  text-transform: uppercase;
  margin-top: 3rem;
}
@media (min-width: 1600px) {
  .contact__content__title h1 {
    margin-top: 5rem;
  }
}
.contact__content__title h1 .point {
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: clamp(2.16rem, 13vw, 25.6rem);
  letter-spacing: -1rem;
  color: #ec662b;
}
.contact__content__call-us-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.contact__content__call-us-content__header p {
  max-width: 58.6rem;
  color: #ffffff;
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  font-size: 4rem;
  line-height: 4.3rem;
  letter-spacing: -0.05em;
  text-align: center;
}
.contact__content__call-us-content__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
.contact__content__call-us-content__buttons a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 2000px;
  padding: 1.6rem 2.4rem;
  background: #65a935;
  color: #ffffff;
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 100%;
}
.contact__content__call-us-content__buttons a svg {
  width: 1.9rem;
  height: 1.9rem;
}
.contact__content__call-us-content__footer p {
  font-family: "Epilogue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.5rem;
  text-align: center;
  color: #edede8;
  letter-spacing: 0;
  max-width: 35rem;
}
.contact__content__map {
  position: relative;
  margin-top: 4.8rem;
}
.contact__content__map .background-image-mrp {
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 100%;
  height: 50.6rem;
  background-image: url(/images/mrpgigante_contact.svg?47ae9aa1b9c16b8c83340d297e4e4c4b);
  background-size: auto 100%;
  background-position: 0 0;
  background-repeat: repeat-x;
  z-index: 1;
  overflow: hidden;
}
.contact__content__map .phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-top: 1px solid #6e6e5f;
  padding-top: 4.7rem;
}
.contact__content__map .phone .phone-text {
  color: #ffffff;
  font-family: "IBM Plex Mono";
  font-size: 1.3rem;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  max-width: 17rem;
  text-align: center;
}
.contact__content__map .phone .phone-number {
  color: #ffffff;
  font-family: "Epilogue";
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 34.6px;
}
.contact__content__map .map {
  position: relative;
  display: flex;
  width: 100%;
  height: 64.5rem;
  padding: 0 4rem;
  z-index: 500;
  margin-top: 11.1rem;
}
.contact__content__map .map .map__background-image {
  width: 62%;
  height: 100%;
}
.contact__content__map .map .map__background-image iframe {
  width: 100%;
  height: 100%;
}
.contact__content__map .map .map__info {
  display: flex;
  flex-direction: column;
  width: 38%;
  height: 100%;
  z-index: 500;
  padding: 8.8rem 7.2rem;
  gap: 2.4rem;
  background: #181818;
}
.contact__content__map .map .map__info h6 {
  color: #edede8;
  font-family: "Epilogue", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 4.3rem;
  letter-spacing: -2px;
}
.contact__content__map .map .map__info .map__info__content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.6rem;
}
.contact__content__map .map .map__info .map__info__content .icon-div {
  display: flex;
}
.contact__content__map .map .map__info .map__info__content .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact__content__map .map .map__info .map__info__content .info span {
  color: #edede8;
  font-family: "IBM Plex Mono", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.contact__content__map .map .map__info .generic-button {
  width: 100%;
  display: flex;
  padding: 1.9rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-family: "Epilogue", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 900px) {
  .contact {
    background: #282828;
    padding: 13.6rem 0 4rem 0;
  }
  .contact__content {
    gap: 3rem;
  }
  .contact__content__title {
    width: 98vw;
  }
  .contact__content__title h1 {
    line-height: 10rem;
  }
  .contact__content__call-us-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
  .contact__content__call-us-content__header p {
    font-size: 2.6rem;
  }
  .contact__content__call-us-content__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
  }
  .contact__content__call-us-content__buttons a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.8rem;
    border-radius: 2000px;
    padding: 1.6rem 2.4rem;
    background: #65a935;
    color: #ffffff;
    font-family: "Epilogue", sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 100%;
  }
  .contact__content__call-us-content__buttons a svg {
    width: 1.9rem;
    height: 1.9rem;
  }
  .contact__content__call-us-content__footer p {
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.5rem;
    text-align: center;
    color: #edede8;
    letter-spacing: 0;
    max-width: 35rem;
  }
  .contact__content__map {
    position: relative;
    margin-top: 4.8rem;
  }
  .contact__content__map .background-image-mrp {
    position: absolute;
    top: 0.1rem;
    left: 0;
    width: 100%;
    height: 50.6rem;
    background-image: url(/images/mrpgigante_contact.svg?47ae9aa1b9c16b8c83340d297e4e4c4b);
    background-size: auto 100%;
    background-position: 0 0;
    background-repeat: repeat-x;
    z-index: 1;
    overflow: hidden;
  }
  .contact__content__map .phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-top: 1px solid #6e6e5f;
    padding-top: 4.7rem;
  }
  .contact__content__map .phone .phone-text {
    color: #ffffff;
    font-family: "IBM Plex Mono";
    font-size: 1.3rem;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    max-width: 17rem;
    text-align: center;
  }
  .contact__content__map .phone .phone-number {
    color: #ffffff;
    font-family: "Epilogue";
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 34.6px;
  }
  .contact__content__map .map {
    flex-direction: column;
    padding: 0 2rem;
    margin-top: 4rem;
  }
  .contact__content__map .map .map__background-image {
    width: 100%;
  }
  .contact__content__map .map .map__info {
    width: 100%;
    padding: 0;
    justify-content: center;
    padding: 1rem;
  }
  .contact__content__map .map .map__info h6 {
    font-size: 3rem;
  }
  .contact__content__map .map .map__info .map__info__content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.6rem;
  }
  .contact__content__map .map .map__info .map__info__content .icon-div {
    display: flex;
  }
  .contact__content__map .map .map__info .map__info__content .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact__content__map .map .map__info .map__info__content .info span {
    color: #edede8;
    font-family: "IBM Plex Mono", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }
  .contact__content__map .map .map__info .generic-button {
    max-width: 40rem;
  }
}
/* ========= COMPONENTES ========== */
.form__row {
  display: flex;
  gap: 1rem;
}
.form__row:not(:last-child) {
  margin-bottom: 1rem;
}
.buttons-slider-div {
  display: flex;
  gap: 1.6rem;
}
.buttons-slider-div .left-button,
.buttons-slider-div .right-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2000px;
  background: #282828;
  width: 5.6rem;
  height: 5.6rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 200;
}
.buttons-slider-div .left-button.orange_primary,
.buttons-slider-div .right-button.orange_primary {
  background: #ec662b;
}
.buttons-slider-div .left-button.orange_primary.slick-disabled,
.buttons-slider-div .right-button.orange_primary.slick-disabled {
  opacity: 0.5;
  cursor: auto;
}
.buttons-slider-div .left-button.orange_primary.slick-disabled:hover,
.buttons-slider-div .right-button.orange_primary.slick-disabled:hover {
  background: #ec662b;
  color: #ffffff;
}
.buttons-slider-div .left-button.orange_primary.slick-disabled:hover svg path,
.buttons-slider-div .right-button.orange_primary.slick-disabled:hover svg path {
  fill: #ffffff;
}
.buttons-slider-div .left-button.orange_primary:hover,
.buttons-slider-div .right-button.orange_primary:hover {
  background: #ffffff;
}
.buttons-slider-div .left-button.orange_primary:hover svg path,
.buttons-slider-div .right-button.orange_primary:hover svg path {
  fill: #282828;
}
.buttons-slider-div .left-button.orange_primary svg path,
.buttons-slider-div .right-button.orange_primary svg path {
  fill: #ffffff;
}
.buttons-slider-div .left-button.black-light,
.buttons-slider-div .right-button.black-light {
  background: #282828;
}
.buttons-slider-div .left-button.black-light.slick-disabled,
.buttons-slider-div .right-button.black-light.slick-disabled {
  opacity: 0.5;
  cursor: auto;
}
.buttons-slider-div .left-button.black-light.slick-disabled:hover,
.buttons-slider-div .right-button.black-light.slick-disabled:hover {
  background: #282828;
  color: #ffffff;
}
.buttons-slider-div .left-button.black-light.slick-disabled:hover svg path,
.buttons-slider-div .right-button.black-light.slick-disabled:hover svg path {
  fill: #ffffff;
}
.buttons-slider-div .left-button.black-light:hover,
.buttons-slider-div .right-button.black-light:hover {
  background: #ec662b;
}
.buttons-slider-div .left-button.black-light:hover svg path,
.buttons-slider-div .right-button.black-light:hover svg path {
  fill: #ffffff;
}
.buttons-slider-div .left-button.black-light svg path,
.buttons-slider-div .right-button.black-light svg path {
  fill: #ffffff;
}
.buttons-slider-div .left-button.white,
.buttons-slider-div .right-button.white {
  background: #ffffff;
}
.buttons-slider-div .left-button.white.slick-disabled,
.buttons-slider-div .right-button.white.slick-disabled {
  opacity: 0.5;
  cursor: auto;
}
.buttons-slider-div .left-button.white.slick-disabled:hover,
.buttons-slider-div .right-button.white.slick-disabled:hover {
  background: #ffffff;
  color: #282828;
}
.buttons-slider-div .left-button.white.slick-disabled:hover svg path,
.buttons-slider-div .right-button.white.slick-disabled:hover svg path {
  fill: #282828;
}
.buttons-slider-div .left-button.white:hover,
.buttons-slider-div .right-button.white:hover {
  background: #ec662b;
}
.buttons-slider-div .left-button.white:hover svg path,
.buttons-slider-div .right-button.white:hover svg path {
  fill: #ffffff;
}
.buttons-slider-div .left-button.white svg path,
.buttons-slider-div .right-button.white svg path {
  fill: #282828;
}
.buttons-slider-div .left-button.white-darker,
.buttons-slider-div .right-button.white-darker {
  background: #edede8;
}
.buttons-slider-div .left-button.white-darker.slick-disabled,
.buttons-slider-div .right-button.white-darker.slick-disabled {
  opacity: 0.5;
  cursor: auto;
}
.buttons-slider-div .left-button.white-darker.slick-disabled:hover,
.buttons-slider-div .right-button.white-darker.slick-disabled:hover {
  background: #edede8;
  color: #282828;
}
.buttons-slider-div .left-button.white-darker.slick-disabled:hover svg path,
.buttons-slider-div .right-button.white-darker.slick-disabled:hover svg path {
  fill: #282828;
}
.buttons-slider-div .left-button.white-darker:hover,
.buttons-slider-div .right-button.white-darker:hover {
  background: #ec662b;
}
.buttons-slider-div .left-button.white-darker:hover svg path,
.buttons-slider-div .right-button.white-darker:hover svg path {
  fill: #edede8;
}
.buttons-slider-div .left-button.white-darker svg path,
.buttons-slider-div .right-button.white-darker svg path {
  fill: #282828;
}
.buttons-slider-div .left-button svg,
.buttons-slider-div .right-button svg {
  transition: all 0.3s ease;
  width: 2.4rem;
  height: 2.4rem;
}

.generic-button {
  width: -moz-max-content;
  width: max-content;
  display: inline-flex;
  padding: 1rem 1.6rem;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 2000px;
  background: #ec662b;
  color: #edede8;
  position: relative;
  z-index: 30;
  font-family: "Epilogue", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: normal;
  transition: all 0.4s ease;
  border: 1px solid #ec662b;
  text-transform: lowercase;
}
.generic-button:hover svg {
  transform: translateX(3px);
  animation: arrowMovement 0.6s ease-in-out infinite;
}
.generic-button svg {
  width: 1.8rem;
  height: 1.8rem;
  transition: transform 0.3s ease;
}

@keyframes arrowMovement {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.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;
}

.whatsapp-mobile {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  border-radius: 82.759px;
  background: #fff;
  z-index: 9999;
  animation: pulse 2s infinite;
}
.whatsapp-mobile img {
  width: 2.5rem;
  height: 2.5rem;
  transition: all 0.3s ease;
}
.whatsapp-mobile:hover {
  animation: rotate 2s infinite;
}
@media (min-width: 900px) {
  .whatsapp-mobile {
    display: none;
  }
}
.whatsapp-mobile a {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 1.655px;
  justify-content: center;
  align-items: center;
  gap: 6.621px;
}

.active {
  color: #ec662b;
}

@media (max-width: 900px) {
  .cms-bar__row .text {
    display: none;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
