/*
Theme Name: Integramix Rebrand
Author: Integramix Marketing LTDA
Version: 1.2
*/
.text-base-white {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.font-20 {
  font-size: 20p;
}

.text-title-white {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
}

body {
  font-family: "Geomanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #f8f9fb;
  overflow-x: hidden;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

h1,
h2 {
  font-size: 24px;
  font-weight: 500;
  color: #202020;
}

.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.flex-end {
  justify-content: flex-end !important;
}

.flex-start {
  justify-content: flex-start !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-start {
  align-items: flex-start !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-4 {
  gap: 4px !important;
}

.gap-8 {
  gap: 8px !important;
}

.gap-16 {
  gap: 16px !important;
}

.gap-24 {
  gap: 24px !important;
}

.gap-36 {
  gap: 36px !important;
}

.p-0 {
  padding: 0 !important;
}

.shadow-none {
  box-shadow: none !important;
}

.border-none {
  border: none !important;
}

.-mt-24 {
  margin-top: -24px;
}

.-mt-8 {
  margin-top: -8px;
}

.mt-8 {
  margin-top: 8px;
}

.-mb-16 {
  margin-bottom: -16px;
}

.px-36 {
  padding-left: 36px !important;
  padding-right: 36px !important;
}

.px-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.h-36 {
  height: 36px !important;
}

.h-40 {
  height: 40px !important;
}

.w-full {
  width: 100% !important;
}

.w-fit {
  width: fit-content !important;
}

.iac {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile {
  display: none;
}

.mobile-important {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}

.input {
  position: relative;
}

.input__label {
  position: absolute;
  left: 0;
  top: 0;
  padding: calc(0.37rem * 0.9) calc(0.37rem * 0.5);
  margin: calc(0.82rem * 1) calc(0.75rem * 1);
  white-space: nowrap;
  transform: translate(0, 0);
  transform-origin: 0 0;
  background: inherit;
  transition: transform 120ms ease-in;
  color: #878787;
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  cursor: text;
}

.input__field {
  box-sizing: border-box !important;
  display: block !important;
  width: 100% !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  padding: calc(0.575rem * 1.8) 0.575rem !important;
  color: currentColor !important;
  background: transparent !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  font-family: "Geomanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
}

.input__field.error {
  border: 1px solid #ef0707 !important;
}

.input__field:focus + .input__label,
.input__field:not(:placeholder-shown) + .input__label {
  transform: translate(0.25rem, -80%) scale(0.8);
  color: #878787;
}

.input__field:focus + .input__label {
  color: #ff3d00 !important;
}

.input__field:focus {
  outline: none;
  border: 1px solid #ff3d00 !important;
  font-family: "Geomanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
}

@keyframes openDropdown {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 300px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInBlur {
  0% {
    backdrop-filter: blur(0px);
  }
  100% {
    backdrop-filter: blur(4px);
  }
}

@keyframes fadeOutBlur {
  0% {
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
  }
  100% {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
  }
}

@keyframes showSidebar {
  0% {
    transform: translateX(-190px);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes hideSidebar {
  0% {
    transform: translateX(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-190px);
    opacity: 0;
  }
}

@keyframes left-to-right {
  0% {
    transform: translateX(-100%);
    opacity: 0.6;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes right-to-left {
  0% {
    transform: translateX(100%);
    opacity: 0.6;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100% + 16px));
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 16px));
  }
}

@keyframes halfFadeIn {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Geomanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: #fff !important;
}

.gc-1 {
  grid-column: 1 !important;
}

.align-content-center {
  align-content: center;
}

.content-section {
  padding: 90px 60px;
}

.content-section .col-2 {
  gap: 90px;
}

.content-section .col-2 .texts {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.content-section .col-2 .texts div {
  font-size: 24px;
  font-weight: 400;
  color: #000;
}

.content-section .col-2 .texts ul {
  padding-left: 30px;
}

.spin_loading {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.spin_loading::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  z-index: 1;
}

.spin_loading::after {
  animation: rotate 0.4s linear infinite !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24' fill='rgba(255,255,255,1)'%3E%3Cpath d='M12 3C16.9706 3 21 7.02944 21 12H19C19 8.13401 15.866 5 12 5V3Z'%3E%3C/path%3E%3C/svg%3E") !important;
  background-size: cover !important;
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  z-index: 2;
}

.spin_loading.transparent::before {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(1px);
}

.post-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1400px;
  padding: 0 70px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  margin-top: -24px;
}

@media (max-width: 768px) {
  .post-images {
    padding: 0 16px;
  }
}

.post-images img {
  width: 100%;
  border-radius: 16px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
  gap: 40px;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

a {
  text-decoration: none;
}

.max-w-none {
  max-width: none !important;
}

.max-w-550 {
  max-width: 550px;
}

.fade-in-1 {
  animation: fadeIn 1.6s forwards;
}

.fade-in-2 {
  animation: fadeIn 2s forwards;
}

.fade-in-3 {
  animation: fadeIn 2.5s forwards;
}

.fade-in-4 {
  animation: fadeIn 3s forwards;
}

.fancy-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 0 16px;
}

.fancy-title h2 {
  font-size: 42px;
  font-weight: 600;
  color: #ff3d00;
  text-align: center;
  line-height: 42px;
  text-transform: uppercase;
}

.fancy-title h2 span {
  color: #261525;
}

header {
  background: #261525;
  margin: 16px;
  margin-bottom: 0;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom: 1px solid #342433;
}

header.round {
  border-radius: 16px;
  border-bottom: none;
}

header .wrapper {
  max-width: 1400px;
  padding: 0 70px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 22px;
  padding-bottom: 22px;
}

@media (max-width: 768px) {
  header .wrapper {
    padding: 0 16px;
  }
}

header .wrapper a.logo {
  max-width: 196px;
}

header .wrapper a.logo img {
  width: 100%;
}

header .wrapper ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
}

header .wrapper ul li {
  position: relative;
}

header .wrapper ul li a,
header .wrapper ul li p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 8px 20px;
  height: 40px;
  transition: all 0.25s ease;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  justify-content: flex-start;
  cursor: pointer;
}

header .wrapper ul li a svg,
header .wrapper ul li p svg {
  transition: all 0.25s ease;
}

header .wrapper ul li a:hover,
header .wrapper ul li p:hover {
  background: #342433;
}

header .wrapper ul li a.show-dropdown,
header .wrapper ul li p.show-dropdown {
  background: #342433;
}

header .wrapper ul li a.show-dropdown svg,
header .wrapper ul li p.show-dropdown svg {
  transform: rotate(180deg);
}

header .wrapper ul li .dropdown-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #4d2d4a;
  top: calc(100% + 20px);
  width: 280px;
  display: none;
  z-index: 1;
  transform: translateX(-17%);
}

header .wrapper ul li .dropdown-content::before {
  content: "";
  height: 20px;
  width: 20px;
  background: linear-gradient(135deg, #41243f63 0%, transparent 51%);
  backdrop-filter: blur(4px);
  border: 1px solid #4d2d4a;
  border-bottom: none;
  border-right: none;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 42%;
  border-radius: 2px;
  transform: rotate(45deg) translateY(-64%);
}

header .wrapper ul li .dropdown-content .backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #41243f33;
  backdrop-filter: blur(3px);
  border-radius: 8px;
}

header .wrapper ul li .dropdown-content a {
  padding: 12px 16px;
  position: relative;
  z-index: 1;
  height: 52px;
}

header .wrapper ul li .dropdown-content a.active {
  background: #342433;
}

header .wrapper ul li.active a {
  background: #342433;
}

header .wrapper ul li.mobile a:hover {
  background: none;
}

.max-h-550 {
  max-height: 550px;
}

.prev-btn,
.next-btn {
  cursor: pointer !important;
}

.prev-btn.disabled,
.next-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
  pointer-events: none;
}

.btn-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: #ff3d00;
  border-radius: 6px;
  padding: 0 12px;
  width: auto;
  transition: all 0.25s ease;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 99px;
  padding: 16px 20px;
  align-items: center;
}

.btn-1 span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  font-family: "Geomanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.btn-1 svg,
.btn-1 svg path {
  fill: #fff;
}

.btn-1.active, .btn-1:hover {
  background-color: #e43500;
  color: #fff;
}

.btn-1.active svg,
.btn-1.active svg path, .btn-1:hover svg,
.btn-1:hover svg path {
  fill: #fff;
}

@media (max-width: 768px) {
  .btn-1 span {
    font-size: 12px;
  }
}

.btn-1 span {
  font-size: 18px;
  line-height: 16px;
  display: inline-block;
}

.text-center {
  text-align: center;
  text-align-last: center;
}

section {
  overflow-x: hidden;
}

section .wrapper {
  max-width: 1400px;
  padding: 0 70px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section .wrapper {
    padding: 0 16px;
  }
}

section.large-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

section.large-padding .col-2 {
  gap: 36px;
}

section.large-padding .col-2 .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

section.large-padding .col-2 .content.aligned {
  min-height: 540px;
  justify-content: center;
}

@media (max-width: 768px) {
  section.large-padding .col-2 .content.aligned {
    min-height: auto;
  }
}

section.large-padding .col-2 .content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

section.large-padding .col-2 .content ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

section.large-padding .col-2 .content ul li p {
  font-size: 18px;
  font-weight: 500;
  color: #3a3a3a;
  line-height: 32px;
}

section.highlight {
  background: #261525;
  padding-top: 92px;
}

section.highlight.white {
  background: #fff;
}

section.highlight.white .wrapper .col-2 .subtitle {
  color: #261525;
}

section.highlight.white .wrapper .col-2 .desc {
  color: #261525 !important;
}

section.highlight.white .wrapper .col-2 .text-base-white {
  color: #261525;
}

section.highlight.white .wrapper .col-2 .cards .card div span {
  color: #ff3d00;
}

section.highlight.white .wrapper .col-2 .cards .card p {
  color: #261525;
}

section.highlight.white .wrapper
.col-2
.content
.services-cards-wrapper
.services-cards
.card
p {
  color: #3a3a3a !important;
}

section.highlight .wrapper {
  position: relative;
}

section.highlight .wrapper .col-2 {
  gap: 34px;
}

section.highlight .wrapper .col-2 .img-container {
  border-radius: 16px;
  border: 1px solid #878787;
  overflow: hidden;
}

section.highlight .wrapper .col-2 .subtitle {
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: #fff;
}

section.highlight .wrapper .col-2 .subtitle b {
  color: #ff3d00;
  font-weight: 600;
}

section.highlight .wrapper .col-2 .desc {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

section.highlight .wrapper .col-2 .desc b {
  font-weight: 600;
  color: #ff3d00;
}

section.highlight .wrapper .col-2 .content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

section.highlight .wrapper .col-2 .content .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

section.highlight .wrapper .col-2 .content .cards .card div {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

section.highlight .wrapper .col-2 .content .cards .card div img {
  margin-top: 6px;
}

section.highlight .wrapper .col-2 .content .cards .card div span {
  line-height: 52px;
}

section.highlight .wrapper .col-2 .content .cards .card p {
  margin-left: 18px;
  margin-top: 16px;
  font-size: 18px;
}

section.highlight .wrapper .col-2 .services-cards-wrapper .services-cards .card p {
  color: #fff;
}

section.highlight .wrapper .left-pattern {
  position: absolute;
  top: -50px;
  left: 6px;
  transform: scale(0.8);
}

section.highlight .wrapper .right-pattern {
  position: absolute;
  bottom: -50px;
  right: 6px;
  transform: scale(0.8);
}

.height-550 {
  height: 550px !important;
  justify-content: center;
}

.services-cards-wrapper {
  width: max-content;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 612px;
  scroll-behavior: smooth;
}

.services-cards-wrapper .services-cards {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
}

.services-cards-wrapper .services-cards .card {
  width: 280px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-snap-align: start;
}

.services-cards-wrapper .services-cards .card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 64px;
  width: 64px;
  border-radius: 99px;
  background: #ff3d00;
  margin-bottom: 16px;
}

.services-cards-wrapper .services-cards .card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ff3d00;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.services-cards-wrapper .services-cards .card p {
  font-size: 18px;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 22px;
}

.img-container {
  width: 100%;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.hero {
  background: #261525;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  margin: 0 16px;
}

.hero.large h1 {
  min-width: 690px;
}

.hero.h-fit .wrapper {
  height: auto;
}

.hero.h-fit h1 span {
  white-space: normal;
  max-width: 590px;
  text-align: center;
}

.hero.h-fit .col-2 .thumb-card .post-thumbnail {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero.h-fit .col-2 .thumb-card .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.hero.h-fit .col-2 .thumb-card .post-thumbnail .shadow {
  background: linear-gradient(0deg, black, transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero .wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 50px;
  height: calc(100vh - 132px);
}

@media (min-width: 1600px) {
  .hero .wrapper {
    gap: 60px;
  }
  .hero .wrapper h1 {
    max-width: 770px;
  }
  .hero .wrapper .btn-1 {
    padding: 24px 30px;
  }
  .hero .wrapper .btn-1 span {
    font-size: 20px;
  }
}

.hero.cases .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.hero.cases .wrapper h1 {
  min-width: 50% !important;
  margin-top: -24px !important;
}

.hero.cases .wrapper p.orange {
  font-size: 24px;
  font-weight: 500;
  color: #ff3d00;
  line-height: 28px;
}

.hero.cases .wrapper p.orange span {
  display: block;
}

.hero.cases .wrapper .text-base-white {
  text-align: left !important;
  text-align-last: left !important;
  max-width: none !important;
  font-weight: 400 !important;
}

.hero.cases .wrapper > div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  display: flex;
  flex-wrap: wrap;
  max-width: 57vw;
  line-height: 52px;
  font-size: 52px;
  font-weight: 600;
  color: #fff;
}

.hero h1 b {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.hero h1 b span {
  white-space: nowrap;
}

.hero h1 span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero .text-base-white {
  line-height: 24px;
  max-width: 390px;
  letter-spacing: -0.05em;
  text-align: justify;
  text-align-last: justify;
}

.cool-span {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.cool-span b {
  color: #ff3d00;
  font-weight: 900;
  font-style: italic;
}

.orange-bar {
  display: block !important;
  background: transparent;
  width: -webkit-fill-available;
  height: 10px;
  border-radius: 99px;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.orange-bar::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: #ff3d00;
  width: 100%;
  height: 100%;
  border-radius: 99px;
}

.orange-bar.ltr::after {
  animation: left-to-right 0.6s forwards;
}

.orange-bar.rtl::after {
  animation: right-to-left 0.6s forwards;
}

.double-colors-title {
  font-size: 24px;
  font-weight: 600;
  color: #ff3d00;
}

.double-colors-title span {
  color: #261525;
}

.block {
  display: block;
}

.col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.bg-gray {
  background: #f1f1f1;
}

.subtitle {
  font-size: 48px;
  font-weight: 700;
  color: #261525;
  line-height: 54px;
}

.text-title {
  font-size: 38px;
}

.text-white {
  color: #fff;
}

.pt-0 {
  padding-top: 0 !important;
}

.relative {
  position: relative;
}

.pb-92 {
  padding-bottom: 92px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.disabled-controls {
  position: absolute;
  z-index: 100;
  background: transparent;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slider {
  display: flex;
  gap: 16px;
  max-width: 100%;
  width: auto;
  position: absolute;
  right: calc(50% + 76px);
  height: 100%;
  width: max-content;
  padding: 8px 0;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.slider::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.slider .slider-wrapper {
  display: flex;
  gap: 16px;
  overflow: hidden;
}

.slider.animate .item {
  animation: slideRight 0.3s;
}

.slider.animate-end .item {
  animation: halfFadeIn 0.1s forwards;
}

.slider.active .slider-wrapper {
  flex-direction: row-reverse;
}

.slider .item {
  height: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.slider .item .item-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1;
}

.slider .item .item-content p,
.slider .item .item-content span {
  color: #fff;
}

.slider .item .item-content p {
  font-size: 18px;
  line-height: 16px;
  font-weight: 600;
}

.slider .item .item-content > span {
  font-size: 12px;
  font-weight: 300;
}

.slider .item .item-content .btn-1 {
  padding: 16px 70px;
}

.slider .item img,
.slider .item video,
.slider .item iframe {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.slider .item iframe {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  margin-top: -2px;
  margin-left: -2px;
}

.slider .item.border {
  border: 9px solid #261525;
}

.slider .button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%) rotate(180deg);
  cursor: pointer;
}

.right-side {
  gap: 0;
}

.right-side > *:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}

.right-side > *:nth-child(2) {
  grid-column: 1;
  grid-row: 1;
}

.right-side .slider {
  left: calc(50% + 76px);
}

.right-side .slider.animate .item {
  animation: slideLeft 0.3s;
}

.right-side .slider .button {
  left: 0;
  right: auto;
  transform: translate(-50%, -50%);
}

.form-section .wrapper .col-2 .img-container {
  overflow: hidden;
  border-radius: 18px;
  width: 100%;
}

.form-section .wrapper .col-2 .img-container img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.form-section .wrapper .col-2 form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.form-section .wrapper .col-2 form h3 {
  font-size: 32px;
}

.form-section .wrapper .col-2 form .inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section .wrapper .col-2 form .inputs .input {
  background-color: #fff;
}

.form-section .wrapper .col-2 form .inputs .divided {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-section .wrapper .col-2 form button {
  border-radius: 16px;
}

.form-section .wrapper .col-2 .thanks {
  display: none;
}

.form-section.thanks-active .wrapper .col-2 form {
  display: none;
}

.form-section.thanks-active .wrapper .col-2 .thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 24px;
  font-weight: 500;
  color: #202020;
  text-align: center;
  padding: 16px;
}

.blog-posts {
  padding-bottom: 90px;
}

.blog-posts .wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.blog-posts .wrapper h2 {
  font-size: 42px;
  text-align: center;
}

.blog-posts .wrapper .cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 16px 24px;
}

.blog-posts .wrapper .cards-container .card {
  grid-column: 2;
  display: grid;
  gap: 16px;
  grid-template-columns: 120px 1fr;
}

.blog-posts .wrapper .cards-container .card .img-container {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
}

.blog-posts .wrapper .cards-container .card .img-container img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.blog-posts .wrapper .cards-container .card .card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  width: 100%;
}

.blog-posts .wrapper .cards-container .card .card-content .tags {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  justify-content: flex-start;
  order: -1;
}

.blog-posts .wrapper .cards-container .card .card-content .tags h4 {
  border-radius: 999px;
  background: #ff3d00;
  padding: 0 8px;
  display: flex;
  align-items: center;
  height: 21px;
}

.blog-posts .wrapper .cards-container .card .card-content .tags h4 span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.blog-posts .wrapper .cards-container .card .card-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 22px;
}

.blog-posts .wrapper .cards-container .card .card-content span {
  font-size: 16px;
  font-weight: 400;
  color: #878787;
}

.blog-posts .wrapper .cards-container .card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 4;
  grid-template-columns: 1fr;
}

.blog-posts .wrapper .cards-container .card:nth-child(1) .img-container {
  width: 100%;
  aspect-ratio: 459 / 383;
  height: auto;
}

.blog-posts .wrapper .cards-container .card:nth-child(1) .img-container img {
  object-fit: cover;
}

.blog-posts .wrapper .cards-container .card:nth-child(1) .card-content .tags h4 {
  height: 24px;
}

.blog-posts .wrapper .cards-container .card:nth-child(1) .card-content .tags h4 span {
  font-size: 18px;
}

.blog-posts .wrapper .cards-container .card:nth-child(1) .card-content h3 {
  font-size: 24px;
  line-height: 30px;
}

.blog-posts .wrapper .cards-container .card:nth-child(1) .card-content span {
  font-size: 18px;
}

.pt-60 {
  padding-top: 60px;
}

.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-bottom: 60px;
}

footer {
  padding: 34px 45px;
  padding-bottom: 0;
  background: #261525;
}

footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

footer .wrapper .row:nth-child(1) {
  display: grid;
  grid-template-columns: 300px repeat(2, 1fr) 250px;
  gap: 120px;
}

footer .wrapper .row:nth-child(1) .column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

footer .wrapper .row:nth-child(1) .column .text-base-white {
  text-transform: uppercase;
  line-height: 26px;
  font-size: 22px;
  letter-spacing: -0.5px;
  font-weight: 600;
  margin-top: -11px;
}

footer .wrapper .row:nth-child(1) .column .title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

footer .wrapper .row:nth-child(1) .column .content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

footer .wrapper .row:nth-child(1) .column .content a,
footer .wrapper .row:nth-child(1) .column .content p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  opacity: 0.8;
  transition: all 0.25s ease;
  text-decoration: none;
}

footer .wrapper .row:nth-child(1) .column .content a:hover,
footer .wrapper .row:nth-child(1) .column .content p:hover {
  opacity: 1;
}

footer .wrapper .row:nth-child(1) .column .btn-1 {
  margin-bottom: 8px;
}

footer .wrapper .row:nth-child(1) .social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}

footer .wrapper .row:nth-child(1) .social p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

footer .wrapper .row:nth-child(1) .social div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-content: flex-start;
}

footer .wrapper .row:nth-child(1) .social.mobile {
  display: none;
}

footer .wrapper .row:nth-child(2) {
  margin-top: 34px;
  padding: 15px;
  border-top: 1px solid #41243f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: calc(100% + 90px);
  margin-left: -45px;
}

footer .wrapper .row:nth-child(2) span {
  font-size: 16px;
  font-weight: 400;
  color: #81818f;
}

footer .wrapper .row:nth-child(2) span a {
  color: #ff3d00;
}

.new-slider {
  width: 100%;
  height: 100%;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  position: relative;
  grid-column: 1;
}

.ns-button {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-110%, -50%) rotate(180deg);
  cursor: pointer;
}

.new-slider::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.new-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  width: max-content;
}

.new-slider-wrapper .item {
  scroll-snap-align: end;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  position: relative;
  min-width: 400px;
  background: #eee;
  border: 1px solid #261525;
}

.new-slider-wrapper .item iframe {
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  margin-top: -3px;
  margin-left: -3px;
}

.new-slider-wrapper .item.has-image::before {
  background: transparent;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: grab;
}

.new-slider-wrapper .item img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .new-slider-wrapper .item {
    min-width: 70vw;
    max-width: 70vw;
    width: 100%;
    border-radius: 20px;
  }
  .ns-button {
    display: none;
  }
}

.image-container {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.image-container.no-aspect {
  aspect-ratio: unset;
}

.image-container img,
.image-container video,
.image-container iframe {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.image-container iframe {
  position: relative;
}

.image-container iframe::before {
  position: absolute;
  z-index: 1;
  background-color: rgba(16, 24, 40, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.image-container.border {
  border: 9px solid #261525;
}

.wpp_cta_container {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  z-index: 99;
}

.wpp_cta_container .backdrop {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

.wpp_cta_container.active .backdrop {
  display: block;
  animation: fadeIn 0.25s forwards;
}

.wpp_cta_container.active .form {
  display: flex;
  animation: fadeIn 0.3s forwards;
}

.wpp_cta_container .form {
  display: none;
  flex-direction: column;
  background: #fff;
  max-width: 300px;
  border-radius: 6px;
  border-bottom-right-radius: 0px;
  box-shadow: -1px 2px 6px rgba(16, 24, 40, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.wpp_cta_container #close_wpp_form {
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wpp_cta_container #close_wpp_form:hover {
  opacity: 1;
}

.wpp_cta_container .form_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1faf37;
  border-radius: 6px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.wpp_cta_container .form_head p {
  max-width: calc(100% - 24px);
}

.wpp_cta_container .form_content {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wpp_cta_container .form_content > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wpp_cta_container .form_content > div input {
  font-family: "Geomanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding: 12px 8px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.wpp_cta_container .form_content > div input:focus {
  border: 1px solid rgba(0, 0, 0, 0.6);
  outline: none;
}

.wpp_cta_container .form_content > div input::placeholder {
  color: #adadad;
  font-size: 12px;
  font-weight: 300;
}

.wpp_cta_container .form_content p {
  font-size: 13px;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.wpp_cta_container .form_content label {
  font-size: 12px;
  color: #5b5b5b;
  font-weight: 300;
}

.wpp_cta_container .form_content .divided {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wpp_cta_container .form_content #send_message {
  padding: 12px 24px;
  color: #fff;
  border-radius: 4px;
  background: #1faf38;
  width: auto;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 0.25s ease;
}

.wpp_cta_container .form_content #send_message:hover {
  background: #0e9224;
}

.wpp_cta_container .wpp_cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  box-shadow: -1px 2px 6px rgba(16, 24, 40, 0.4);
  background: #1faf37c0;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  height: 60px;
  width: 60px;
  background: #00c800;
  border-radius: 999px;
  animation: breath 3s infinite;
  transition: all 0.3s ease-in-out;
}

.wpp_cta_container .wpp_cta_button:hover {
  background: #009600;
}

.wpp_cta_container .wpp_cta_button > svg {
  transform: scale(0.9);
}

@keyframes breath {
  0% {
    -webkit-box-shadow: 0 0 0 0 #00c800;
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0);
  }
}

.col-2-aside {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.col-2-aside .content {
  padding: 16px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.075);
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 18px;
  font-weight: 400;
  color: #231f20;
}

.col-2-aside .content .post-thumbnail {
  max-height: 450px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.col-2-aside .content .post-thumbnail img {
  object-fit: cover;
  object-position: center;
}

.col-2-aside .content .excerpt {
  font-size: 16px;
  font-weight: 400;
  color: #313030;
  line-height: 20px;
}

.col-2-aside .content .share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.col-2-aside .content .share a,
.col-2-aside .content .share svg,
.col-2-aside .content .share svg path {
  transition: all 0.25s ease;
}

.col-2-aside .content .share a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.col-2-aside .content .share a svg {
  height: 34px;
  width: 34px;
}

.col-2-aside .content .share .facebook:hover svg path {
  fill: #1877f2;
}

.col-2-aside .content .share .whatsapp {
  height: 34px;
  width: 34px;
  border-radius: 99px;
  background: #444;
}

.col-2-aside .content .share .whatsapp:hover {
  background: #60d669;
}

.col-2-aside .content .share .telegram {
  height: 34px;
  width: 34px;
  border-radius: 99px;
  background: #444;
}

.col-2-aside .content .share .telegram svg {
  height: 24px;
  width: 24px;
}

.col-2-aside .content .share .telegram:hover {
  background: #2aabee;
}

.col-2-aside .content .post-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0px;
  margin-top: -18px;
}

.col-2-aside .content .post-info > div {
  width: fit-content;
}

.col-2-aside .content .post-info p {
  font-size: 14px;
  font-weight: 300;
  color: #636363;
}

.col-2-aside .content .post-info p b {
  font-weight: 600;
  color: #ff3d00;
}

.col-2-aside .content .post-info span {
  font-size: 12px;
  font-weight: 500;
  color: #636363;
}

@media (max-width: 768px) {
  .col-2-aside .content .post-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .col-2-aside .content .post-info .share {
    margin-top: 8px;
    width: 100%;
  }
  .col-2-aside .content .post-info .share span {
    margin-right: auto;
  }
}

.col-2-aside .content h1 {
  font-size: 38px;
  font-weight: 700;
  color: #261525;
  line-height: 44px;
}

.col-2-aside .content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 38px;
}

.col-2-aside .content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #3a3a3a;
  line-height: 32px;
}

.col-2-aside .content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #3a3a3a;
  line-height: 24px;
}

.col-2-aside .content p {
  font-size: 18px;
  font-weight: 400;
  color: #231f20;
  line-height: 24px;
}

.col-2-aside .content img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.col-2-aside aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.075);
  padding: 4px;
  height: fit-content;
  display: block;
  position: sticky;
  top: 0;
}

.col-2-aside aside .title {
  background: #261525;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  padding: 16px;
  border-radius: 4px;
}

.col-2-aside aside .aside-content {
  margin-bottom: 2px;
  display: block;
  list-style: none;
}

.col-2-aside aside .aside-content li {
  display: block;
  height: 38px;
  width: 100%;
  margin-top: 2px;
}

.col-2-aside aside .aside-content li a {
  height: 100%;
  width: 100%;
  padding: 8px 16px;
  transition: all 0.25s ease;
  font-size: 16px;
  font-weight: 500;
  color: #261525;
  line-height: 18px;
  background: #f0f0f0;
  border-radius: 4px;
  width: 100%;
  margin: auto 0;
  display: block;
}

.col-2-aside aside .aside-content li a.active, .col-2-aside aside .aside-content li a:hover {
  background: #e0e0e0;
  color: #342433;
}

.categories {
  padding-top: 34px;
  padding-bottom: 34px;
}

.categories .wrapper .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  gap: 24px;
}

.categories .wrapper .cards .card {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.categories .wrapper .cards .card .img-container {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.categories .wrapper .cards .card .img-container img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.categories .wrapper .cards .card .card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  width: 100%;
}

.categories .wrapper .cards .card .card-content .tags {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  justify-content: flex-start;
  order: -1;
}

.categories .wrapper .cards .card .card-content .tags h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 999px;
  background: #ff3d00;
  padding: 0 8px;
  display: flex;
  align-items: center;
  height: 21px;
}

.categories .wrapper .cards .card .card-content .tags h4 span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.categories .wrapper .cards .card .card-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 22px;
}

.categories .wrapper .cards .card .card-content span {
  font-size: 16px;
  font-weight: 400;
  color: #878787;
}

@media (max-width: 768px) {
  .categories .wrapper .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .m-mt-40 {
    margin-top: -40px;
  }
  .m-pb-0 {
    padding-bottom: 0 !important;
  }
  .content-section {
    padding: 16px 0;
  }
  .content-section .col-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .content-section .col-2 .texts {
    gap: 16px;
  }
  .content-section .col-2 .texts div {
    font-size: 18px;
    line-height: 22px;
  }
  .content-section .col-2 .texts p {
    font-size: 20px;
  }
  .desktop {
    display: none !important;
  }
  .col-2-aside {
    padding-top: 24px;
    padding-bottom: 24px;
    grid-template-columns: 1fr;
  }
  header {
    position: relative;
    margin: 0;
    border-radius: 0;
    padding: 16px 0;
  }
  header.round {
    border-radius: 12px;
    border-bottom: none;
    margin: 16px;
    margin-bottom: 0;
  }
  header.round .wrapper a.logo {
    max-height: 34px;
  }
  header #open-mobile-menu {
    height: 46px;
    width: 46px;
    border-radius: 6px;
    background: #ff3d00;
    position: relative;
    z-index: 10;
  }
  header #open-mobile-menu svg,
  header #open-mobile-menu svg path,
  header #open-mobile-menu svg rect {
    transition: all 0.25s ease;
  }
  header #open-mobile-menu.active svg rect {
    fill: #fff;
  }
  header #open-mobile-menu.active svg path {
    fill: #261525;
  }
  header .wrapper a.logo {
    max-width: 147px;
    height: 38px;
  }
  header .wrapper a.logo img {
    height: 100%;
  }
  header .wrapper ul {
    position: absolute !important;
    z-index: 0;
    top: calc(100% + 3px);
    border-radius: 8px;
    right: 8px;
    width: fit-content;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 10;
    padding: 8px;
    gap: 0;
  }
  header .wrapper ul .dropdown-content .backdrop {
    display: none;
  }
  header .wrapper ul .menu-backdrop {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: #fff;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
    left: 0;
    top: 0;
    border-radius: 8px;
  }
  header .wrapper ul .close-mobile-menu {
    z-index: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
  }
  header .wrapper ul::before {
    content: "";
    height: 20px;
    width: 20px;
    background: #fff;
    border-bottom: none;
    border-right: none;
    z-index: 2;
    position: absolute;
    top: 0;
    right: 31px;
    border-radius: 2px;
    transform: rotate(45deg) translateY(-64%);
  }
  header .wrapper ul li {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  header .wrapper ul li .btn-1 {
    justify-content: center;
    border-radius: 99px;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  header .wrapper ul li .btn-1 span {
    font-size: 14px;
  }
  header .wrapper ul li a {
    padding: 8px 12px;
    border: 1px solid transparent;
  }
  header .wrapper ul li.active a,
  header .wrapper ul li.active p {
    background: #261525;
    color: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  header .wrapper ul li a,
  header .wrapper ul li p {
    color: #261525;
    width: 100%;
    white-space: nowrap;
  }
  header .wrapper ul li a:hover,
  header .wrapper ul li p:hover {
    background: #261525;
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  header .wrapper ul #dropdown > p {
    display: none;
  }
  header .wrapper ul #dropdown .dropdown-content {
    padding: 0;
    border: none;
    display: block !important;
    position: static;
    width: 100%;
    transform: translateX(0);
  }
  header .wrapper ul #dropdown .dropdown-content a {
    padding: 8px 12px;
    padding-right: 40px;
    height: 40px;
  }
  header .wrapper ul #dropdown .dropdown-content a.active {
    color: #fff;
  }
  header .wrapper ul #dropdown .dropdown-content .backdrop {
    background: inherit;
  }
  header .wrapper ul #dropdown .dropdown-content::before {
    display: none;
  }
  .hero {
    margin: 0;
    border-radius: 0;
  }
  .hero .wrapper {
    min-height: calc(100vh - 79px);
    gap: 6vh;
    height: auto;
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
  .hero .wrapper h1 {
    max-width: none;
    font-size: 6.75vw;
    line-height: 14vw;
    justify-content: center;
  }
  .hero .wrapper h1 span {
    white-space: nowrap;
  }
  .hero .wrapper .cool-span {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .hero .wrapper .btn-1 {
    margin-top: 0px;
    padding: 24px 45px;
  }
  .hero .wrapper .btn-1 span {
    font-size: 22px;
  }
  .hero .wrapper .text-base-white {
    line-height: 50px;
    font-size: 22px;
  }
  .hero .wrapper .text-base-white.adjust {
    line-height: 40px;
    font-size: 20px;
  }
  .hero.h-fit h1 span {
    max-width: calc(100vw - 32px);
    white-space: normal;
  }
  .hero.cases .wrapper {
    grid-template-columns: 1fr !important;
    align-content: center;
    padding-top: 120px;
    padding-bottom: 120px;
    height: fit-content;
  }
  .hero.cases .wrapper .text-base-white {
    text-align: left !important;
  }
  .hero.cases .wrapper .cool-span {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .hero.cases .wrapper h1 {
    text-align: center;
    margin: 0 auto;
  }
  .hero.cases .wrapper p.orange {
    margin-top: 20px;
    font-size: 20px;
    line-height: 24px;
    margin: 0 auto;
    text-align: center;
  }
  .hero .text-base-white {
    font-size: 18px;
    line-height: 24px;
    word-spacing: 2px;
    letter-spacing: 0.5px;
    text-align: center;
    text-align-last: center;
  }
  .fancy-title {
    padding-left: 16px;
    padding-right: 16px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 32px;
  }
  .fancy-title .cool-span {
    color: #261525;
  }
  .fancy-title h2 {
    font-size: 26px;
    line-height: 28px;
    text-transform: none;
  }
  .fancy-title .left {
    display: none;
  }
  .col-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .btn-1 span {
    font-size: 16px;
  }
  .right-side {
    display: flex;
    flex-direction: column;
  }
  .right-side > *:nth-child(1) {
    grid-column: 1;
  }
  .right-side > *:nth-child(2) {
    grid-column: 2;
  }
  .m-px-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .mobile-w-full {
    width: 100%;
  }
  .marketplaces {
    margin-top: -40px;
  }
  .slider {
    position: static;
    overflow: auto;
    max-width: calc(100vw - 32px);
    scroll-snap-type: x mandatory;
  }
  .slider .slider-wrapper {
    width: max-content;
    overflow: unset;
  }
  .slider .item {
    height: auto;
    width: 75vw;
    scroll-snap-align: start;
  }
  .slider .button {
    display: none;
  }
  .double-colors-line {
    min-height: 4px;
    max-height: 4px;
    height: 4px;
    width: 100%;
    display: flex;
    margin-top: -8px;
  }
  .double-colors-line::before {
    content: "";
    height: 100%;
    width: 50%;
    background: #261525;
  }
  .double-colors-line::after {
    content: "";
    height: 100%;
    width: 50%;
    background: #ff3d00;
  }
  .orange-bar {
    height: 6px;
  }
  section .wrapper .col-2.gap-36 {
    gap: 16px !important;
  }
  section .wrapper .col-2 .content ul li p {
    font-size: 18px;
    line-height: 22px;
  }
  section.large-padding {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  section.highlight .wrapper {
    padding: 10px 24px;
    padding-bottom: 48px;
  }
  section.highlight .wrapper .slider {
    max-width: calc(100vw - 48px);
  }
  section.highlight .wrapper .col-2 {
    gap: 16px !important;
  }
  section.highlight .wrapper .col-2 .subtitle {
    font-size: 28px;
    line-height: 32px;
  }
  section.highlight .wrapper .col-2 .desc {
    font-size: 18px;
    line-height: 22px;
  }
  section.highlight .wrapper .col-2 .content {
    gap: 24px;
  }
  section.highlight .wrapper .col-2 .content .cards .card p {
    margin-top: 8px;
    font-size: 15px;
  }
  section.highlight .left-pattern,
  section.highlight .right-pattern {
    display: none;
  }
  section.form-section .wrapper .col-2 .img-container {
    display: none;
  }
  section.form-section .wrapper .col-2 form .inputs .divided {
    display: flex;
    flex-direction: column;
  }
  section.form-section .wrapper .col-2 form h3 {
    font-size: 24px;
    line-height: 28px;
  }
  section.blog-posts {
    padding-bottom: 48px;
  }
  section.blog-posts .wrapper h2 {
    font-size: 28px;
    line-height: 32px;
  }
  section.blog-posts .wrapper .cards-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }
  section.blog-posts .wrapper .cards-container .card:nth-child(1) {
    margin-bottom: 8px;
  }
  section.blog-posts .wrapper .cards-container .card:nth-child(1) .img-container {
    aspect-ratio: 16 / 9;
  }
  section.blog-posts .wrapper .cards-container .card:nth-child(1) .card-content h3 {
    font-size: 20px;
    line-height: 24px;
  }
  section.blog-posts .wrapper .cards-container .card:nth-child(1) .card-content span {
    font-size: 15px;
  }
  section.blog-posts .wrapper .cards-container .card {
    grid-column: 1;
  }
  section.blog-posts .wrapper .cards-container .card .tags h4 {
    height: 16px !important;
  }
  section.blog-posts .wrapper .cards-container .card .tags h4 span {
    font-size: 12px !important;
  }
  section.blog-posts .wrapper .cards-container .card .card-content h3 {
    font-size: 18x;
    line-height: 22px;
  }
  section.blog-posts .wrapper .cards-container .card .card-content span {
    font-size: 14px;
  }
  .height-550 {
    height: auto !important;
  }
  .subtitle,
  .text-title-white {
    font-size: 28px;
    line-height: 32px !important;
  }
  .text-base-white {
    font-size: 18px;
  }
  .partners {
    margin-top: -40px;
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f1f1f1;
  }
  .partners .left-pattern {
    position: absolute;
    left: 12px;
    top: -162px;
    width: 25px;
  }
  .partners .left-pattern img {
    width: 100%;
  }
  .partners .right-pattern {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 25px;
  }
  .partners .right-pattern img {
    width: 100%;
  }
  .mobile-bg-gray {
    background: #f1f1f1;
  }
  .mobile-column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .subtitle {
    font-size: 28px;
    line-height: 28px;
  }
  .services-cards-wrapper {
    max-width: calc(100vw - 48px);
  }
  footer {
    padding: 34px 24px;
  }
  footer .wrapper .row:nth-child(1) {
    gap: 24px;
    display: flex;
    flex-direction: column;
  }
  footer .wrapper .row:nth-child(1) .column {
    gap: 12px;
  }
  footer .wrapper .row:nth-child(1) .column.mobile-dropdown.active .title svg {
    transform: rotate(180deg);
  }
  footer .wrapper .row:nth-child(1) .column.mobile-dropdown .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  footer .wrapper .row:nth-child(1) .column.mobile-dropdown .title svg {
    transition: all 0.25s ease;
  }
  footer .wrapper .row:nth-child(1) .column.mobile-dropdown .content {
    display: none;
  }
  footer .wrapper .row:nth-child(1) .column.mobile-dropdown .content a {
    height: 38px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  footer .wrapper .row:nth-child(1) .column:nth-child(1) {
    gap: 34px;
  }
  footer .wrapper .row:nth-child(1) .column .text-base-white {
    font-size: 30px;
    line-height: 34px;
    text-transform: none;
  }
  footer .wrapper .row:nth-child(1) .social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  footer .wrapper .row:nth-child(1) .social.mobile {
    display: flex !important;
  }
  footer .wrapper .row:nth-child(2) {
    width: calc(100% + 48px);
    margin-left: -24px;
  }
  footer .wrapper .row:nth-child(2) span {
    text-align: center;
  }
  .m-pt-0 {
    padding-top: 0 !important;
  }
  .m-pt-16 {
    padding-top: 16px !important;
  }
  .m-pb-0 {
    padding-bottom: 0 !important;
  }
  .wpp_cta_container {
    right: 16px;
  }
  .wpp_cta_container .wpp_cta_button {
    width: 45px;
    height: 45px;
  }
  .wpp_cta_container .wpp_cta_button svg {
    transform: scale(0.6);
  }
  .post-images {
    padding: 16px;
  }
}

@media (max-width: 340px) {
  .hero .wrapper .btn-1 {
    padding: 18px 28px;
  }
  .hero .wrapper .btn-1 span {
    font-size: 18px;
  }
}
