@import url(https://fast.fonts.net/t/1.css?apiType=css&projectid=55144752-a5e5-4ec4-9975-ad101d8d0960);@charset "UTF-8";

/**
 * Arquivo base do SCSS com definição das variáveis
 *
 * @author Alvaro junior
 * @version 1.0.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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

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

a:hover {
  text-decoration: none !important;
  color: initial !important;
}

html.noScroll {
  overflow: hidden;
}

html {
  background-color: var(--body-bg);
  overflow-x: hidden;
}

body {
  background-color: var(--body-bg);
}

/* ============= MAIN ============= */

#main {
  overflow: hidden;
}

body {
  font-family: "Helvetica regular" !important;
}

/* ============= INCLUDES ============= */

#header {
  width: 100%;
  padding: 1rem 0;
  overflow: hidden;
}

#header.header-position-absolute {
  position: absolute;
  left: 0;
  top: 0;
  left: 0;
  z-index: 1000;
}

#header .back-to-top {
  position: fixed;
  right: 2.1rem;
  bottom: 2%;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--panel-bg);
  z-index: 100;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#header .back-to-top.active {
  pointer-events: all;
  opacity: 1;
}

#header .whatsapp-floating {
  display: flex;
  position: fixed;
  right: 1.5rem;
  bottom: 5rem;
  border-radius: 50%;
  padding: 1rem;
  background-color: #62BA46;
  z-index: 999999;
  transition: all 0.2s ease;
}

#header .whatsapp-floating:hover {
  background-color: #58a83f;
  transform: translate(-2px, -2px);
  box-shadow: rgba(0, 0, 0, 0.7) 3px 3px 7px;
}

#header .navbarMobile__container,
#header .mobile__container {
  display: none;
}

#header .navbar__container {
  width: 95%;
  margin: auto;
  display: flex;
  align-items: center;
}

#header .navbar__container--v1 {
  justify-content: flex-start;
}

#header .navbar__container--v1 .navbar__list:first-child {
  margin-right: 5rem;
}

#header .navbar__container--v1 .whatsapp {
  margin-left: auto;
}

#header .navbar__container--v2 {
  justify-content: space-between;
  position: relative;
}

#header .navbar__container--v2 .navbar__list {
  order: 1;
}

#header .navbar__container--v2 .navbar__list:first-child {
  order: 2;
}

#header .navbar__container--v2 .whatsapp {
  order: 3;
}

#header .navbar__container--v3 {
  justify-content: space-between;
}

#header .navbar__container .whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .navbar__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#header .navbar__item {
  margin-right: 3rem;
}

#header .navbar__item--logo {
  max-width: 150px;
}

#header .navbar__item--logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#header .navbar__item:last-child {
  margin-right: 0;
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  #header .navbar__item {
    margin-right: 2.5rem;
  }
}

#header .navbar__link {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 87.8%;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
  transition: 0.3s all ease;
  position: relative;
}

#header .navbar__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  right: 0;
  margin: auto;
  transition: 0.3s all ease;
  border-bottom: 2px solid #fff;
}

#header .navbar__link:hover {
  color: #fff !important;
}

#header .navbar__link:hover::after {
  width: 100%;
}

#header .navbar__link--inverse {
  color: var(--title-color);
}

#header .navbar__link--inverse::after {
  border-bottom: 2px solid #000;
}

#header .navbar__link--inverse:hover {
  color: #000 !important;
}

#header .navbar__link--inverse:hover::after {
  width: 100%;
}

#header .whatsapp.inverse .btn {
  background-color: var(--title-color);
  color: var(--panel-bg);
}

#header .whatsapp.inverse .btn svg path {
  fill: var(--panel-bg);
}

#header .whatsapp.inverse .btn:hover {
  color: var(--panel-bg) !important;
}

@media screen and (max-width: 991px) {
  #header {
    transition: 0.3s all ease;
  }

  #header.menuOpen {
    background-color: #000;
  }

  #header .navbar__container {
    display: none;
  }

  #header .navbarMobile__container {
    max-width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #header .navbarMobile__container .left .logo-wrapper {
    display: flex;
    max-width: 150px;
    height: 65px;
  }

  #header .navbarMobile__container .left .logo-wrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  #header .navbarMobile__container .right {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #header .navbarMobile__container .right .whats {
    margin-right: 30px;
  }

  #header .navbarMobile__container .right .menu .navTrigger {
    cursor: pointer;
    width: 27px;
    height: 25px;
    margin: auto;
  }

  #header .navbarMobile__container .right .menu .navTrigger i {
    background-color: #fff;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
  }

  #header .navbarMobile__container .right .menu .navTrigger i:nth-child(1) {
    animation: outT 0.8s backwards;
    animation-direction: reverse;
  }

  #header .navbarMobile__container .right .menu .navTrigger i:nth-child(2) {
    margin: 7px 0;
    animation: outM 0.8s backwards;
    animation-direction: reverse;
  }

  #header .navbarMobile__container .right .menu .navTrigger i:nth-child(3) {
    animation: outBtm 0.8s backwards;
    animation-direction: reverse;
  }

  #header .navbarMobile__container .right .menu .navTrigger.active i:nth-child(1) {
    animation: inT 0.8s forwards;
  }

  #header .navbarMobile__container .right .menu .navTrigger.active i:nth-child(2) {
    animation: inM 0.8s forwards;
  }

  #header .navbarMobile__container .right .menu .navTrigger.active i:nth-child(3) {
    animation: inBtm 0.8s forwards;
  }

@keyframes inM {
    50% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(45deg);
    }
}

@keyframes inT {
    0% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(9px) rotate(0deg);
    }

    100% {
      transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(9px) rotate(0deg);
    }

    100% {
      transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(-9px) rotate(0deg);
    }

    100% {
      transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(-9px) rotate(0deg);
    }

    100% {
      transform: translateY(-9px) rotate(135deg);
    }
}

  #header .navbarMobile__container.inverse .right .whats svg rect {
    fill: #000;
  }

  #header .navbarMobile__container.inverse .right .whats svg path {
    fill: #fff;
  }

  #header .navbarMobile__container.inverse .right .menu .navTrigger i {
    background-color: var(--title-color);
  }

  #header .mobile__container {
    display: block;
    height: 0;
    width: 100%;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 80px;
    background-color: #000;
    transition: 0.3s all ease;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
  }

  #header .mobile__container.active {
    height: calc(100vh - 118px);
    pointer-events: all;
    opacity: 1;
  }

  #header .mobile__container.extra-space {
    top: 172px;
  }

  #header .mobile__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 90%;
    margin: auto;
    padding-top: 5rem;
  }

  #header .mobile__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 100%;
  }

  #header .mobile__item:last-child {
    border-bottom: none;
  }

  #header .mobile__link {
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 87.8%;
    letter-spacing: -0.01em;
    color: #ffffff;
  }
}

footer {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 87.8%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #fff;
  background-color: var(--footer-color);
}

footer svg {
  margin: 0 10px;
}

.contact-links {
  display: flex;
  justify-content: space-between;
  max-width: 80%;
  padding: 100px 0;
  margin: auto;
}

.contact-links a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--desc-color);
  font-size: 20px;
  line-height: 28px;
  text-decoration: none;
  max-width: 350px;
}

.contact-links a svg {
  margin-top: 3px;
  min-width: 24px;
}

.contact-links a svg path {
  stroke: var(--title-color);
}

@media screen and (max-width: 991px) {
  .contact-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 0 20px 0;
  }

  .contact-links a {
    text-align: center;
    font-size: 14px;
    line-height: 28px;
    text-decoration: none;
  }

  .contact-links a svg {
    min-width: 15px;
    width: 15px;
  }
}

/* ============= SECTIONS ============= */

/* ============= BANNER ============= */

.banner__container {
  height: 100vh;
  display: flex;
  position: relative;
}

.banner__container::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.banner__container--v1 {
  justify-content: flex-start;
  align-items: flex-end;
  padding-left: 12rem;
  padding-bottom: 7rem;
}

.banner__container--v2 {
  justify-content: center;
  align-items: flex-end;
  padding-left: 0;
  padding-bottom: 7rem;
}

.banner__container--v2 .banner__content {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner__bg {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.banner__bg img,
.banner__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner__content {
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.banner__title {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 80px;
  line-height: 87.8%;
  letter-spacing: -0.01em;
  color: #ffffff;
  max-width: 700px;
  margin-bottom: 40px;
}

.banner__desc {
  font-family: "Helvetica thin" !important;
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
  max-width: 550px;
  margin-bottom: 60px;
}

.banner__continue {
  text-decoration: none;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 87.8%;
  letter-spacing: -0.01em;
  color: #ffffff;
  position: relative;
  padding-left: 70px;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner__continue::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 53px;
  border-top: 4px solid #fff;
}

.banner__continue svg {
  margin-left: 1rem;
}

.banner__continue:hover {
  color: #FFFFFF !important;
}

@media screen and (max-width: 1200px) {
  /* ============= BANNER ============= */

  .banner__container {
    padding-left: 5em;
  }
}

@media screen and (max-width: 991px) {
  /* ============= BANNER ============= */

  .banner__container {
    height: 100vh;
    padding: 2rem 2rem 5rem;
  }

  .banner__title {
    font-size: 40px;
    line-height: 87.8%;
    margin-bottom: 40px;
  }

  .banner__desc {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 40px;
    max-width: 85%;
  }

  .banner__continue {
    font-size: 16px;
    line-height: 87.8%;
    padding-left: 0;
  }

  .banner__continue::before {
    display: none;
  }
}

/* ============= CONHECA ============= */

.knows {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8rem 0 12rem 12rem;
  position: relative;
}

.knows::before {
  position: absolute;
  content: "";
  left: 50%;
  top: -5%;
  transform: translateX(-50%);
  height: 100%;
  width: 90%;
  background: var(--panel-bg);
  border-radius: 5px;
  z-index: 2;
}

.knows .left {
  z-index: 3;
}

.knows .left .title {
  font-family: "Helvetica bold" !important;
  position: relative;
  font-style: normal;
  font-weight: bold;
  font-size: 60px;
  line-height: 51px;
  letter-spacing: -0.05em;
  color: var(--title-color);
  max-width: 240px;
  margin-bottom: 45px;
  position: relative;
}

.knows .left .title::before {
  content: "";
  position: absolute;
  width: 53px;
  left: 0;
  top: -50px;
  border-top: 4px solid var(--primary-color);
}

.knows .left .desc {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  color: var(--desc-color);
  max-width: 400px;
}

.knows .right {
  z-index: 4;
  width: 720px;
  height: 395px;
  position: relative;
}

.knows .right .slick-dots {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15%;
}

.knows .right .slick-dots li {
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.knows .right .slick-dots li button {
  text-indent: -9999px;
  position: relative;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

.knows .right .slick-dots li button::after {
  content: "";
  height: 5px;
  width: 5px;
  border: 2px solid transparent;
  background-color: var(--slick-bullets);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.knows .right .slick-dots li.slick-active button::after {
  background-color: transparent;
  border: 2px solid var(--slick-bullets);
}

.knows .right .item {
  height: 395px;
  width: 100%;
}

.knows .right .item .bg {
  height: 395px;
  width: 100%;
}

.knows .right .item .bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.knows--v1 {
  flex-direction: row;
}

.knows--v2 {
  flex-direction: row-reverse;
  padding: 8rem 12rem 12rem 0rem;
}

.knows--v3 {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 8rem;
}

.knows--v3 .left .title {
  max-width: 100%;
  margin-bottom: 45px;
  text-align: center;
}

.knows--v3 .left .title::before {
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
}

.knows--v3 .left .desc {
  text-align: center;
  max-width: 100%;
}

@media screen and (max-width: 1200px) {
  /* ============= CONHECA ============= */

  .knows {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5rem 0 5rem 5rem;
    position: relative;
  }

  .knows .right {
    z-index: 4;
    max-width: 400px;
    position: relative;
  }

  .knows .right .slick-dots {
    bottom: -8%;
  }
}

@media screen and (max-width: 991px) {
  /* ============= CONHECA  ============= */

  .knows {
    padding: 2rem 0;
    flex-direction: column;
    height: 900px;
  }

  .knows::before {
    display: none;
  }

  .knows .left {
    z-index: 3;
    padding: 0 2rem 2rem 0;
  }

  .knows .left .title {
    font-size: 40px;
    line-height: 87%;
    margin-bottom: 40px;
  }

  .knows .left .title::before {
    display: none;
  }

  .knows .left .desc {
    font-size: 16px;
    line-height: 25px;
  }

  .knows .right {
    max-width: 100%;
    height: 450px;
  }

  .knows .right .item {
    height: 450px;
  }

  .knows .right .item .bg {
    height: 450px;
  }

  .knows .right .slick-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15%;
  }
}

/* ============= GRID  ============= */

.grid {
  padding-top: 30px;
  display: flex;
}

.grid .row {
  width: 90%;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.grid .row .number {
  font-family: "Helvetica bold" !important;
  position: absolute;
  top: 50%;
  right: 40%;
  transform: translate(-50%, -50%);
  font-style: normal;
  font-weight: bold;
  font-size: 200px;
  line-height: 244px;
  letter-spacing: -0.05em;
  color: var(--destaque-letter);
  z-index: 0;
}

.grid .row .img {
  width: 50%;
  z-index: 1;
}

.grid .row .img img {
  border-radius: 5px 0px 0px 5px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.grid .row .content {
  width: 50%;
  padding: 8rem 5rem 3rem;
}

.grid .row .content .title {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--title-color);
  max-width: 300px;
  margin-bottom: 25px;
  position: relative;
}

.grid .row .content .title::before {
  content: "";
  position: absolute;
  width: 53px;
  left: 0;
  top: -50px;
  border-top: 4px solid var(--primary-color);
}

.grid .row .content .desc {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  color: var(--desc-color);
  max-width: 400px;
  position: relative;
}

.grid .row:nth-child(even) {
  flex-direction: row-reverse;
}

.grid .row:nth-child(even) .number {
  right: 45%;
}

.grid .row:nth-child(even) .img img {
  border-radius: 0px 5px 5px 0px;
}

.grid--v1 {
  flex-direction: column;
}

.grid--v1 .row {
  min-height: 500px;
}

.grid--v1 .row .img {
  max-height: 500px;
  height: auto;
}

.grid--v2,
.grid--v3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  width: 90%;
  margin: auto;
}

.grid--v2 .row,
.grid--v3 .row {
  flex-direction: column;
  width: 100%;
}

.grid--v2 .row .content,
.grid--v3 .row .content {
  padding: 8rem 5rem 5rem;
  width: 100%;
  position: relative;
  height: auto;
}

.grid--v2 .row .img,
.grid--v3 .row .img {
  width: 100%;
}

.grid--v2 .row .img img,
.grid--v3 .row .img img {
  border-radius: 5px 0px 0px 5px;
}

.grid--v2 .row .number,
.grid--v3 .row .number {
  right: 65%;
  top: 6rem;
}

.grid--v2 .row:nth-child(even),
.grid--v3 .row:nth-child(even) {
  flex-direction: column;
}

.grid--v2 .row:nth-child(even) .number,
.grid--v3 .row:nth-child(even) .number {
  right: 65%;
  top: 6rem;
}

.grid--v2 .row:nth-child(even) .img img,
.grid--v3 .row:nth-child(even) .img img {
  border-radius: 0px 5px 5px 0px;
}

.grid--v3 {
  grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
}

.grid--v3 .row .img {
  width: 100%;
}

.grid--v3 .row .img img {
  border-radius: 0;
}

.grid--v3 .row .number {
  right: 65%;
  top: 6rem;
}

.grid--v3 .row:nth-child(even) .number {
  right: 65%;
  top: 6rem;
}

.grid--v3 .row:nth-child(3n-2) .img {
  width: 100%;
}

.grid--v3 .row:nth-child(3n-2) .img img {
  border-radius: 5px 0px 0px 5px;
}

.grid--v3 .row:nth-child(3n+0) .img {
  width: 100%;
}

.grid--v3 .row:nth-child(3n+0) .img img {
  border-radius: 0px 5px 5px 0px;
}

@media screen and (max-width: 1200px) {
  /* ============= GRID ============= */

  .grid .row .content {
    height: auto;
    padding: 5rem 5rem 3rem 5rem;
  }

  .grid--v3 {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  }
}

@media screen and (max-width: 991px) {
  /* ============= GRID  ============= */

  .grid {
    margin-top: 25px;
  }

  .grid .row {
    width: 100%;
    flex-direction: column;
  }

  .grid .row .number {
    top: 30%;
    right: 50%;
    transform: translateX(-50%);
  }

  .grid .row .img {
    width: 100%;
  }

  .grid .row .img img {
    border-radius: 0;
  }

  .grid .row .content {
    width: 100%;
    height: auto;
    padding: 6rem 2rem 3rem;
  }

  .grid .row .content .title {
    font-size: 30px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .grid .row .content .desc {
    font-size: 16px;
    line-height: 25px;
  }

  .grid .row:nth-child(even) {
    flex-direction: column;
  }

  .grid .row:nth-child(even) .number {
    top: 30%;
    right: 50%;
    transform: translateX(-50%);
  }

  .grid .row:nth-child(even) .img img {
    border-radius: 0;
  }

  .grid--v2,
  .grid--v3 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

/* ============= COUNTERS  ============= */

.counters {
  overflow: hidden;
  padding: 150px 0;
  position: relative;
}

.counters .destaque {
  font-style: normal;
  font-weight: bold;
  font-size: 400px;
  line-height: 488px;
  letter-spacing: -0.05em;
  color: var(--destaque-letter);
  position: absolute;
  top: -10%;
  left: 80%;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  z-index: 0;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-150%, 0);
  }
}

.counters .counter__list {
  z-index: 2;
  padding-top: 100px;
  width: 75%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.counters .counter__item {
  flex: 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 33.33%;
  margin-bottom: 50px;
}

.counters .counter__item .number {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 100px;
  line-height: 122px;
  text-align: center;
  letter-spacing: -0.05em;
  color: var(--title-color);
  margin-bottom: 10px;
}

.counters .counter__item .divider {
  width: 53px;
  left: 0;
  top: -50px;
  border-top: 4px solid var(--primary-color);
  line-height: 122px;
  margin-bottom: 22px;
}

.counters .counter__item .desc {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.03em;
  color: var(--title-color);
  max-width: 200px;
}

.counters--v2 .counter__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
}

.counters--v2 .counter__item {
  margin-right: 2rem;
  flex-direction: row;
}

.counters--v2 .counter__item:last-child {
  margin-right: 0;
}

.counters--v2 .counter__item .divider {
  display: none;
}

.counters--v2 .counter__item .desc {
  margin-left: 2rem;
}

@media screen and (max-width: 1200px) {
  /* ============= COUNTERS ============= */

  .counters {
    overflow: hidden;
  }

  .counters--v1,
  .counters--v2 {
    padding: 100px 0;
    position: relative;
  }

  .counters--v1 .destaque,
  .counters--v2 .destaque {
    font-size: 300px;
    line-height: 110%;
    top: 0;
  }

  .counters--v1 .counter__list,
  .counters--v2 .counter__list {
    width: 95%;
  }

  .counters--v1 .counter__item,
  .counters--v2 .counter__item {
    flex-direction: column;
    margin-right: 0;
  }

  .counters--v1 .counter__item .divider,
  .counters--v2 .counter__item .divider {
    display: block;
  }

  .counters--v1 .counter__item .desc,
  .counters--v2 .counter__item .desc {
    margin-left: 0;
  }
}

@media screen and (max-width: 991px) {
  /* ============= COUNTERS  ============= */

  .counters {
    padding: 0;
  }

  .counters .destaque {
    font-size: 200px;
    line-height: 244px;
    top: -10%;
  }

  .counters .counter__item {
    min-width: auto;
  }

  .counters .slick-track {
    padding-bottom: 20%;
  }

  .counters .slick-dots {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5%;
  }

  .counters .slick-dots li {
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .counters .slick-dots li button {
    text-indent: -9999px;
    position: relative;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
  }

  .counters .slick-dots li button::after {
    content: "";
    height: 5px;
    width: 5px;
    border: 2px solid transparent;
    background-color: var(--slick-bullets);
    border-radius: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .counters .slick-dots li.slick-active button::after {
    background-color: transparent;
    border: 2px solid var(--slick-bullets);
  }
}

@media screen and (max-width: 450px) {
  .counters .counter__list .slick-list .slick-track h3 .number {
    margin-left: -1rem;
  }
}

@media screen and (max-width: 319px) {
  .counters .counter__list .slick-list .slick-track h3 .number {
    font-size: 5rem;
  }
}

/* ============= OFFERS  ============= */

.offers {
  padding-top: 50px;
  padding-bottom: 100px;
}

.offers .title {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 60px;
  line-height: 51px;
  text-align: center;
  letter-spacing: -0.05em;
  color: var(--title-color);
  position: relative;
  margin-bottom: 40px;
}

.offers .title::before {
  content: "";
  position: absolute;
  width: 53px;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
  border-top: 4px solid var(--primary-color);
}

.offers .desc {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--desc-color);
  max-width: 720px;
  margin: auto;
  position: relative;
}

.offers .file {
  margin-top: 1.5rem;
  text-decoration: none;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 87.8%;
  letter-spacing: -0.01em;
  color: var(--desc-color);
  position: relative;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.offers .file:hover {
  color: var(--desc-color) !important;
}

.offers .file:hover svg g {
  transform: translateY(5px);
}

.offers .file svg {
  margin-right: 1rem;
  padding: 0.5rem;
  box-sizing: content-box;
  background-color: #fff;
}

.offers .file svg g {
  transition: 0.3s all ease;
}

.offers .accordion__container {
  padding-top: 65px;
  margin: auto;
  width: 75%;
}

.offers .accordion__item {
  background-color: var(--panel-bg);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 2rem 2rem 0rem;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}

.offers .accordion__item .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
}

.offers .accordion__item .top .plus {
  display: none;
}

.offers .accordion__item .top .item-title {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--title-color);
}

.offers .accordion__item .item-desc {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  max-width: 515px;
  color: var(--desc-color);
  padding-left: 1rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}

.offers .accordion__item .item-desc strong {
  font-weight: bold;
}

.offers .accordion__item .item-desc ul {
  list-style: disc;
  margin-left: 50px;
}

.offers .accordion__item .item-desc ul li {
  font-size: 16px;
}

.offers .accordion__item.active {
  padding: 2rem 2rem 5rem;
}

.offers .accordion__item.active .top .plus {
  display: block;
}

.offers .accordion__item.active .top .minus {
  display: none;
}

.offers .accordion__item.active .item-desc {
  opacity: 1;
  max-height: 1200px;
}

.offers--v2,
.offers--v3 {
  padding-bottom: 0;
}

.offers--v2 .offersV2__container,
.offers--v3 .offersV2__container {
  width: 90%;
  margin: 60px auto 0;
}

.offers--v2 .offersV2__list,
.offers--v3 .offersV2__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
  row-gap: 5rem;
}

.offers--v2 .offersV2__item,
.offers--v3 .offersV2__item {
  display: flex;
  flex-direction: column;
  height: auto;
}

.offers--v2 .offersV2__item .top,
.offers--v3 .offersV2__item .top {
  height: 60vh;
}

.offers--v2 .offersV2__item .top .img,
.offers--v3 .offersV2__item .top .img {
  height: 100%;
  width: 100%;
}

.offers--v2 .offersV2__item .top .img img,
.offers--v3 .offersV2__item .top .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.offers--v2 .offersV2__item .bottom,
.offers--v3 .offersV2__item .bottom {
  height: auto;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.offers--v2 .offersV2__item .bottom .title,
.offers--v3 .offersV2__item .bottom .title {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--title-color);
  text-align: left;
  position: relative;
}

.offers--v2 .offersV2__item .bottom .title::before,
.offers--v3 .offersV2__item .bottom .title::before {
  left: 2rem;
}

.offers--v2 .offersV2__item .bottom .desc,
.offers--v3 .offersV2__item .bottom .desc {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  max-width: 515px;
  color: var(--desc-color);
  transition: 0.3s all ease-in-out;
  text-align: left;
  padding-left: 0;
  max-width: 75%;
  margin: inherit;
}

.offers--v3 {
  position: relative;
}

.offers--v3::before {
  content: "";
  left: 50%;
  top: -10%;
  transform: translateX(-50%);
  height: 110%;
  width: 90%;
  background-color: var(--panel-bg);
  border-radius: 5px;
  position: absolute;
}

.offers--v3 .offersV2__container {
  width: 100%;
}

.offers--v3 .offersV2__container .slick-list {
  padding: 0 40% 0 0;
}

.offers--v3 .offersV2__container .slick-track {
  padding-bottom: 70px;
}

.offers--v3 .offersV2__container .slick-dots {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
}

.offers--v3 .offersV2__container .slick-dots li {
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offers--v3 .offersV2__container .slick-dots li button {
  text-indent: -9999px;
  position: relative;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

.offers--v3 .offersV2__container .slick-dots li button::after {
  content: "";
  height: 5px;
  width: 5px;
  border: 2px solid transparent;
  background-color: var(--slick-bullets);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.offers--v3 .offersV2__container .slick-dots li.slick-active button::after {
  background-color: transparent;
  border: 2px solid var(--slick-bullets);
}

.offers--v3 .offersV2__list {
  display: flex;
  flex-wrap: nowrap;
}

.offers--v3 .offersV2__item {
  display: flex;
  flex-direction: row;
  height: auto;
}

.offers--v3 .offersV2__item .top {
  height: 100%;
}

.offers--v3 .offersV2__item .top .img {
  height: 395px;
  width: 425px;
  border-radius: 5px;
}

.offers--v3 .offersV2__item .top .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.offers--v3 .offersV2__item .bottom {
  height: auto;
  padding: 5rem 0rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.offers--v3 .offersV2__item .bottom .title {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--title-color);
  text-align: left;
  position: relative;
}

.offers--v3 .offersV2__item .bottom .title::before {
  left: 2rem;
}

.offers--v3 .offersV2__item .bottom .desc {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  max-width: 515px;
  color: var(--desc-color);
  transition: 0.3s all ease-in-out;
  text-align: left;
  padding-left: 0;
  max-width: 75%;
  margin: inherit;
}

@media screen and (max-width: 1200px) {
  .offers .accordion__container {
    width: 95%;
  }

  .offers--v2 .offersV2__list {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  }
}

@media screen and (max-width: 991px) {
  /* ============= OFFERS  ============= */

  .offers {
    padding-top: 150px;
    padding-bottom: 0;
  }

  .offers .title {
    font-size: 40px;
    line-height: 87%;
    margin-bottom: 40px;
  }

  .offers .desc {
    font-size: 16px;
    line-height: 28px;
    padding: 1rem;
  }

  .offers .accordion__container {
    width: 95%;
  }

  .offers .accordion__item .top .item-title {
    font-size: 22px;
    line-height: 28px;
  }

  .offers .accordion__item .item-desc {
    font-size: 16px;
    line-height: 28px;
  }

  .offers--v2 .offersV2__container {
    width: 100%;
  }

  .offers--v2 .offersV2__list {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 0;
  }

  .offers--v2 .offersV2__item {
    margin-bottom: 0;
  }

  .offers--v2 .offersV2__item .top {
    height: auto;
  }

  .offers--v2 .offersV2__item .bottom .title {
    font-size: 30px;
    line-height: 28px;
    margin-bottom: 15px;
  }

  .offers--v2 .offersV2__item .bottom .desc {
    font-size: 16px;
    line-height: 28px;
    max-width: 90%;
  }

  .offers--v3 {
    padding-bottom: 0;
  }

  .offers--v3::before {
    width: 100%;
  }

  .offers--v3 .offersV2__container .slick-list {
    padding: 0;
  }

  .offers--v3 .offersV2__item {
    flex-direction: column;
    width: 90%;
    margin: 0 20px;
  }

  .offers--v3 .offersV2__item .top {
    width: 100%;
  }

  .offers--v3 .offersV2__item .top .img {
    height: 220px;
    width: 100%;
  }

  .offers--v3 .offersV2__item .bottom {
    padding-left: 2rem;
  }
}

/* ============= CONTACT ============= */

.contact .inner {
  padding: 10rem 5rem;
  width: 85%;
  margin: auto;
  border-top: 1px solid #E5E5E5;
  padding-top: 100px;
  display: flex;
  align-items: flex-start;
}

.contact .inner .info {
  padding-top: 2rem;
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.contact .inner .info .info-item {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 350px;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  color: var(--desc-color);
  text-decoration: none;
  transition: 0.3s all ease;
}

.contact .inner .info .info-item:hover svg {
  transform: scale(1.15);
}

.contact .inner .info .info-item svg {
  margin-right: 15px;
  min-width: 35px;
  transition: 0.3 all ease;
}

.contact .inner .info .info-item svg path {
  transition: 0.3 all ease;
  stroke: var(--footer-svg-color);
}

.contact .inner .info .email {
  align-items: flex-start !important;
}

.contact .inner .info .title {
  font-style: normal;
  font-weight: bold;
  font-size: 60px;
  line-height: 51px;
  letter-spacing: -0.05em;
  color: var(--title-color);
  font-family: "Helvetica bold" !important;
  position: relative;
}

.contact .inner .info .title::before {
  content: "";
  position: absolute;
  width: 53px;
  left: 0%;
  top: -50px;
  border-top: 4px solid var(--primary-color);
  max-width: 150px;
}

.contact .inner .info .social-medias {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
}

.contact .inner .info .social-medias a {
  margin-right: 20px;
}

.contact .inner .info .social-medias a svg {
  opacity: 0.9;
}

.contact .inner .info .social-medias a svg path {
  fill: var(--footer-svg-color);
}

.contact .inner .info .social-medias a svg circle {
  stroke: var(--footer-svg-color);
}

.contact .inner .form-container {
  flex: 1;
  max-width: 550px;
}

.contact .inner .form-container form {
  width: 100%;
}

.contact .inner .form-container form .inputWrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.contact .inner .form-container form .inputWrapper input,
.contact .inner .form-container form .inputWrapper textarea {
  resize: none;
  width: 100%;
  border: none;
  outline: none;
  background: var(--panel-bg);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 21px 35px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--title-color);
  box-sizing: border-box;
  z-index: 0;
  font-family: "Helvetica bold" !important;
}

.contact .inner .form-container form .inputWrapper input:valid + label,
.contact .inner .form-container form .inputWrapper input:focus + label,
.contact .inner .form-container form .inputWrapper textarea:valid + label,
.contact .inner .form-container form .inputWrapper textarea:focus + label {
  top: 0px;
  font-size: 8px;
  font-weight: normal;
  color: var(--desc-color);
}

.contact .inner .form-container form .inputWrapper label {
  font-family: "Helvetica bold" !important;
  position: absolute;
  left: 35px;
  top: 25px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--title-color);
  z-index: 1;
  transition: 0.3s all ease;
}

.contact .inner .form-container form .inputWrapper .error {
  color: red;
  padding: 5px 0;
  position: absolute;
  left: 35px;
  bottom: 10px;
  font-size: 11px;
}

.contact .inner .form-container form .inputWrapper--captcha {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact .inner .form-container form .inputWrapper--captcha button {
  background-color: var(--title-color);
  color: var(--panel-bg);
  border: none;
  outline: none;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
}

.contact .inner .form-container form .inputWrapper--checkbox {
  display: flex;
  align-items: flex-start;
  align-items: center;
  margin-bottom: 30px;
}

.contact .inner .form-container form .inputWrapper--checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: -9999;
}

.contact .inner .form-container form .inputWrapper--checkbox input[type=checkbox]:checked ~ .custom-checkbox {
  background-color: #fff;
}

.contact .inner .form-container form .inputWrapper--checkbox input[type=checkbox]:checked ~ .custom-checkbox::after {
  display: block;
}

.contact .inner .form-container form .inputWrapper--checkbox .custom-checkbox {
  width: 100%;
  max-width: 20px;
  height: 20px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  margin-right: 15px;
}

.contact .inner .form-container form .inputWrapper--checkbox .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.contact .inner .form-container form .inputWrapper--checkbox .custom-message {
  font-size: 12px;
  color: var(--desc-color);
}

.contact .inner .form-container form .inputWrapper--checkbox .custom-message a {
  text-decoration: none;
  color: var(--primary-color);
}

.contact .inner .form-container form .request {
  overflow: hidden;
  position: absolute;
  z-index: -2;
  width: 10px;
}

.contact .inner .form-container form .submit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 22px;
}

.contact .inner .form-container form .submit .btn {
  background-color: var(--title-color);
  color: var(--panel-bg);
  border: none;
  outline: none;
  border-radius: 5px;
  width: 285px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.contact .inner .form-container form .submit .btn:hover {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.contact .inner .form-container form .submit .btn:hover svg {
  animation: moveX 0.5s linear infinite alternate;
}

@keyframes moveX {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(10px);
  }
}

.contact .inner .form-container form .submit .btn svg {
  margin-right: 40px;
}

.contact .inner .form-container form .submit .btn svg path {
  stroke: var(--panel-bg);
}

.contact .inner .form-container form .send-responde {
  font-size: 20px;
  line-height: 28px;
  margin-top: 15px;
  display: none;
}

.contact .inner .form-container form .sendSucesses {
  color: var(--primary-color);
}

.contact .inner .form-container form .sendFail {
  color: red;
}

.contact .credits {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0 0;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 87.8%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #fff;
  background-color: var(--footer-color);
}

.contact--v2 .inner {
  flex-direction: row-reverse;
}

.contact--v2 .inner .info {
  padding-left: 5rem;
}

.contact--v2 .inner .request {
  overflow: hidden;
  position: absolute;
  width: 10px;
  z-index: -2;
}

@media screen and (max-width: 1200px) {
  /* ============= CONTACT ============= */

  .contact .inner {
    padding: 5rem;
    width: 95%;
  }
}

@media screen and (max-width: 991px) {
  /* ============= CONTACT ============= */

  .contact .inner {
    padding: 5rem 0rem;
    width: 95%;
    flex-direction: column;
  }

  .contact .inner .info {
    padding: 0 2rem;
  }

  .contact .inner .info .info-item {
    font-size: 16px;
    line-height: 25px;
  }

  .contact .inner .info .title {
    font-size: 40px;
    line-height: 87%;
  }

  .contact .inner .form-container {
    margin-top: 35px;
    max-width: 100%;
    width: 100%;
  }

  .contact .inner .form-container form .inputWrapper {
    max-width: 100%;
  }

  .contact .inner .form-container form .inputWrapper input,
  .contact .inner .form-container form .inputWrapper textarea {
    font-size: 16px;
    line-height: 28px;
    width: 100%;
  }

  .contact .inner .form-container form .inputWrapper label {
    font-size: 16px;
    line-height: 28px;
    left: 15px;
  }

  .contact .inner .form-container form .inputWrapper .error {
    left: 15px;
  }

  .contact .inner .form-container form .submit {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
  }
}

/* ============= BLOG  ============= */

.blog {
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 100px;
  background-color: var(--body-bg);
}

.blog .title {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 60px;
  line-height: 51px;
  text-align: center;
  letter-spacing: -0.05em;
  color: var(--title-color);
  position: relative;
  margin-bottom: 40px;
}

.blog .title::before {
  content: "";
  position: absolute;
  width: 53px;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
  border-top: 4px solid var(--primary-color);
}

.blog .desc {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--desc-color);
  max-width: 720px;
  margin: auto;
  position: relative;
  margin-bottom: 40px;
}

.blog__list {
  display: flex;
}

.blog__item {
  display: flex;
  flex-direction: column;
  height: auto;
  flex-basis: 33.33%;
  flex: 1;
  max-width: 50%;
  text-decoration: none;
}

.blog__item .top {
  height: 100%;
}

.blog__item .top .img {
  height: 40vh;
  width: 100%;
}

.blog__item .top .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog__item .bottom {
  height: auto;
  padding: 5rem 0rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.blog__item .bottom .title {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--title-color);
  text-align: left;
  position: relative;
}

.blog__item .bottom .title::before {
  left: 2rem;
}

.blog__item .bottom .desc {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  max-width: 515px;
  color: var(--desc-color);
  transition: 0.3s all ease-in-out;
  text-align: left;
  padding-left: 0;
  max-width: 75%;
  margin: inherit;
}

.blog__item .bottom .cta {
  color: var(--primary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  margin-top: 10px;
}

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

.blog__all a {
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 87.8%;
  letter-spacing: -0.01em;
  color: var(--primary-color);
  position: relative;
  padding-left: 70px;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog__all a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 53px;
  border-top: 4px solid var(--primary-color);
}

.blog__all a svg {
  margin-left: 1rem;
  transform: rotate(-90deg) translateX(-1px);
}

.blog__all a svg path {
  stroke: var(--primary-color);
}

.blog__all a:hover {
  color: var(--primary-color) !important;
}

@media screen and (max-width: 991px) {
  .blog__list {
    flex-direction: column;
  }

  .blog__item {
    max-width: 100%;
  }

  .blog__item .bottom {
    padding: 2rem;
  }

  .blog__all {
    margin-top: 5rem;
  }
}

/* ============= Products  ============= */

.products {
  padding-top: 50px;
  padding-bottom: 100px;
}

.products .title {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 60px;
  line-height: 51px;
  text-align: center;
  letter-spacing: -0.05em;
  color: var(--title-color);
  position: relative;
  margin-bottom: 40px;
}

.products .title::before {
  content: "";
  position: absolute;
  width: 53px;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
  border-top: 4px solid var(--primary-color);
}

.products .desc {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--desc-color);
  max-width: 720px;
  margin: auto;
  position: relative;
  margin-bottom: 40px;
}

.products .content--v7,
.products .content--v8 {
  display: flex;
}

.products .products-categories--v1 .categories,
.products .products-categories--v2 .categories,
.products .products-categories--v3 .categories,
.products .products-categories--v4 .categories,
.products .products-categories--v5 .categories,
.products .products-categories--v6 .categories {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: 2em 0;
  flex-wrap: wrap;
}

.products .products-categories--v1 .categories .category,
.products .products-categories--v2 .categories .category,
.products .products-categories--v3 .categories .category,
.products .products-categories--v4 .categories .category,
.products .products-categories--v5 .categories .category,
.products .products-categories--v6 .categories .category {
  padding: 0.5em 1.5em;
  border-radius: 2em;
  background-color: #fff;
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 10px 1px;
  text-decoration: none;
}

.products .products-categories--v1 .categories .category:hover,
.products .products-categories--v2 .categories .category:hover,
.products .products-categories--v3 .categories .category:hover,
.products .products-categories--v4 .categories .category:hover,
.products .products-categories--v5 .categories .category:hover,
.products .products-categories--v6 .categories .category:hover {
  background-color: #e6e6e6;
  cursor: pointer;
}

.products .products-categories--v1 .categories .active,
.products .products-categories--v2 .categories .active,
.products .products-categories--v3 .categories .active,
.products .products-categories--v4 .categories .active,
.products .products-categories--v5 .categories .active,
.products .products-categories--v6 .categories .active {
  background-color: black;
  color: #fff !important;
}

.products .products-categories--v1 .categories .active:hover,
.products .products-categories--v2 .categories .active:hover,
.products .products-categories--v3 .categories .active:hover,
.products .products-categories--v4 .categories .active:hover,
.products .products-categories--v5 .categories .active:hover,
.products .products-categories--v6 .categories .active:hover {
  background-color: #333333;
  color: #fff !important;
}

.products .products-categories--v7,
.products .products-categories--v8 {
  display: flex;
  justify-content: space-around;
  padding: 0 2rem;
  width: 23%;
}

.products .products-categories--v7 .categories-accordion,
.products .products-categories--v8 .categories-accordion {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  width: 100%;
}

.products .products-categories--v7 .categories-accordion__title,
.products .products-categories--v8 .categories-accordion__title {
  font-weight: bold;
  color: var(--title-color);
  border-bottom: 1px solid #CECECE;
  width: 100%;
  padding-bottom: 16px;
}

.products .products-categories--v7 .categories-accordion__item,
.products .products-categories--v8 .categories-accordion__item {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #CECECE;
  width: 100%;
  padding-top: 16px;
  position: relative;
  gap: 16px;
}

.products .products-categories--v7 .categories-accordion__item__all,
.products .products-categories--v8 .categories-accordion__item__all {
  display: flex;
  align-items: center;
}

.products .products-categories--v7 .categories-accordion__item__all label,
.products .products-categories--v8 .categories-accordion__item__all label {
  color: #606060;
  padding-top: 3px;
  padding-left: 16px;
  letter-spacing: 0.5px;
}

.products .products-categories--v7 .categories-accordion__item__category,
.products .products-categories--v8 .categories-accordion__item__category {
  display: flex;
  align-items: center;
}

.products .products-categories--v7 .categories-accordion__item__category .category,
.products .products-categories--v8 .categories-accordion__item__category .category {
  padding-left: 16px;
}

.products .products-categories--v7 .categories-accordion__item__category label,
.products .products-categories--v8 .categories-accordion__item__category label {
  color: #606060;
  padding-top: 3px;
  padding-left: 16px;
  letter-spacing: 0.5px;
}

.products .products-categories--v7 .categories-accordion__item:last-child,
.products .products-categories--v8 .categories-accordion__item:last-child {
  padding-bottom: 16px;
  border-bottom: 1px solid #CECECE;
}

.products .products-categories--v7 .categories-accordion .checkbox-input,
.products .products-categories--v8 .categories-accordion .checkbox-input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.5em;
  height: 1.5em;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: border-color 0.2s ease;
  border-radius: 6px;
  aspect-ratio: 1/1;
}

.products .products-categories--v7 .categories-accordion .checkbox-input:checked,
.products .products-categories--v8 .categories-accordion .checkbox-input:checked {
  border: 8px solid black;
}

.products .products-categories--v7 .categories-accordion .all-categories,
.products .products-categories--v8 .categories-accordion .all-categories {
  font-weight: 600;
}

.products .products-categories--v9,
.products .products-categories--v10 {
  padding: 0.5rem 0;
  margin-bottom: 16px;
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
}

.products .products-categories--v9 .categories,
.products .products-categories--v10 .categories {
  display: flex;
  justify-content: center;
  gap: 4em;
  flex-wrap: wrap;
}

.products .products-categories--v9 .categories__item,
.products .products-categories--v10 .categories__item {
  display: flex;
  align-items: center;
}

.products .products-categories--v9 .categories__item .category,
.products .products-categories--v10 .categories__item .category {
  border-radius: 2em;
  text-decoration: none;
  margin-left: 0.5rem;
  margin-top: 0.16px;
}

.products .products-categories--v9 .categories__item .checkbox-input,
.products .products-categories--v10 .categories__item .checkbox-input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.5em;
  height: 1.5em;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: border-color 0.2s ease;
  border-radius: 6px;
  aspect-ratio: 1/1;
}

.products .products-categories--v9 .categories__item .checkbox-input:checked,
.products .products-categories--v10 .categories__item .checkbox-input:checked {
  border: 8px solid black;
}

.products__list--v1,
.products__list--v2,
.products__list--v3,
.products__list--v7,
.products__list--v8,
.products__list--v9,
.products__list--v10 {
  display: grid;
  width: 100%;
  height: 100%;
  gap: 1rem;
}

.products__list--v1 {
  grid-template-columns: repeat(3, 1fr);
  padding: 0 15rem;
}

.products__list--v2,
.products__list--v10 {
  grid-template-columns: repeat(4, 1fr);
  padding: 0 10rem;
}

.products__list--v3,
.products__list--v9 {
  grid-template-columns: repeat(5, 1fr);
  padding: 0 5rem;
}

.products__list--v4,
.products__list--v5,
.products__list--v6 {
  width: 100%;
  padding: 0 5rem;
}

.products__list--v4 .slick-list,
.products__list--v5 .slick-list,
.products__list--v6 .slick-list {
  overflow: visible;
}

.products__list--v4 .slick-track,
.products__list--v5 .slick-track,
.products__list--v6 .slick-track {
  display: flex;
  gap: 2rem;
  padding: 0.16px 0;
}

.products__list--v4 .slick-dots,
.products__list--v5 .slick-dots,
.products__list--v6 .slick-dots {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2em;
}

.products__list--v4 .slick-dots li,
.products__list--v5 .slick-dots li,
.products__list--v6 .slick-dots li {
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products__list--v4 .slick-dots li button,
.products__list--v5 .slick-dots li button,
.products__list--v6 .slick-dots li button {
  text-indent: -9999px;
  position: relative;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

.products__list--v4 .slick-dots li button::after,
.products__list--v5 .slick-dots li button::after,
.products__list--v6 .slick-dots li button::after {
  content: "";
  height: 5px;
  width: 5px;
  border: 2px solid transparent;
  background-color: var(--slick-bullets);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.products__list--v4 .slick-dots li.slick-active button::after,
.products__list--v5 .slick-dots li.slick-active button::after,
.products__list--v6 .slick-dots li.slick-active button::after {
  background-color: transparent;
  border: 2px solid var(--slick-bullets);
}

.products__list--v4 {
  padding: 0 15rem;
}

.products__list--v5 {
  padding: 0 10rem;
}

.products__list--v7 {
  grid-template-columns: repeat(4, 1fr);
  padding: 0 2rem;
}

.products__list--v7 .slick-track {
  width: 100%;
}

.products__list--v8 {
  grid-template-columns: repeat(3, 1fr);
  padding: 0 5rem;
}

.products__list--v9 {
  margin-top: 16px;
}

.products__item {
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.0509803922) 0px 0px 5px 1px;
  position: relative;
  width: 100%;
  min-height: 400px;
  background-color: var(--panel-bg);
  cursor: pointer;
}

.products__item .top {
  height: auto;
  width: 100%;
  position: relative;
}

.products__item .top img {
  aspect-ratio: 1/1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.products__item .top .svg {
  position: absolute;
  top: 3%;
  right: 3%;
  width: 3em;
  height: 3em;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products__item .top .svg:hover {
  background-color: #e6e6e6;
  cursor: pointer;
}

.products__item .bottom {
  min-height: auto;
  background-color: white;
  padding: 1.2rem;
  background-color: var(--panel-bg);
  color: var(--desc-color);
  text-align: left;
}

.products__item .bottom .title {
  font-family: "Helvetica bold" !important;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 28px;
  letter-spacing: -0.03rem;
  color: var(--title-color);
  text-align: left;
  position: relative;
}

.products__item .bottom .title::before {
  display: none;
}

.products__item.hidden {
  display: none;
}

.products .load-more {
  display: flex;
  justify-content: center;
}

.products .load-more .load-more-btn {
  background-color: #000;
  color: white;
  border: none;
  border-radius: 0.3rem;
  padding: 16px 4rem;
  margin-top: 2rem;
  cursor: pointer;
}

.products .load-more .load-more-btn:hover {
  background-color: #333333;
}

.products__modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all ease-in-out 0.5s;
}

.products__modal.active {
  pointer-events: all;
  opacity: 1;
}

.products__modal__content {
  background-color: #fbfbfb;
  position: relative;
  max-width: 60%;
  display: flex;
}

.products__modal__content__carousel {
  position: relative;
  width: 60%;
}

.products__modal__content__carousel img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.products__modal__content__carousel .slick-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 50%;
  border: none;
  position: absolute;
  z-index: 5;
  cursor: pointer;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background-color: #FFF;
}

.products__modal__content__carousel .slick-prev:hover {
  background-color: #e6e6e6;
}

.products__modal__content__carousel .slick-next {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 50%;
  border: none;
  position: absolute;
  z-index: 5;
  cursor: pointer;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background-color: #FFF;
}

.products__modal__content__carousel .slick-next:hover {
  background-color: #e6e6e6;
}

.products__modal__content__carousel .slick-dots {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
}

.products__modal__content__carousel .slick-dots li {
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products__modal__content__carousel .slick-dots li button {
  text-indent: -9999px;
  position: relative;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

.products__modal__content__carousel .slick-dots li button::after {
  content: "";
  height: 5px;
  width: 5px;
  border: 2px solid transparent;
  background-color: var(--slick-bullets);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.products__modal__content__carousel .slick-dots li.slick-active button::after {
  background-color: transparent;
  border: 2px solid var(--slick-bullets);
}

.products__modal__content__description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  width: 40%;
  color: #000;
}

.products__modal__content__description .title {
  font-size: 30px;
  line-height: 51px;
  text-align: left;
  letter-spacing: -0.05em;
  margin: 6rem 0 16px 3rem;
  color: #000;
}

.products__modal__content__description .title::before {
  display: none;
}

.products__modal__content__description .description {
  max-height: 350px;
  overflow-y: auto;
  margin: 0 16px 16px 3rem;
  color: #000;
}

.products__modal__content__description .description::-webkit-scrollbar {
  width: 6px;
}

.products__modal__content__description .description::-webkit-scrollbar-thumb {
  background: #606060;
  border-radius: 3px;
}

.products__modal__content__description .description::-webkit-scrollbar-thumb:hover {
  background: #474747;
}

.products__modal__content__description .description p {
  line-height: 1.5rem;
  margin-right: 2rem;
  color: #000;
}

.products__modal__content__description .interest {
  width: 100%;
  padding: 16px 2rem;
  background-color: black;
  color: white;
  text-align: center;
  text-decoration: none;
}

.products__modal__content__description .interest:hover {
  background-color: #333333;
  color: white !important;
}

.products__modal__content .close {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 1rem;
  border: 1px solid #CECECE;
  border-radius: 50%;
  position: absolute;
  z-index: 100000;
  top: 16px;
  right: 16px;
  cursor: pointer;
}

.products__modal__content .close svg {
  transform: translateX(-0.5px);
}

.products__modal__content .close svg path {
  fill: black;
}

.products__modal__content .close:hover {
  background-color: #e6e6e6;
}

@media screen and (max-width: 1601px) {
  .products__modal__content__description .description {
    max-height: 300px;
  }
}

@media screen and (max-width: 1460px) {
  .products .products-categories--v7 {
    width: 25%;
    padding: 0 16px;
  }

  .products__list {
    padding: 0 3rem;
  }

  .products__list--v1,
  .products__list--v2,
  .products__list--v3,
  .products__list--v7,
  .products__list--v8,
  .products__list--v9,
  .products__list--v10 {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 2rem;
  }

  .products__list--v1 .title,
  .products__list--v2 .title,
  .products__list--v3 .title,
  .products__list--v7 .title,
  .products__list--v8 .title,
  .products__list--v9 .title,
  .products__list--v10 .title {
    font-size: 20px;
  }

  .products__item .bottom {
    padding: 1rem;
  }

  .products__item .bottom .title {
    font-size: 20px;
  }

  .products__modal__content__description .title {
    margin: 3rem 0.5rem 16px 0.5rem;
  }

  .products__modal__content__description .description {
    max-height: 260px;
  }
}

@media screen and (max-width: 1328px) {
  .products .products-categories--v7 {
    width: 25%;
    padding: 0 16px;
  }

  .products__list--v1,
  .products__list--v2,
  .products__list--v3,
  .products__list--v7,
  .products__list--v8,
  .products__list--v9,
  .products__list--v10 {
    padding: 0 1em;
  }

  .products__list--v1 .title,
  .products__list--v2 .title,
  .products__list--v3 .title,
  .products__list--v7 .title,
  .products__list--v8 .title,
  .products__list--v9 .title,
  .products__list--v10 .title {
    font-size: 20px;
  }

  .products__list--v3 .bottom {
    padding: 1.3rem;
    font-size: 16px;
  }

  .products__list--v3 .bottom .title {
    font-size: 20px;
  }

  .products__list--v4 {
    padding: 0 8rem;
  }

  .products__list--v5 {
    padding: 0 5rem;
  }

  .products__list--v6 {
    padding: 0 16px;
  }

  .products__list--v6 .bottom {
    padding: 16px;
    font-size: 16px;
  }

  .products__list--v6 .bottom .title {
    font-size: 20px;
  }

  .products__item {
    min-height: 350px;
  }

  .products__modal__content__description .description {
    max-height: 200px;
  }
}

@media screen and (max-width: 1100px) {
  .products__modal__content {
    flex-direction: column;
  }

  .products__modal__content__carousel {
    position: relative;
    width: 100%;
  }

  .products__modal__content__carousel img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .products__modal__content__description {
    width: 100%;
  }

  .products__modal__content__description .title {
    margin: 2rem 0.5rem 16px 0.5rem;
  }

  .products__modal__content__description .description {
    max-height: 160px;
  }
}

@media screen and (max-width: 911px) {
  .products .products-categories--v7,
  .products .products-categories--v8 {
    width: 100%;
    margin-bottom: 2rem;
  }

  .products .products-categories--v9 .categories,
  .products .products-categories--v10 .categories {
    gap: 16px !important;
  }

  .products .content--v7,
  .products .content--v8 {
    flex-direction: column;
  }

  .products__list--v1,
  .products__list--v2,
  .products__list--v3,
  .products__list--v4,
  .products__list--v5,
  .products__list--v7,
  .products__list--v8,
  .products__list--v9,
  .products__list--v10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 0.5rem;
  }

  .products__list--v1 .products__item .bottom,
  .products__list--v2 .products__item .bottom,
  .products__list--v3 .products__item .bottom,
  .products__list--v4 .products__item .bottom,
  .products__list--v5 .products__item .bottom,
  .products__list--v7 .products__item .bottom,
  .products__list--v8 .products__item .bottom,
  .products__list--v9 .products__item .bottom,
  .products__list--v10 .products__item .bottom {
    padding: 16px;
    font-size: 16px;
  }

  .products__list--v1 .products__item .bottom .title,
  .products__list--v2 .products__item .bottom .title,
  .products__list--v3 .products__item .bottom .title,
  .products__list--v4 .products__item .bottom .title,
  .products__list--v5 .products__item .bottom .title,
  .products__list--v7 .products__item .bottom .title,
  .products__list--v8 .products__item .bottom .title,
  .products__list--v9 .products__item .bottom .title,
  .products__list--v10 .products__item .bottom .title {
    font-size: 1.5rem;
  }

  .products__modal__description__carousel {
    position: relative;
    width: 100%;
  }

  .products__modal__description__carousel img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .products__modal__description .description {
    max-height: 300px;
  }
}

@media (max-width: 991px) {
  .products__list--v1,
  .products__list--v2,
  .products__list--v3,
  .products__list--v7,
  .products__list--v8,
  .products__list--v9,
  .products__list--v10 {
    grid-template-columns: repeat(1, 1fr);
  }

  .products__modal__content__description .title {
    font-size: 16px;
    margin: 0;
    padding: 10px;
    line-height: normal;
  }

  .products__modal__content__description .description {
    font-size: 16px;
    margin: 0;
    padding: 10px;
    line-height: normal;
  }
}

.d-none {
  display: none;
}

/* ============= PAGES ============= */

.blog__first {
  margin: 120px auto 65px;
  min-height: 70vh;
  width: 95%;
  position: relative;
  display: flex;
  padding-left: 100px;
  align-items: center;
  text-decoration: none;
}

.blog__first__bg {
  position: absolute;
  inset: 0;
}

.blog__first__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog__first__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
}

.blog__first__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 60vw;
  position: relative;
  gap: 25px;
}

.blog__first__content .post-first-title {
  font-family: "Helvetica bold";
  color: #FFF;
  font-size: 70px;
  font-style: normal;
  line-height: 87.8%;
  letter-spacing: -0.7px;
}

.blog__first__content .post-first-desc {
  font-family: "Helvetica thin";
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  line-height: 25px;
  max-width: 65%;
}

.blog__first__content .cta {
  font-family: "Helvetica bold";
  font-size: 20px;
  font-style: normal;
  line-height: 87.8%;
  letter-spacing: -0.2px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog__first__content .cta::before {
  content: "";
  width: 53px;
  border-bottom: 4px solid var(--primary-color);
}

.blog__grid {
  padding-top: 30px;
  width: 95%;
  margin: 50px auto;
}

.blog__grid__link {
  display: flex;
  position: relative;
  text-decoration: none;
}

.blog__grid__link .img {
  width: 50%;
  height: 50%;
  z-index: 1;
}

.blog__grid__link .img img {
  border-radius: 5px 0px 0px 5px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.blog__grid__link .content {
  width: 50%;
  height: 50%;
  padding: 8rem 10rem 3rem;
}

.blog__grid__link .content .content-title {
  font-family: "Helvetica bold" !important;
  font-size: 30px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--title-color);
  max-width: 300px;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}

.blog__grid__link .content .content-title::before {
  content: "";
  position: absolute;
  width: 53px;
  left: 0;
  top: -50px;
  border-top: 4px solid var(--primary-color);
}

.blog__grid__link .content .content-desc {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  color: var(--desc-color);
  max-width: 400px;
  position: relative;
  margin-bottom: 20px;
}

.blog__grid__link .content .cta {
  color: var(--primary-color);
  font-family: "Helvetica bold";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.blog__grid__item:nth-child(even) .blog__grid__link {
  flex-direction: row-reverse;
}

.blog__grid__item:nth-child(even) .blog__grid__link .number {
  right: 45%;
}

.blog__grid__item:nth-child(even) .blog__grid__link .img img {
  border-radius: 0px 5px 5px 0px;
}

@media screen and (max-width: 991px) {
  .blog__first {
    padding-left: 2rem;
    width: 100%;
  }

  .blog__first__content {
    max-width: 85vw;
    gap: 15px;
  }

  .blog__first__content .post-first-title {
    font-size: 40px;
  }

  .blog__first__content .post-first-desc {
    font-size: 16px;
    max-width: 85%;
  }

  .blog__first__content .cta {
    font-size: 16px;
  }

  .blog__first__content .cta::before {
    content: "";
    width: 30px;
    border-bottom: 2px solid var(--primary-color);
  }

  .blog__grid {
    margin: 25px auto;
    width: 100%;
  }

  .blog__grid__link {
    flex-direction: column;
  }

  .blog__grid__link .img {
    width: 100%;
    height: 220px;
    z-index: 1;
  }

  .blog__grid__link .img img {
    border-radius: 0;
  }

  .blog__grid__link .content {
    width: 100%;
    height: auto;
    padding: 3.5rem 2rem;
  }

  .blog__grid__link .content .content-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .blog__grid__link .content .content-title::before {
    top: -25px;
    border-width: 2px;
    width: 30px;
  }

  .blog__grid__link .content .content-desc {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 28px;
    color: var(--desc-color);
    max-width: 400px;
    position: relative;
    margin-bottom: 20px;
  }

  .blog__grid__link .content .cta {
    color: var(--primary-color);
    font-family: "Helvetica bold";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
  }

  .blog__grid__item:nth-child(even) .blog__grid__link {
    flex-direction: column;
  }

  .blog__grid__item:nth-child(even) .blog__grid__link .img img {
    border-radius: 0;
  }
}

.post__banner {
  margin: 250px auto 65px;
  width: 95%;
  position: relative;
  align-items: center;
  text-decoration: none;
}

.post__banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 60vw;
  position: relative;
  gap: 25px;
  padding: 0 0 75px 90px;
}

.post__banner__content .post-first-title {
  font-family: "Helvetica bold";
  color: var(--title-color);
  font-size: 70px;
  font-style: normal;
  line-height: 87.8%;
  letter-spacing: -0.7px;
}

.post__banner__content .post-first-desc {
  font-family: "Helvetica thin";
  color: var(--title-color);
  font-size: 20px;
  font-style: normal;
  line-height: 25px;
  max-width: 65%;
}

.post__banner__bg {
  height: 85vh;
}

.post__banner__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post__content {
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 100px;
}

.post__content .content-left {
  height: auto;
  position: absolute;
  left: 50px;
  top: 0;
  height: 100%;
}

.post__content .content-left .inner {
  position: sticky;
  top: 5rem;
}

.post__content .content-left .inner svg {
  transform: translateY(-25px);
}

.post__content .content-left .inner svg path {
  stroke: var(--title-color);
}

.post__content .content-right .content-right-inner {
  max-width: 625px;
  margin: 0 auto 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--title-color);
}

.post__content .content-right .content-right-inner h1,
.post__content .content-right .content-right-inner h2,
.post__content .content-right .content-right-inner h3,
.post__content .content-right .content-right-inner h4,
.post__content .content-right .content-right-inner h5,
.post__content .content-right .content-right-inner h6 {
  font-family: "Helvetica medium";
  color: var(--title-color);
  font-size: 30px;
  font-style: normal;
  line-height: 28.5px;
  letter-spacing: -0.9px;
  margin-bottom: 25px;
}

.post__content .content-right .content-right-inner p,
.post__content .content-right .content-right-inner a,
.post__content .content-right .content-right-inner ul,
.post__content .content-right .content-right-inner ol,
.post__content .content-right .content-right-inner li {
  color: var(--desc-color);
  font-family: "Helvetica light";
  font-size: 20px;
  font-style: normal;
  line-height: 32px;
}

.post__content .content-right .content-right-inner ul {
  list-style: disc;
  padding-left: 25px;
  margin: 25px 0;
}

.post__content .content-right .content-right-inner ol {
  list-style: decimal;
  padding-left: 25px;
  margin: 25px 0;
}

.post__content .content-right .content-right-inner img {
  width: 100%;
  margin: 50px 0;
}

.post__content .content-right .content-right-inner a {
  text-decoration: underline;
  color: var(--primary-color);
}

.post__content .content-right .content-right-inner a:hover {
  color: var(--primary-color) !important;
}

.post__content .content-right .content-right-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post__content .content-right .content-right-share p {
  color: var(--title-color);
  font-family: "Helvetica medium";
  font-size: 20px;
  font-style: normal;
  line-height: 32px;
  margin-right: 30px;
}

.post__content .content-right .content-right-share svg path {
  fill: var(--title-color);
}

@media screen and (max-width: 991px) {
  .post__banner {
    margin: 200px auto 35px;
    width: 100%;
  }

  .post__banner__content {
    max-width: 95%;
    position: relative;
    gap: 15px;
    padding: 2rem;
  }

  .post__banner__content .post-first-title {
    font-size: 40px;
  }

  .post__banner__content .post-first-desc {
    font-size: 16px;
    max-width: 85%;
  }

  .post__banner__bg {
    height: 300px;
  }

  .post__content {
    padding-bottom: 50px;
    flex-direction: column;
    margin: auto;
  }

  .post__content .content-left {
    height: auto;
    position: unset;
  }

  .post__content .content-left .inner {
    position: unset;
    top: 0;
  }

  .post__content .content-left .inner svg {
    width: 35px;
    display: none;
  }

  .post__content .content-right .content-right-inner {
    max-width: 625px;
    margin: 0 auto 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--title-color);
  }

  .post__content .content-right .content-right-inner h1,
  .post__content .content-right .content-right-inner h2,
  .post__content .content-right .content-right-inner h3,
  .post__content .content-right .content-right-inner h4,
  .post__content .content-right .content-right-inner h5,
  .post__content .content-right .content-right-inner h6 {
    font-size: 22px;
    padding: 0 2rem;
    margin: 25px 0;
  }

  .post__content .content-right .content-right-inner p,
  .post__content .content-right .content-right-inner a,
  .post__content .content-right .content-right-inner ul,
  .post__content .content-right .content-right-inner ol,
  .post__content .content-right .content-right-inner li {
    font-size: 16px;
    line-height: 145%;
    margin: 10px 0;
  }

  .post__content .content-right .content-right-inner p {
    padding: 0 2rem;
    margin: 25px 0;
  }

  .post__content .content-right .content-right-inner ul,
  .post__content .content-right .content-right-inner ol {
    padding: 0 3rem;
    margin: 25px 0;
  }

  .post__content .content-right .content-right-inner img {
    width: calc(100% + 4rem) !important;
    max-height: 220px !important;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 25px 0;
    transform: translateX(-2rem);
  }

  .post__content .content-right .content-right-inner a {
    text-decoration: underline;
    color: var(--primary-color);
  }

  .post__content .content-right .content-right-inner a:hover {
    color: var(--primary-color) !important;
  }

  .post__content .content-right .content-right-share {
    padding: 0 2rem;
    justify-content: center;
  }

  .post__content .content-right .content-right-share p {
    font-size: 16px;
    margin-right: 15px;
  }

  .post__content .content-right .content-right-share svg {
    width: 20px;
  }
}

/* ============= COMPONENTES ============= */

.btn {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 87.8%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #000000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}

.btn svg {
  margin-right: 1.5rem;
}

.btn--whats {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 0 2rem;
  height: 63px;
  transition: 0.3s all ease;
}

.btn--whats:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
}

.gallery .gallery-container {
  display: flex;
  flex-direction: column;
  gap: 41px;
  padding: 7rem 0;
  margin: 0 auto;
}

.gallery__upper {
  display: flex;
  flex-direction: column;
  gap: 41px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.gallery__upper__line {
  height: 4px;
  width: 53px;
  background: #000;
}

.gallery__upper__title,
.gallery__upper__subtitle {
  text-align: center;
  font-style: normal;
  font-weight: 700;
}

.gallery__upper__title {
  font-family: "Helvetica bold";
  color: #000;
  font-size: 60px;
  line-height: 51px;
  letter-spacing: -3px;
}

.gallery__upper__subtitle {
  font-size: 30px;
  line-height: 28.5px;
  letter-spacing: -0.9px;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #606060;
  max-width: 720px;
  margin: auto;
  position: relative;
  font-family: "Helvetica regular";
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 1rem), 1fr));
  gap: 1rem;
  width: 90%;
  margin: 0 auto;
}

.gallery__grid .item img {
  border: 1px solid #000;
  aspect-ratio: 4/3;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s all ease;
  opacity: 1;
  display: block;
}

.gallery__grid .item img.hide {
  opacity: 0;
  height: 0;
  border: 1px solid transparent;
}

.gallery__grid.carousel {
  display: block;
  grid-template-columns: unset;
  width: 100%;
}

.gallery__grid.carousel .slick-list {
  padding: 0 10rem 0 5% !important;
}

.gallery .slider-gallery-dots .slick-dots {
  display: flex;
  justify-content: center;
}

.gallery .slider-gallery-dots .slick-dots li {
  position: relative;
}

.gallery .slider-gallery-dots .slick-dots li button {
  opacity: 0;
}

.gallery .slider-gallery-dots .slick-dots li:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  border-radius: 8px;
  border: 4px solid #000;
  height: 8px;
  width: 8px;
  content: "";
  cursor: pointer;
  transition: 0.5s all ease;
}

.gallery .slider-gallery-dots .slick-dots .slick-active:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 8px;
  border: 4px solid #000;
  height: 8px;
  width: 8px;
  content: "";
  cursor: pointer;
}

.gallery__loadmore {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 41px;
}

.gallery__loadmore__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 283px;
  height: 63px;
  border-radius: 5px;
  border: 1px solid transparent;
  background: #000;
  color: #fff;
  text-align: center;
  font-family: "Helvetica regular";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 87.8%;
  letter-spacing: -0.2px;
  cursor: pointer;
  transition: 0.5s all ease;
}

.gallery__loadmore__btn:hover {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

.gallery.dark {
  background: #1f1f1f;
  position: relative;
}

.gallery.dark.has-carousel:before {
  height: 100%;
  width: 90%;
  transform: translateX(-50%);
  z-index: 0;
  content: "";
  background: #000;
  position: absolute;
  top: 0%;
  left: 50%;
}

.gallery.dark .gallery__upper__line {
  background: #fff;
}

.gallery.dark .gallery__upper__title,
.gallery.dark .gallery__upper__subtitle {
  color: #fff;
}

.gallery.dark .gallery__upper__subtitle {
  color: #e4e4e4;
}

.gallery.dark .gallery__grid .item img {
  border: 1px solid #fff;
}

.gallery.dark .gallery__loadmore__btn {
  background: #fff;
  color: #000;
}

.gallery.dark .gallery__loadmore__btn:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.gallery.dark .slider-gallery-dots .slick-dots li:after {
  background: #fff;
  border: 4px solid #fff;
}

.gallery.dark .slider-gallery-dots .slick-dots .slick-active:after {
  background: #000;
  border: 4px solid #fff;
}

@media screen and (max-width: 991px) {
  .gallery__upper__title {
    font-size: 40px;
  }

  .gallery__upper__subtitle {
    font-size: 16px;
  }

  .gallery__grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

/* ============= FONTS ============= */

@font-face {
  font-family: "Helvetica light";
  src: url("/fonts/ec6281a0-c9c4-4477-a360-156acd53093f.woff2") format("woff2"), url("/fonts/11066b40-10f7-4123-ba58-d9cbf5e89ceb.woff") format("woff");
}

@font-face {
  font-family: "Helvetica thin";
  src: url("/fonts/7d63ccf8-e0ae-4dee-ad4d-bbc798aa5803.woff2") format("woff2"), url("/fonts/b2c1327f-ab3d-4230-93d7-eee8596e1498.woff") format("woff");
}

@font-face {
  font-family: "Helvetica regular";
  src: url("/fonts/08b57253-2e0d-4c12-9c57-107f6c67bc49.woff2") format("woff2"), url("/fonts/08edde9d-c27b-4731-a27f-d6cd9b01cd06.woff") format("woff");
}

@font-face {
  font-family: "Helvetica medium";
  src: url("/fonts/240c57a0-fdce-440d-9ce3-85e0cb56f470.woff2") format("woff2"), url("/fonts/7802e576-2ffa-4f22-a409-534355fbea79.woff") format("woff");
}

@font-face {
  font-family: "Helvetica bold";
  src: url("/fonts/800da3b0-675f-465f-892d-d76cecbdd5b1.woff2") format("woff2"), url("/fonts/7b415a05-784a-4a4c-8c94-67e9288312f5.woff") format("woff");
}

.cms-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #333;
  z-index: 10000;
  padding: 10px 30px;
}

.cms-bar .row {
  width: 100%;
  display: flex;
  color: #FFF;
  font-size: 14px;
  align-items: center;
}

.cms-bar .row .col {
  flex: 1;
  text-align: right;
}

.cms-bar .row .btn {
  margin-left: 20px;
  color: #FFF;
  background: #2dce89;
  border-radius: 5px;
  padding: 5px 15px;
}

.cms-bar .row .btn i {
  margin-left: 10px;
}

@media screen and (max-width: 1024px) {
  .cms-bar .row .col.text {
    display: none;
  }

  .cms-bar .row .button {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }
}

