@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/keen-slider@6.8.5/keen-slider.min.css");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html, body {
  overflow-x: hidden;
}

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

b, strong {
  font-weight: bold;
}

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

.ta-left {
  text-align: left;
}

.ta-right {
  text-align: right;
}

@media (min-width: 767px) {
  .ta-center__md {
    text-align: center;
  }
  .ta-left__md {
    text-align: left;
  }
  .ta-right__md {
    text-align: right;
  }
}
.container-lg {
  width: 100%;
  padding: 0px 80px;
}
@media (min-width: 1200px) {
  .container-lg {
    max-width: 1375px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 768px) {
  .container-lg {
    padding: 0;
  }
}

.container {
  width: 100%;
  padding: 0px 20px;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1256px;
    margin: 0 auto;
    display: block;
  }
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.flex {
  /**
  * [!] THIS IS NOT CONTROVERSIAL [!]
  * As the layout doesnt make usage of flex (grouped elements horizontally)
  * and the code is mobile-first, the flex property returns to a default
  * type of display and stacking sections and divs up and down eachothers.
  * For full flex usage (mobile and desktop) use: "flex flex--force".
  */
  display: block;
}
.flex--force {
  display: flex;
}
.flex--none {
  display: none;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--jcc {
  justify-content: center;
}
.flex--jcfe {
  justify-content: flex-end;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--jcsa {
  justify-content: space-around;
}
.flex--jcsb {
  justify-content: space-between;
}
.flex--aic {
  align-items: center;
}
.flex--aifs {
  align-items: flex-start;
}
.flex--aife {
  align-items: flex-end;
}
.flex--row {
  flex-direction: row;
}
.flex--column {
  flex-direction: column;
}
.flex--column-reverse {
  flex-direction: column-reverse;
}
.flex--gap-4 {
  gap: 4px;
}
.flex--gap-6 {
  gap: 6px;
}
.flex--gap-8 {
  gap: 8px;
}
.flex--gap-10 {
  gap: 10px;
}
.flex--gap-12 {
  gap: 12px;
}
.flex--gap-16 {
  gap: 16px;
}
.flex--gap-20 {
  gap: 20px;
}
.flex--gap-24 {
  gap: 24px;
}
.flex--gap-32 {
  gap: 32px;
}
.flex--gap-40 {
  gap: 40px;
}
.flex--gap-50 {
  gap: 50px;
}
.flex--gap-60 {
  gap: 60px;
}
.flex--gap-80 {
  gap: 80px;
}
@media (min-width: 1200px) {
  .flex {
    display: flex;
  }
  .flex--sm {
    display: block;
  }
}
@media (min-width: 767px) {
  .flex--row__md {
    flex-direction: row;
  }
  .flex--aic__md {
    align-items: center;
  }
  .flex--column__md {
    flex-direction: column;
  }
  .flex--force__md {
    display: flex;
  }
  .flex--none__md {
    display: none;
  }
  .flex--gap-4__md {
    gap: 4px;
  }
  .flex--gap-6__md {
    gap: 6px;
  }
  .flex--gap-8__md {
    gap: 8px;
  }
  .flex--gap-10__md {
    gap: 10px;
  }
  .flex--gap-12__md {
    gap: 12px;
  }
  .flex--gap-16__md {
    gap: 16px;
  }
  .flex--gap-20__md {
    gap: 20px;
  }
  .flex--gap-24__md {
    gap: 24px;
  }
  .flex--gap-32__md {
    gap: 32px;
  }
  .flex--gap-40__md {
    gap: 40px;
  }
  .flex--gap-50__md {
    gap: 50px;
  }
  .flex--gap-60__md {
    gap: 60px;
  }
  .flex--gap-80__md {
    gap: 80px;
  }
}
@media (min-width: 1200px) {
  .flex--row__lg {
    flex-direction: row;
  }
  .flex--aic__lg {
    align-items: center;
  }
  .flex--aife__lg {
    align-items: flex-end;
  }
  .flex--jcfe__lg {
    justify-content: flex-end;
  }
  .flex--jcc__lg {
    justify-content: center;
  }
  .flex--column__lg {
    flex-direction: column;
  }
  .flex--force__lg {
    display: flex;
  }
  .flex--none__lg {
    display: none;
  }
  .flex--gap-4__lg {
    gap: 4px;
  }
  .flex--gap-6__lg {
    gap: 6px;
  }
  .flex--gap-8__lg {
    gap: 8px;
  }
  .flex--gap-10__lg {
    gap: 10px;
  }
  .flex--gap-12__lg {
    gap: 12px;
  }
  .flex--gap-16__lg {
    gap: 16px;
  }
  .flex--gap-20__lg {
    gap: 20px;
  }
  .flex--gap-24__lg {
    gap: 24px;
  }
  .flex--gap-32__lg {
    gap: 32px;
  }
  .flex--gap-40__lg {
    gap: 40px;
  }
  .flex--gap-50__lg {
    gap: 50px;
  }
  .flex--gap-60__lg {
    gap: 60px;
  }
  .flex--gap-80__lg {
    gap: 80px;
  }
}

:root {
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

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

.pb-0 {
  padding-bottom: 0px;
}

.p-0 {
  padding: 0px;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

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

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

.margin-size {
  margin: 0px;
}

.py-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.px-4 {
  padding-left: 4px;
  padding-right: 4px;
}

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

.pb-4 {
  padding-bottom: 4px;
}

.p-4 {
  padding: 4px;
}

.my-4 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.mx-4 {
  margin-left: 4px;
  margin-right: 4px;
}

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

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

.margin-size {
  margin: 4px;
}

.py-6 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.px-6 {
  padding-left: 6px;
  padding-right: 6px;
}

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

.pb-6 {
  padding-bottom: 6px;
}

.p-6 {
  padding: 6px;
}

.my-6 {
  margin-top: 6px;
  margin-bottom: 6px;
}

.mx-6 {
  margin-left: 6px;
  margin-right: 6px;
}

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

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

.margin-size {
  margin: 6px;
}

.py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.px-8 {
  padding-left: 8px;
  padding-right: 8px;
}

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

.pb-8 {
  padding-bottom: 8px;
}

.p-8 {
  padding: 8px;
}

.my-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.mx-8 {
  margin-left: 8px;
  margin-right: 8px;
}

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

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

.margin-size {
  margin: 8px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

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

.pb-10 {
  padding-bottom: 10px;
}

.p-10 {
  padding: 10px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

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

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

.margin-size {
  margin: 10px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

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

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

.pb-16 {
  padding-bottom: 16px;
}

.p-16 {
  padding: 16px;
}

.my-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.mx-16 {
  margin-left: 16px;
  margin-right: 16px;
}

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

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

.margin-size {
  margin: 16px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

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

.pb-20 {
  padding-bottom: 20px;
}

.p-20 {
  padding: 20px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

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

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

.margin-size {
  margin: 20px;
}

@media (min-width: 767px) {
  .py-0__md {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .px-0__md {
    padding-left: 0px;
    padding-right: 0px;
  }
  .pt-0__md {
    padding-top: 0px;
  }
  .pb-0__md {
    padding-bottom: 0px;
  }
  .p-0__md {
    padding: 0px;
  }
  .my-0__md {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mx-0__md {
    margin-left: 0px;
    margin-right: 0px;
  }
  .mt-0__md {
    margin-top: 0px;
  }
  .mb-0__md {
    margin-bottom: 0px;
  }
  .margin-size__md {
    margin: 0px;
  }
  .py-4__md {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .px-4__md {
    padding-left: 4px;
    padding-right: 4px;
  }
  .pt-4__md {
    padding-top: 4px;
  }
  .pb-4__md {
    padding-bottom: 4px;
  }
  .p-4__md {
    padding: 4px;
  }
  .my-4__md {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .mx-4__md {
    margin-left: 4px;
    margin-right: 4px;
  }
  .mt-4__md {
    margin-top: 4px;
  }
  .mb-4__md {
    margin-bottom: 4px;
  }
  .margin-size__md {
    margin: 4px;
  }
  .py-6__md {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .px-6__md {
    padding-left: 6px;
    padding-right: 6px;
  }
  .pt-6__md {
    padding-top: 6px;
  }
  .pb-6__md {
    padding-bottom: 6px;
  }
  .p-6__md {
    padding: 6px;
  }
  .my-6__md {
    margin-top: 6px;
    margin-bottom: 6px;
  }
  .mx-6__md {
    margin-left: 6px;
    margin-right: 6px;
  }
  .mt-6__md {
    margin-top: 6px;
  }
  .mb-6__md {
    margin-bottom: 6px;
  }
  .margin-size__md {
    margin: 6px;
  }
  .py-8__md {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px-8__md {
    padding-left: 8px;
    padding-right: 8px;
  }
  .pt-8__md {
    padding-top: 8px;
  }
  .pb-8__md {
    padding-bottom: 8px;
  }
  .p-8__md {
    padding: 8px;
  }
  .my-8__md {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx-8__md {
    margin-left: 8px;
    margin-right: 8px;
  }
  .mt-8__md {
    margin-top: 8px;
  }
  .mb-8__md {
    margin-bottom: 8px;
  }
  .margin-size__md {
    margin: 8px;
  }
  .py-10__md {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .px-10__md {
    padding-left: 10px;
    padding-right: 10px;
  }
  .pt-10__md {
    padding-top: 10px;
  }
  .pb-10__md {
    padding-bottom: 10px;
  }
  .p-10__md {
    padding: 10px;
  }
  .my-10__md {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .mx-10__md {
    margin-left: 10px;
    margin-right: 10px;
  }
  .mt-10__md {
    margin-top: 10px;
  }
  .mb-10__md {
    margin-bottom: 10px;
  }
  .margin-size__md {
    margin: 10px;
  }
  .py-16__md {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px-16__md {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pt-16__md {
    padding-top: 16px;
  }
  .pb-16__md {
    padding-bottom: 16px;
  }
  .p-16__md {
    padding: 16px;
  }
  .my-16__md {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx-16__md {
    margin-left: 16px;
    margin-right: 16px;
  }
  .mt-16__md {
    margin-top: 16px;
  }
  .mb-16__md {
    margin-bottom: 16px;
  }
  .margin-size__md {
    margin: 16px;
  }
  .py-20__md {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .px-20__md {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pt-20__md {
    padding-top: 20px;
  }
  .pb-20__md {
    padding-bottom: 20px;
  }
  .p-20__md {
    padding: 20px;
  }
  .my-20__md {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .mx-20__md {
    margin-left: 20px;
    margin-right: 20px;
  }
  .mt-20__md {
    margin-top: 20px;
  }
  .mb-20__md {
    margin-bottom: 20px;
  }
  .margin-size__md {
    margin: 20px;
  }
}
@media (min-width: 1200px) {
  .py-0__lg {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .px-0__lg {
    padding-left: 0px;
    padding-right: 0px;
  }
  .pt-0__lg {
    padding-top: 0px;
  }
  .pb-0__lg {
    padding-bottom: 0px;
  }
  .padding-0__lg {
    padding: 0px;
  }
  .my-0__lg {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mx-0__lg {
    margin-left: 0px;
    margin-right: 0px;
  }
  .mt-0__lg {
    margin-top: 0px;
  }
  .mb-0__lg {
    margin-bottom: 0px;
  }
  .margin-size__lg {
    margin: 0px;
  }
  .py-4__lg {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .px-4__lg {
    padding-left: 4px;
    padding-right: 4px;
  }
  .pt-4__lg {
    padding-top: 4px;
  }
  .pb-4__lg {
    padding-bottom: 4px;
  }
  .padding-4__lg {
    padding: 4px;
  }
  .my-4__lg {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .mx-4__lg {
    margin-left: 4px;
    margin-right: 4px;
  }
  .mt-4__lg {
    margin-top: 4px;
  }
  .mb-4__lg {
    margin-bottom: 4px;
  }
  .margin-size__lg {
    margin: 4px;
  }
  .py-6__lg {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .px-6__lg {
    padding-left: 6px;
    padding-right: 6px;
  }
  .pt-6__lg {
    padding-top: 6px;
  }
  .pb-6__lg {
    padding-bottom: 6px;
  }
  .padding-6__lg {
    padding: 6px;
  }
  .my-6__lg {
    margin-top: 6px;
    margin-bottom: 6px;
  }
  .mx-6__lg {
    margin-left: 6px;
    margin-right: 6px;
  }
  .mt-6__lg {
    margin-top: 6px;
  }
  .mb-6__lg {
    margin-bottom: 6px;
  }
  .margin-size__lg {
    margin: 6px;
  }
  .py-8__lg {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px-8__lg {
    padding-left: 8px;
    padding-right: 8px;
  }
  .pt-8__lg {
    padding-top: 8px;
  }
  .pb-8__lg {
    padding-bottom: 8px;
  }
  .padding-8__lg {
    padding: 8px;
  }
  .my-8__lg {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx-8__lg {
    margin-left: 8px;
    margin-right: 8px;
  }
  .mt-8__lg {
    margin-top: 8px;
  }
  .mb-8__lg {
    margin-bottom: 8px;
  }
  .margin-size__lg {
    margin: 8px;
  }
  .py-10__lg {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .px-10__lg {
    padding-left: 10px;
    padding-right: 10px;
  }
  .pt-10__lg {
    padding-top: 10px;
  }
  .pb-10__lg {
    padding-bottom: 10px;
  }
  .padding-10__lg {
    padding: 10px;
  }
  .my-10__lg {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .mx-10__lg {
    margin-left: 10px;
    margin-right: 10px;
  }
  .mt-10__lg {
    margin-top: 10px;
  }
  .mb-10__lg {
    margin-bottom: 10px;
  }
  .margin-size__lg {
    margin: 10px;
  }
  .py-16__lg {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px-16__lg {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pt-16__lg {
    padding-top: 16px;
  }
  .pb-16__lg {
    padding-bottom: 16px;
  }
  .padding-16__lg {
    padding: 16px;
  }
  .my-16__lg {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx-16__lg {
    margin-left: 16px;
    margin-right: 16px;
  }
  .mt-16__lg {
    margin-top: 16px;
  }
  .mb-16__lg {
    margin-bottom: 16px;
  }
  .margin-size__lg {
    margin: 16px;
  }
  .py-20__lg {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .px-20__lg {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pt-20__lg {
    padding-top: 20px;
  }
  .pb-20__lg {
    padding-bottom: 20px;
  }
  .padding-20__lg {
    padding: 20px;
  }
  .my-20__lg {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .mx-20__lg {
    margin-left: 20px;
    margin-right: 20px;
  }
  .mt-20__lg {
    margin-top: 20px;
  }
  .mb-20__lg {
    margin-bottom: 20px;
  }
  .margin-size__lg {
    margin: 20px;
  }
}
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../fonts/aktiv/AktivGrotesk-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../fonts/aktiv/AktivGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../fonts/aktiv/AktivGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../fonts/aktiv/AktivGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Libre Franklin";
  src: url("../fonts/libre/LibreFranklin-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Libre Franklin";
  src: url("../fonts/libre/LibreFranklin-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Libre Franklin";
  src: url("../fonts/libre/LibreFranklin-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PP Right Gothic";
  src: url("../fonts/pp/PPRightGothic-WideMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
.ff-montserrat {
  font-family: "Montserrat", sans-serif;
}

.fw-800 {
  font-weight: 800;
}

.fw-700 {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.fw-400 {
  font-weight: 400;
}

.fs-16 {
  font-size: px-to-rem(16);
}

.lh-100 {
  line-height: 100%;
}

.lh-120 {
  line-height: 120%;
}

.lh-130 {
  line-height: 130%;
}

.lh-140 {
  line-height: 140%;
}

.lh-150 {
  line-height: 150%;
}

@media (min-width: 767px) {
  .fs-16__md {
    font-size: px-to-rem(16);
  }
}
@media (min-width: 1200px) {
  .fs-16__lg {
    font-size: px-to-rem(16);
  }
}
.color-primary {
  color: #00194c;
}

.background-primary {
  background-color: #00194c;
}

.border-primary {
  border-color: #00194c;
}

.color-secondary {
  color: #28a564;
}

.background-secondary {
  background-color: #28a564;
}

.border-secondary {
  border-color: #28a564;
}

.color-accent {
  color: #ffdf80;
}

.background-accent {
  background-color: #ffdf80;
}

.border-accent {
  border-color: #ffdf80;
}

.color-white {
  color: #ffffff;
}

.background-white {
  background-color: #ffffff;
}

.border-white {
  border-color: #ffffff;
}

.color-black {
  color: #000000;
}

.background-black {
  background-color: #000000;
}

.border-black {
  border-color: #000000;
}

.color-support-orange {
  color: #e59177;
}

.background-support-orange {
  background-color: #e59177;
}

.border-support-orange {
  border-color: #e59177;
}

.color-support-blue-100 {
  color: #67abfb;
}

.background-support-blue-100 {
  background-color: #67abfb;
}

.border-support-blue-100 {
  border-color: #67abfb;
}

.color-support-blue-200 {
  color: #4599fc;
}

.background-support-blue-200 {
  background-color: #4599fc;
}

.border-support-blue-200 {
  border-color: #4599fc;
}

.color-support-blue-900 {
  color: #213763;
}

.background-support-blue-900 {
  background-color: #213763;
}

.border-support-blue-900 {
  border-color: #213763;
}

.color-support-green-200 {
  color: #2ac675;
}

.background-support-green-200 {
  background-color: #2ac675;
}

.border-support-green-200 {
  border-color: #2ac675;
}

.color-gray-0 {
  color: #ffffff;
}

.background-gray-0 {
  background-color: #ffffff;
}

.border-gray-0 {
  border-color: #ffffff;
}

.color-gray-50 {
  color: #fafafa;
}

.background-gray-50 {
  background-color: #fafafa;
}

.border-gray-50 {
  border-color: #fafafa;
}

.color-gray-100 {
  color: #f3f3f3;
}

.background-gray-100 {
  background-color: #f3f3f3;
}

.border-gray-100 {
  border-color: #f3f3f3;
}

.color-gray-200 {
  color: #d4d4d4;
}

.background-gray-200 {
  background-color: #d4d4d4;
}

.border-gray-200 {
  border-color: #d4d4d4;
}

.color-gray-300 {
  color: #c9c9c9;
}

.background-gray-300 {
  background-color: #c9c9c9;
}

.border-gray-300 {
  border-color: #c9c9c9;
}

.color-gray-350 {
  color: #cecece;
}

.background-gray-350 {
  background-color: #cecece;
}

.border-gray-350 {
  border-color: #cecece;
}

.color-gray-500 {
  color: #929292;
}

.background-gray-500 {
  background-color: #929292;
}

.border-gray-500 {
  border-color: #929292;
}

.color-gray-700 {
  color: #717171;
}

.background-gray-700 {
  background-color: #717171;
}

.border-gray-700 {
  border-color: #717171;
}

.color-gray-800 {
  color: #8f9ab0;
}

.background-gray-800 {
  background-color: #8f9ab0;
}

.border-gray-800 {
  border-color: #8f9ab0;
}

.color-gray-1000 {
  color: #000000;
}

.background-gray-1000 {
  background-color: #000000;
}

.border-gray-1000 {
  border-color: #000000;
}

.color-background-gray {
  color: #efefef;
}

.background-background-gray {
  background-color: #efefef;
}

.border-background-gray {
  border-color: #efefef;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

.ta-left {
  text-align: left;
}

.ta-right {
  text-align: right;
}

@media (min-width: 767px) {
  .ta-center__md {
    text-align: center;
  }
  .ta-left__md {
    text-align: left;
  }
  .ta-right__md {
    text-align: right;
  }
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-80 {
  opacity: 0.8;
}

.flex-1 {
  flex: 1;
}

.site-header-idk-1225 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #00194c;
  color: #ffffff;
}
.site-header-idk-1225 .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 24px 16px;
}
.site-header-idk-1225 .header-logo img {
  display: block;
  height: 50px;
}
.site-header-idk-1225 .header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-header-idk-1225 .menu-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header-idk-1225 .menu-item a {
  color: #ffffff;
  font-size: 16px;
  font-weight: var(--weight-medium);
  padding: 0;
  position: relative;
  text-decoration: none;
}
.site-header-idk-1225 .menu-arrow {
  width: 24px;
  height: 24px;
  margin-left: 6px;
  transform-origin: center;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.33, 0.02, 0.11, 0.96);
  transform-origin: center;
}
.site-header-idk-1225 .menu-item.has-mega a {
  display: flex;
  align-items: center;
}
.site-header-idk-1225 .menu-item.mega-open .menu-arrow,
.site-header-idk-1225 .menu-item.has-mega:hover .menu-arrow {
  transform: rotate(180deg);
}
.site-header-idk-1225 .menu-item:hover a::after {
  width: 100%;
}
.site-header-idk-1225 .header-btn {
  background: #ffffff;
  color: #000000;
  border-radius: 999px;
  padding: 16px 30px;
  font-weight: var(--weight-medium);
  text-transform: none;
  text-decoration: none;
  transition: background 0.25s ease;
}
.site-header-idk-1225 .header-btn:hover {
  background: #d4d4d4;
}
.site-header-idk-1225 .menu-toggle.mobile-only {
  display: none;
}
.site-header-idk-1225 .mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #4599fc;
  padding: 50px 0px;
  display: none;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.site-header-idk-1225 .mega-menu.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header-idk-1225 .mega-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.site-header-idk-1225 .mega-col h6 {
  font-size: 16px;
  font-weight: var(--weight-bold);
  margin-bottom: 10px;
  color: #00194c;
}
.site-header-idk-1225 .mega-col p {
  font-size: 16px;
  padding: 0 65px 20px 0;
  line-height: 1.4;
  color: #ffffff;
}
.site-header-idk-1225 .mega-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.4;
}
.site-header-idk-1225 .mega-link:hover {
  color: #00194c;
}
@media (min-width: 992px) {
  .site-header-idk-1225 .mobile-menu {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(-10px);
    transition: max-height 0.35s, opacity 0.35s, transform 0.35s;
  }
  .site-header-idk-1225 .menu-toggle.mobile-only {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .site-header-idk-1225 .desktop-nav,
  .site-header-idk-1225 .desktop-btn {
    display: none !important;
  }
  .site-header-idk-1225 .header-wrapper {
    gap: 24px;
    padding: 42px 20px 24px;
  }
  .site-header-idk-1225 .header-logo img {
    height: 40px;
  }
  .site-header-idk-1225 .menu-toggle.mobile-only {
    display: inline-flex;
    border: none;
    background: transparent;
    padding: 0;
    align-items: center;
    justify-content: center;
  }
  .site-header-idk-1225 .menu-toggle {
    position: relative;
  }
  .site-header-idk-1225 .menu-toggle .icon-open,
  .site-header-idk-1225 .menu-toggle .icon-close {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
  }
  .site-header-idk-1225 .menu-toggle .icon-close {
    display: none;
  }
  .site-header-idk-1225 .menu-toggle.is-active .icon-open {
    display: none;
  }
  .site-header-idk-1225 .menu-toggle.is-active .icon-close {
    display: block;
  }
  .site-header-idk-1225 .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #d4d4d4;
    padding: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  }
  .site-header-idk-1225 .mobile-menu.is-active {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-header-idk-1225 .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .site-header-idk-1225 .mobile-item {
    padding: 20px;
  }
  .site-header-idk-1225 .mobile-item > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #000000;
    font-size: 16px;
    font-weight: var(--weight-medium);
    text-decoration: none;
  }
  .site-header-idk-1225 .menu-arrow {
    width: 24px;
    height: 24px;
    color: #000000;
    filter: invert(1);
  }
  .site-header-idk-1225 .mobile-item.has-mega:hover .menu-arrow,
  .site-header-idk-1225 .mobile-item.active .menu-arrow {
    transform: rotate(180deg);
  }
  .site-header-idk-1225 .mobile-submenu {
    margin-top: 8px;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    border-left: 2px solid #00194c;
    color: #00194c;
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }
  .site-header-idk-1225 .mobile-item.active .mobile-submenu {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
  }
  .site-header-idk-1225 .mobile-submenu a {
    display: block;
    padding: 20px 18px;
    font-size: 14px;
    color: #00194c;
    text-decoration: none;
  }
  .site-header-idk-1225 .mobile-cta {
    display: block;
    width: calc(100% - 40px);
    margin: 22px 20px 20px;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    background: #00194c;
    color: #ffffff;
    font-weight: var(--weight-semibold);
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .site-header-idk-1225 .mobile-cta:hover {
    background: #4599fc;
    color: #00194c;
  }
  .site-header-idk-1225 .mega-menu {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .site-header-idk-1225 {
    transition: background 0.3s ease;
  }
  .site-header-idk-1225.is-top {
    background: transparent;
  }
  .site-header-idk-1225:not(.is-top) {
    background: #00194c;
  }
  .site-header-idk-1225:hover {
    background: #00194c;
  }
}
.modal-overlay-idk-1225 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay-idk-1225.is-active {
  opacity: 1;
  display: flex;
  pointer-events: auto;
}
.modal-overlay-idk-1225 .modal-container {
  width: min(1038px, 100%);
  background: #ffffff;
  border-radius: 30px;
  display: flex;
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.4s ease;
  padding: 40px;
}
.modal-overlay-idk-1225.is-active .modal-container {
  transform: translateY(0);
}
.modal-overlay-idk-1225 .modal-col {
  flex: 1;
}
.modal-overlay-idk-1225 .modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 32px;
  border-right: 1px solid #d4d4d4;
}
.modal-overlay-idk-1225 .modal-form h2 {
  font-size: 42px;
  color: #000000;
  font-weight: var(--weight-medium);
}
.modal-overlay-idk-1225 .modal-form p {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: var(--weight-regular);
  color: #717171;
  line-height: 1.5;
}
.modal-overlay-idk-1225 .input-group {
  position: relative;
  margin-bottom: 20px;
}
.modal-overlay-idk-1225 .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}
.modal-overlay-idk-1225 input {
  width: 100%;
  padding: 16px 20px 16px 54px;
  font-size: 18px;
  font-weight: var(--weight-regular);
  resize: none;
  color: #000000;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
}
.modal-overlay-idk-1225 textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: var(--weight-regular);
  resize: none;
  color: #8f9ab0;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
}
.modal-overlay-idk-1225 input:focus,
.modal-overlay-idk-1225 textarea:focus {
  outline: none;
  border-color: #00194c;
}
.modal-overlay-idk-1225 input::placeholder,
.modal-overlay-idk-1225 textarea::placeholder {
  color: #717171;
}
.modal-overlay-idk-1225 textarea {
  height: 180px;
}
.modal-overlay-idk-1225 .checkbox-line {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #717171;
  font-weight: var(--weight-regular);
  margin: 12px 0 32px;
}
.modal-overlay-idk-1225 .checkbox-line input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.modal-overlay-idk-1225 .checkbox-line .check-icon {
  width: 24px;
  height: 24px;
  border: 2px solid #00194c;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  transition: 0.2s ease;
  cursor: pointer;
}
.modal-overlay-idk-1225 .checkbox-line input:checked + .check-icon {
  border-color: #00194c;
  background-color: #00194c;
  background-image: url("../img/check-icon.svg");
}
.modal-overlay-idk-1225 .checkbox-line a {
  color: inherit;
  text-decoration: underline;
}
.modal-overlay-idk-1225 .send-btn {
  width: 100%;
  padding: 16px;
  background: #00194c;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.3s ease;
}
.modal-overlay-idk-1225 .send-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.modal-overlay-idk-1225 .send-btn:hover:not(:disabled) {
  background: #4599fc;
  color: #00194c;
}
.modal-overlay-idk-1225 .modal-info {
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.modal-overlay-idk-1225 .modal-close {
  background: transparent;
  border: none;
  font-size: 18px;
  color: #000000;
  font-weight: var(--weight-medium);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
  width: fit-content;
  margin-left: auto;
}
.modal-overlay-idk-1225 .modal-close:hover {
  color: #00194c;
}
.modal-overlay-idk-1225 .modal-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.modal-overlay-idk-1225 .find-us {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-overlay-idk-1225 .find-us div {
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.modal-overlay-idk-1225 .modal-info h5 {
  font-size: 18px;
  color: #000000;
  font-weight: var(--weight-medium);
}
.modal-overlay-idk-1225 .modal-info h6 {
  font-size: 14px;
  color: #000000;
  font-weight: var(--weight-medium);
}
.modal-overlay-idk-1225 .modal-info p {
  font-size: 14px;
  color: #717171;
  font-weight: var(--weight-regular);
  line-height: 1.5;
}
.modal-overlay-idk-1225 .modal-socials {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.modal-overlay-idk-1225 .social-grid {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.modal-overlay-idk-1225 .social-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 16px;
  border-radius: 10px;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  color: #000000;
  border: 1px solid #717171;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, color 0.25s ease;
}
.modal-overlay-idk-1225 .social-btn img {
  width: 32px;
  height: 32px;
}
.modal-overlay-idk-1225 .social-btn:hover {
  background-color: #00194c;
  color: #ffffff;
}
.modal-overlay-idk-1225 .social-btn:hover img {
  filter: invert(1);
}
.modal-overlay-idk-1225 .modal-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-overlay-idk-1225 .contact-item {
  color: #717171;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-overlay-idk-1225 .contact-item a {
  color: inherit;
  text-decoration: none;
}
.modal-overlay-idk-1225 .contact-item a:hover {
  color: #00194c;
}
@media (max-width: 991px) {
  .modal-overlay-idk-1225 .modal-container {
    flex-direction: column;
    width: calc(100% - 40px);
    padding: 24px 20px;
    border-radius: 16px;
  }
  .modal-overlay-idk-1225 .modal-form {
    padding-right: 0;
    border-right: none;
    gap: 10px;
  }
  .modal-overlay-idk-1225 .modal-form h2 {
    font-size: 24px;
  }
  .modal-overlay-idk-1225 .modal-form p {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .modal-overlay-idk-1225 .input-group {
    margin-bottom: 16px;
  }
  .modal-overlay-idk-1225 .input-icon {
    width: 20px;
  }
  .modal-overlay-idk-1225 input,
  .modal-overlay-idk-1225 textarea {
    font-size: 14px;
  }
  .modal-overlay-idk-1225 input {
    padding: 17px 12px 17px 42px;
  }
  .modal-overlay-idk-1225 textarea {
    padding: 16px 12px;
  }
  .modal-overlay-idk-1225 .modal-info {
    display: none;
  }
}

.site-footer-idk-1225 {
  background: #00194c;
  color: #ffffff;
  padding: 60px 0;
}
.site-footer-idk-1225 .footer-grid {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.site-footer-idk-1225 .footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer-idk-1225 .footer-logo {
  width: 126px;
}
.site-footer-idk-1225 .footer-line-div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}
.site-footer-idk-1225 .footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer-idk-1225 .footer-col h4 {
  font-size: 18px;
  font-weight: var(--weight-medium);
  line-height: 1.2;
  color: #8f9ab0;
}
.site-footer-idk-1225 .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer-idk-1225 .footer-col li {
  list-style: none;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.site-footer-idk-1225 .footer-col a {
  padding: 4px 0;
  color: #ffffff;
  line-height: 1.2;
  font-size: 16px;
  font-weight: var(--weight-regular);
}
.site-footer-idk-1225 .footer-col a:hover {
  color: #67abfb;
}
.site-footer-idk-1225 .find-us-footer {
  max-width: 23%;
  gap: 16px;
}
.site-footer-idk-1225 .find-us-footer h6 {
  color: #ffffff;
  line-height: 1.5;
  font-size: 16px;
  font-weight: var(--weight-semibold);
}
.site-footer-idk-1225 .find-us-footer p {
  color: #ffffff;
  line-height: 1.5;
  font-size: 13px;
  font-weight: var(--weight-regular);
}
.site-footer-idk-1225 .footer-social {
  gap: 16px;
}
.site-footer-idk-1225 .social-grid-footer {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.site-footer-idk-1225 a.social-btn-footer {
  display: flex;
  flex-direction: column;
  width: 127px;
  max-width: 100%;
  aspect-ratio: 1.4;
  padding: 20px 16px;
  border-radius: 10px;
  border: 1px solid #213763;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  font-weight: var(--weight-regular);
  color: #8f9ab0;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, color 0.25s ease;
  background: transparent;
}
.site-footer-idk-1225 a.social-btn-footer:hover {
  color: inherit;
}
.site-footer-idk-1225 .social-btn-footer img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}
.site-footer-idk-1225 .social-btn-footer:hover {
  background-color: #213763;
  color: #ffffff;
  cursor: pointer;
}
.site-footer-idk-1225 .modal-contact {
  margin-top: 7px;
}
.site-footer-idk-1225 .contact-item-footer {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.site-footer-idk-1225 .contact-item-footer a {
  font-size: 14px;
  line-height: 1.2;
  font-weight: var(--weight-regular);
  white-space: nowrap;
}
.site-footer-idk-1225 .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 46px;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: var(--weight-regular);
  color: #ffffff;
}
.site-footer-idk-1225 .footer-bottom .footer-links {
  display: flex;
  gap: 8px;
}
.site-footer-idk-1225 .footer-bottom .footer-links a {
  color: inherit;
  text-decoration: none;
}
.site-footer-idk-1225 .footer-bottom .footer-links a:hover {
  color: #67abfb;
}
@media screen and (max-width: 991px) {
  .site-footer-idk-1225 {
    padding: 40px 20px;
  }
  .site-footer-idk-1225 .footer-logo {
    height: 50px;
  }
  .site-footer-idk-1225 .footer-line-div {
    flex-wrap: wrap;
  }
  .site-footer-idk-1225 .footer-bottom {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer-idk-1225 {
    padding: 40px 20px;
  }
  .site-footer-idk-1225 .footer-logo {
    height: 57px;
    width: fit-content;
  }
  .site-footer-idk-1225 .realty-logo {
    display: none;
  }
  .site-footer-idk-1225 .footer-grid {
    padding: 0;
    gap: 40px;
  }
  .site-footer-idk-1225 .footer-line-div {
    flex-direction: column;
    gap: 40px;
  }
  .site-footer-idk-1225 .find-us-footer {
    max-width: 100%;
    gap: 16px;
  }
  .site-footer-idk-1225 .social-grid-footer {
    flex-wrap: wrap;
  }
  .site-footer-idk-1225 .footer-col {
    display: flex;
    flex-direction: column;
  }
  .site-footer-idk-1225 .contact-item-footer {
    flex-wrap: wrap;
  }
  .site-footer-idk-1225 .footer-bottom {
    display: none;
  }
}

.text-circle-section-idk-1225 {
  margin-top: -90px;
  padding: 170px 0 80px;
  position: relative;
  width: 100%;
}
.text-circle-section-idk-1225 .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 1004px;
  max-width: 100%;
  padding-right: 120px;
  margin: 0 auto;
}
.text-circle-section-idk-1225 .title {
  font-weight: var(--weight-medium);
  color: #000000;
}
.text-circle-section-idk-1225 p {
  color: #717171;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .text-circle-section-idk-1225 p {
    font-size: 16px;
  }
}
.text-circle-section-idk-1225 img.circle-vector {
  position: absolute;
  bottom: calc(50% - 44px);
  transform: translateY(50%);
  right: 0;
  z-index: 1;
  width: 116px;
  height: auto;
  object-fit: contain;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .text-circle-section-idk-1225 {
    margin-top: -106px;
    padding: 183px 0 80px;
  }
  .text-circle-section-idk-1225 .text-wrapper {
    margin: 0;
    padding-right: 0;
    width: 100%;
  }
  .text-circle-section-idk-1225 img.circle-vector {
    display: none;
  }
}
.image-text-section-idk-1225 {
  margin-top: -90px;
  padding: 170px 0 80px;
  background-color: #fafafa;
}
.image-text-section-idk-1225 .section-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 104px;
}
.image-text-section-idk-1225 img {
  flex: 0.9;
  height: 582px;
  object-fit: cover;
  border-radius: 32px;
  max-width: 520px;
}
.image-text-section-idk-1225 .text-wrapper {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #000000;
  max-width: 592px;
}
.image-text-section-idk-1225 .text-wrapper h2 {
  font-weight: var(--weight-medium);
}
.image-text-section-idk-1225 .text-wrapper .description {
  color: #717171;
}
.image-text-section-idk-1225 .text-wrapper .description p {
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .image-text-section-idk-1225 .section-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .image-text-section-idk-1225 {
    margin-top: -106px;
    padding: 186px 0 80px;
  }
  .image-text-section-idk-1225 .section-wrapper {
    gap: 40px;
  }
  .image-text-section-idk-1225 img {
    flex: 1;
    height: 410px;
    border-radius: 20px;
    max-width: 100%;
    width: 100%;
  }
  .image-text-section-idk-1225 .text-wrapper {
    gap: 20px;
  }
}
.image-text-section-form-idk-1225 {
  margin-top: -90px;
  padding: 170px 0 80px;
}
.image-text-section-form-idk-1225 .container {
  max-width: 1356px;
  padding: 0 20px 0 120px;
}
.image-text-section-form-idk-1225 .section-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 104px;
}
.image-text-section-form-idk-1225 img {
  flex: 0.9;
  height: 582px;
  object-fit: cover;
  border-radius: 32px;
  max-width: 520px;
}
.image-text-section-form-idk-1225 .text-wrapper {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #000000;
  max-width: 592px;
  position: relative;
}
.image-text-section-form-idk-1225 .text-wrapper h2 {
  font-weight: var(--weight-medium);
  max-width: 530px;
}
.image-text-section-form-idk-1225 .text-wrapper .description {
  color: #717171;
}
.image-text-section-form-idk-1225 .text-wrapper .description p {
  font-size: 18px;
  line-height: 1.5;
}
.image-text-section-form-idk-1225 .bg-left {
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 332px;
  height: 166px;
  border-left-width: 39px;
  border-left-style: solid;
  border-bottom-width: 39px;
  border-bottom-style: solid;
}

@media (max-width: 1024px) {
  .image-text-section-form-idk-1225 .container {
    padding-left: 80px;
  }
  .image-text-section-form-idk-1225 .bg-left {
    left: -60px;
    bottom: -100px;
  }
}
@media (max-width: 992px) {
  .image-text-section-form-idk-1225 {
    margin-top: -106px;
    padding: 186px 0 80px;
  }
  .image-text-section-form-idk-1225 .container {
    padding: 0 20px;
  }
  .image-text-section-form-idk-1225 .section-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .image-text-section-form-idk-1225 img {
    flex: 1;
    height: 410px;
    max-height: 410px;
    border-radius: 20px;
    max-width: 100%;
    width: 100%;
  }
  .image-text-section-form-idk-1225 .text-wrapper {
    gap: 20px;
    max-width: 100%;
  }
  .image-text-section-form-idk-1225 .bg-left {
    display: none;
  }
}
.cta-section-idk-1225 {
  padding: 0 20px;
  border-radius: 24px;
}
.cta-section-idk-1225 .container {
  border-radius: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
}
.cta-section-idk-1225 .text-wrapper {
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cta-section-idk-1225 .text-wrapper h2 {
  text-align: center;
  color: #ffffff;
  font-weight: var(--weight-medium);
}
.cta-section-idk-1225 .text-wrapper .description * {
  text-align: center;
  color: #ffffff;
  font-weight: var(--weight-regular);
}
.cta-section-idk-1225 .arrow {
  rotate: -45deg;
}
.cta-section-idk-1225 .press-cta {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .cta-section-idk-1225 {
    height: 400px;
  }
  .cta-section-idk-1225 .container {
    padding: 10px;
  }
  .cta-section-idk-1225 .text-wrapper {
    padding: 0;
  }
  .cta-section-idk-1225 .description * {
    font-size: 14px;
  }
}
.text-colorful-forms-idk-1225 {
  padding: 160px 20px 0;
  margin-top: -80px;
}
.text-colorful-forms-idk-1225 .container-lg {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 90px;
  justify-content: center;
  align-items: center;
  max-width: 1568px;
}
.text-colorful-forms-idk-1225 .text-colorful-forms-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.text-colorful-forms-idk-1225 .text-colorful-forms-bg-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 332px;
  height: 166px;
  border-left-width: 39px;
  border-left-style: solid;
  border-top-width: 39px;
  border-top-style: solid;
}
.text-colorful-forms-idk-1225 .text-colorful-forms-bg-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 332px;
  height: 166px;
  border-right-width: 39px;
  border-right-style: solid;
  border-bottom-width: 39px;
  border-bottom-style: solid;
}
.text-colorful-forms-idk-1225 .text-colorful-forms-text-wrapper {
  min-height: 366px;
  max-width: 1168px;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.text-colorful-forms-idk-1225 .text-colorful-forms-text-wrapper h2 {
  font-weight: var(--weight-medium);
}
.text-colorful-forms-idk-1225 .text-colorful-forms-text-wrapper.hbr_malls {
  max-width: 1070px;
}
.text-colorful-forms-idk-1225 .text-colorful-forms-text-wrapper.hbr_malls h2 {
  font-size: 28px;
}

@media (max-width: 768px) {
  .text-colorful-forms-idk-1225 {
    padding: 186px 38px 80px 20px;
    margin-top: -106px;
  }
  .text-colorful-forms-idk-1225 .text-colorful-forms-bg-left,
  .text-colorful-forms-idk-1225 .text-colorful-forms-bg-right {
    display: none;
  }
  .text-colorful-forms-idk-1225 .text-colorful-forms-text-wrapper {
    min-height: fit-content;
    padding: 0;
    text-align: left;
  }
  .text-colorful-forms-idk-1225 h2 {
    font-size: 24px;
  }
  .text-colorful-forms-idk-1225 .container-lg {
    gap: 32px;
  }
}
.home-blog-idk-1225 {
  padding: 160px 20px 0;
  margin-top: -80px;
}
.home-blog-idk-1225 .container-lg {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 90px;
  justify-content: center;
  align-items: center;
}
.home-blog-idk-1225 .blog-bg-left {
  position: absolute;
  left: 0;
  top: 28px;
  width: 332px;
  height: 166px;
  border-left: 39px solid #00194c;
  border-top: 39px solid #00194c;
}
.home-blog-idk-1225 .blog-bg-right {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: 332px;
  height: 166px;
  border-right: 39px solid #4599fc;
  border-bottom: 39px solid #4599fc;
}
.home-blog-idk-1225 .blog-title {
  font-weight: var(--weight-medium);
  color: #000000;
  text-align: center;
}
.home-blog-idk-1225 .desktop-only {
  display: grid !important;
}
.home-blog-idk-1225 .mobile-only {
  display: none !important;
}
.home-blog-idk-1225 .blog-swiper {
  display: none;
}
.home-blog-idk-1225 .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-blog-idk-1225.swiper {
  overflow: visible;
}
.home-blog-idk-1225 .blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000000;
  gap: 20px;
  overflow: hidden;
}
.home-blog-idk-1225 .blog-card__image {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
}
.home-blog-idk-1225 .blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-blog-idk-1225 .blog-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  pointer-events: none;
  z-index: 2;
}
.home-blog-idk-1225 .blog-card__category {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: #ffffff;
  color: #00194c;
  font-size: 14px;
  line-height: 1.2;
  font-weight: var(--weight-medium);
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 3;
}
.home-blog-idk-1225 .blog-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.home-blog-idk-1225 .blog-card__date {
  font-weight: var(--weight-regular);
  color: #717171;
}
.home-blog-idk-1225 .blog-card h5 {
  font-weight: var(--weight-medium);
  line-height: 1.2;
}
.home-blog-idk-1225 .blog-card__excerpt p {
  font-size: 14px;
  line-height: 1.5;
  color: #929292;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-blog-idk-1225 .blog-card__arrow {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 64px;
  height: 64px;
  transition: transform 0.35s ease;
}
.home-blog-idk-1225 .blog-card__link {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: var(--weight-medium);
}
.home-blog-idk-1225 .blog-card__link img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.home-blog-idk-1225 .blog-card__link:hover {
  color: #00194c;
}
.home-blog-idk-1225 .btn {
  padding: 16px 30px;
  font-weight: var(--weight-medium);
}

@media (max-width: 768px) {
  .home-blog-idk-1225 {
    padding: 160px 0 0;
  }
  .home-blog-idk-1225 .blog-bg-left,
  .home-blog-idk-1225 .blog-bg-right {
    display: none;
  }
  .home-blog-idk-1225 h2 {
    font-size: 28px;
  }
  .home-blog-idk-1225 .container-lg {
    gap: 32px;
  }
  .home-blog-idk-1225 .desktop-only,
  .home-blog-idk-1225 .blog-grid {
    display: none !important;
  }
  .home-blog-idk-1225 .mobile-only {
    display: block !important;
  }
  .home-blog-idk-1225 .blog-swiper {
    width: 100%;
    position: relative;
    display: block !important;
  }
  .home-blog-idk-1225 .blog-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
  .home-blog-idk-1225 .blog-swiper .swiper-slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .home-blog-idk-1225 .blog-swiper .blog-card__image {
    height: 250px;
  }
  .home-blog-idk-1225 .blog-swiper .blog-card__content {
    gap: 10px;
  }
  .home-blog-idk-1225 .blog-swiper .blog-card h5 {
    font-size: 18px;
  }
  .home-blog-idk-1225 .blog-swiper .swiper-pagination {
    text-align: center;
  }
  .home-blog-idk-1225 .blog-swiper .swiper-arrows {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
    margin: 32px 20px 0;
  }
  .home-blog-idk-1225 .blog-swiper .btn {
    margin-right: auto;
    padding: 16px 20px;
  }
  .home-blog-idk-1225 .blog-swiper .swiper-button-prev,
  .home-blog-idk-1225 .blog-swiper .swiper-button-next {
    margin: 0;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00194c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
  }
  .home-blog-idk-1225 .blog-swiper .swiper-button-prev::after,
  .home-blog-idk-1225 .blog-swiper .swiper-button-next::after {
    display: none;
  }
  .home-blog-idk-1225 .blog-swiper .arrow-icon {
    width: 24px;
    height: 24px;
    pointer-events: none;
  }
  .home-blog-idk-1225 .blog-swiper .swiper-button-disabled {
    background: transparent;
    border: 1px solid #cecece;
    color: #cecece;
  }
}
.cta-section-1225 {
  padding: 120px 0;
}
.cta-section-1225 .cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 104px;
}
.cta-section-1225 .cta-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1.1;
  align-items: flex-start;
}
.cta-section-1225 .cta-text h2 {
  font-weight: var(--weight-medium);
  color: #000000;
  text-align: left;
}
.cta-section-1225 .cta-text p {
  color: #717171;
  margin-bottom: 20px;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .cta-section-1225 .cta-text p {
    font-size: 16px;
  }
}
.cta-section-1225 .cta-image {
  flex: 0.9;
  display: flex;
  justify-content: center;
}
.cta-section-1225 .cta-image img {
  width: 100%;
  height: 582px;
  border-radius: 32px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .cta-section-1225 {
    padding: 80px 20px 80px;
  }
  .cta-section-1225 .cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0;
    gap: 32px;
  }
  .cta-section-1225 button {
    width: fit-content;
  }
  .cta-section-1225 .cta-image {
    width: 100%;
  }
  .cta-section-1225 .cta-image img {
    width: 100%;
    max-height: 400px;
    height: auto;
  }
}
.hero-banner-idk-1225 {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}
.hero-banner-idk-1225::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}
.hero-banner-idk-1225 img.hero-bg,
.hero-banner-idk-1225 video.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-banner-idk-1225 .hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  max-width: 858px;
  gap: 20px;
  margin: 0 auto;
}
.hero-banner-idk-1225 .hero-content.enterprise-subtitle {
  max-width: 997px;
}
.hero-banner-idk-1225 .address {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.hero-banner-idk-1225 .address img {
  width: 24px;
  height: 24px;
}
.hero-banner-idk-1225 .address p {
  font-weight: var(--weight-bold);
}
.hero-banner-idk-1225 h1 {
  font-weight: var(--weight-semibold);
  color: #ffffff;
}
.hero-banner-idk-1225 .subtitle {
  display: flex;
  flex-direction: column;
  max-width: 590px;
}
.hero-banner-idk-1225 .subtitle-empresa {
  max-width: 760px;
}
.hero-banner-idk-1225 .enterprise-subtitle {
  max-width: 957px;
  font-weight: var(--weight-regular);
}
.hero-banner-idk-1225 p {
  color: #ffffff;
}
.hero-banner-idk-1225 .hero-buttons {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}
.hero-banner-idk-1225 .hero-buttons .fit-content {
  width: fit-content;
}
.hero-banner-idk-1225 .hero-content-hbr_malls {
  max-width: 916px;
}
.hero-banner-idk-1225 .hero-content-empresa {
  max-width: 760px;
}
.hero-banner-idk-1225 .scroll-down-wrapper {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}
.hero-banner-idk-1225 .scroll-down {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.hero-banner-idk-1225 .scroll-down p {
  color: #ffffff;
  font-weight: var(--weight-semibold);
}
.hero-banner-idk-1225 .scroll-down .mouse-icon {
  width: 24px;
  height: 24px;
}
.hero-banner-idk-1225 .scroll-down:hover {
  cursor: pointer;
}
.hero-banner-idk-1225 .scroll-down:hover .mouse-icon {
  animation: scroll-down 1s infinite;
}
.hero-banner-idk-1225 .hero-content-comvem img {
  height: 80px;
  width: auto;
  margin-bottom: 22px;
}
@media (max-width: 480px) {
  .hero-banner-idk-1225 .hero-content-comvem {
    align-items: center;
  }
  .hero-banner-idk-1225 .hero-content-comvem img {
    height: 60px;
    margin-bottom: 0;
  }
}
.hero-banner-idk-1225 .hero-bg,
.hero-banner-idk-1225 .hero-bg-swiper,
.hero-banner-idk-1225 .swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-banner-idk-1225 .swiper-wrapper {
  height: 100%;
}
.hero-banner-idk-1225 .swiper-slide {
  height: 100%;
  display: flex;
}
.hero-banner-idk-1225 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner-idk-1225 .hero-swiper-pagination {
  position: relative;
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.2705882353);
  padding: 6px 6px;
  border-radius: 999px;
  width: fit-content !important;
  bottom: 0 !important;
}
.hero-banner-idk-1225 .hero-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.5;
  margin: 0 !important;
}
.hero-banner-idk-1225 .hero-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 480px) {
  .hero-banner-idk-1225 .hero-content {
    align-items: flex-start;
    gap: 16px;
    justify-content: center;
  }
  .hero-banner-idk-1225 .hero-content.enterprise-subtitle {
    gap: 14px;
  }
  .hero-banner-idk-1225 .hero-content h1 {
    text-align: left;
  }
  .hero-banner-idk-1225 .address {
    margin-bottom: 6px;
  }
  .hero-banner-idk-1225 .subtitle {
    align-items: flex-start;
    max-width: 100%;
  }
  .hero-banner-idk-1225 .subtitle p {
    text-align: left;
  }
  .hero-banner-idk-1225 .hero-buttons {
    margin-top: 16px;
    justify-content: flex-start;
  }
  .hero-banner-idk-1225 .hero-buttons.enterprise-buttons {
    margin-top: 6px;
  }
  .hero-banner-idk-1225 .scroll-down {
    width: 100%;
    justify-content: center;
  }
  .hero-banner-idk-1225 .scroll-down-wrapper:has(.hero-swiper-pagination) {
    bottom: 24px;
  }
}

@keyframes scroll-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.home-portfolio-idk-1225 {
  padding: 160px 20px 111px;
  margin-top: -80px;
}
.home-portfolio-idk-1225 .container-lg {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.home-portfolio-idk-1225 .portfolio-bg-left {
  position: absolute;
  left: 0;
  top: 124px;
  width: 39px;
  height: 648px;
  background: #ffdf80;
}
.home-portfolio-idk-1225 .portfolio-bg-right {
  position: absolute;
  right: 0;
  bottom: -84px;
  width: 332px;
  height: 166px;
  border-right: 39px solid #ffdf80;
  border-bottom: 39px solid #ffdf80;
}
.home-portfolio-idk-1225 .portfolio-title {
  font-weight: var(--weight-medium);
  color: #000000;
  max-width: 580px;
  text-align: center;
}
.home-portfolio-idk-1225 .desktop-only {
  display: grid !important;
}
.home-portfolio-idk-1225 .mobile-only {
  display: none !important;
}
.home-portfolio-idk-1225 .portfolio-swiper {
  display: none;
}
.home-portfolio-idk-1225 .portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 280px);
  gap: 16px;
}
.home-portfolio-idk-1225.swiper {
  overflow: visible;
}
.home-portfolio-idk-1225 .portfolio-card__image {
  position: relative;
}
.home-portfolio-idk-1225 .portfolio-card__image img {
  object-fit: cover;
  display: block;
}
.home-portfolio-idk-1225 .portfolio-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  pointer-events: none;
  z-index: 2;
}
.home-portfolio-idk-1225 .portfolio-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
}
.home-portfolio-idk-1225 .portfolio-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-portfolio-idk-1225 .portfolio-card h3 {
  font-weight: var(--weight-semibold);
  transition: transform 0.35s ease;
}
.home-portfolio-idk-1225 .portfolio-card__desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  text-align: left;
  transform: translateY(6px);
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}
.home-portfolio-idk-1225 .portfolio-card__arrow {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 64px;
  height: 64px;
  transition: transform 0.35s ease;
}
.home-portfolio-idk-1225 .portfolio-card:hover .portfolio-card__arrow {
  transform: rotate(-45deg);
}
.home-portfolio-idk-1225 .portfolio-card:hover .portfolio-card__desc {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}
.home-portfolio-idk-1225 .card-1 {
  grid-row: span 2;
}
.home-portfolio-idk-1225 .card-4 {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 768px) {
  .home-portfolio-idk-1225 {
    padding: 160px 0 0;
  }
  .home-portfolio-idk-1225 .portfolio-bg-left,
  .home-portfolio-idk-1225 .portfolio-bg-right {
    display: none;
  }
  .home-portfolio-idk-1225 h2 {
    font-size: 28px;
    padding: 0px 20px;
  }
  .home-portfolio-idk-1225 .container-lg {
    gap: 24px;
  }
  .home-portfolio-idk-1225 .desktop-only,
  .home-portfolio-idk-1225 .portfolio-grid {
    display: none !important;
  }
  .home-portfolio-idk-1225 .mobile-only {
    display: block !important;
  }
  .home-portfolio-idk-1225 .portfolio-swiper {
    width: 100%;
    position: relative;
    display: block !important;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .swiper-slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .portfolio-card {
    height: 400px;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .portfolio-card__image {
    height: 400px;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .portfolio-card__image img {
    min-height: 400px;
    object-fit: cover;
    width: 100%;
    height: auto;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .portfolio-card__content {
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    gap: 12ßpx;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .portfolio-card h3 {
    font-weight: var(--weight-semibold);
    transition: transform 0.35s ease;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .portfolio-card__desc {
    max-height: 100%;
    overflow: hidden;
    text-align: left;
    opacity: 1;
    transform: translateY(0);
  }
  .home-portfolio-idk-1225 .portfolio-swiper .portfolio-card__arrow {
    transform: rotate(-45deg);
    transition: none;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .swiper-pagination {
    text-align: center;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .swiper-arrows {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
    height: 40px;
    margin: 32px 20px 0;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .swiper-button-prev,
  .home-portfolio-idk-1225 .portfolio-swiper .swiper-button-next {
    margin: 0;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00194c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .swiper-button-prev::after,
  .home-portfolio-idk-1225 .portfolio-swiper .swiper-button-next::after {
    display: none;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .arrow-icon {
    width: 24px;
    height: 24px;
    pointer-events: none;
  }
  .home-portfolio-idk-1225 .portfolio-swiper .swiper-button-disabled {
    background: transparent;
    border: 1px solid #cecece;
    color: #cecece;
  }
}
.stats-section-idk-1225 {
  padding: 170px 0 120px;
  position: relative;
}
.stats-section-idk-1225 .numbers-grid {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-between;
}
.stats-section-idk-1225 .number-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.stats-section-idk-1225 .flag {
  background: #00194c;
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 34px;
  font-weight: var(--weight-medium);
}
.stats-section-idk-1225 .number-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #000000;
}
.stats-section-idk-1225 .number-line .number,
.stats-section-idk-1225 .number-line .number-desc {
  font-size: 64px;
  font-weight: var(--weight-light);
  line-height: 1;
}
.stats-section-idk-1225 .desc {
  color: #717171;
  font-weight: var(--weight-regular);
  max-width: 260px;
  margin-bottom: 14px;
}
.stats-section-idk-1225 img.card-image {
  max-width: 416px;
  width: 100%;
  border-radius: 32px;
  height: 500px;
  object-fit: cover;
}
.stats-section-idk-1225 img.circle-vector {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 140px;
  height: auto;
  object-fit: contain;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .numbers-section-idk-1225 {
    padding: 80px 0 0;
  }
  .numbers-section-idk-1225 .numbers-grid {
    flex-direction: column;
    gap: 80px;
  }
  .numbers-section-idk-1225 .flag {
    padding: 6px 8px;
    font-size: 14px;
    border-radius: 34px;
  }
  .numbers-section-idk-1225 .number-line .number,
  .numbers-section-idk-1225 .number-line .number-desc {
    font-size: 80px;
    font-weight: var(--weight-light);
  }
  .numbers-section-idk-1225 .desc {
    margin-bottom: 16px;
  }
  .numbers-section-idk-1225 img.card-image {
    max-width: 100%;
    width: 100%;
  }
  .numbers-section-idk-1225 .circle-vector {
    display: none;
  }
}
.numbers-section-idk-1225 {
  padding: 60px 20px;
  background-color: #fafafa;
}
.numbers-section-idk-1225 .numbers-section-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
}
.numbers-section-idk-1225 .numbers-section-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: #d4d4d4;
}
.numbers-section-idk-1225 .number-item {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 20px 20px;
}
.numbers-section-idk-1225 .number-item:nth-child(-n+2) {
  padding: 32px 20px 76px;
}
.numbers-section-idk-1225 .number-item:nth-child(-n+2)::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d4d4d4;
}
.numbers-section-idk-1225 .number {
  font-size: 64px;
  line-height: 1;
  font-family: Aktiv Grotesk;
  font-weight: var(--weight-light);
  color: #000000;
}
.numbers-section-idk-1225 .description {
  font-weight: var(--weight-regular);
  color: #717171;
}

@media (max-width: 640px) {
  .numbers-section-idk-1225 {
    padding: 20px 20px;
  }
  .numbers-section-idk-1225 .numbers-section-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .numbers-section-idk-1225 .numbers-section-wrapper::before {
    display: none;
  }
  .numbers-section-idk-1225 .number-item {
    padding: 60px 0;
    gap: 12px;
    border-bottom: 1px solid #d4d4d4;
  }
  .numbers-section-idk-1225 .number-item:nth-child(-n+2) {
    padding: 60px 0;
  }
  .numbers-section-idk-1225 .number-item:nth-child(-n+2)::after {
    display: none;
  }
  .numbers-section-idk-1225 .number-item:last-child {
    border-bottom: none;
  }
}
.values-section-idk-1225 {
  padding: 80px 20px;
}
.values-section-idk-1225 .values-section-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.values-section-idk-1225 .values-section-card {
  height: 300px;
  display: flex;
  align-items: flex-start;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  color: #ffffff;
  gap: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 24px;
}
.values-section-idk-1225 .values-section-card h4 {
  font-weight: var(--weight-medium);
}
.values-section-idk-1225 .values-section-card p {
  width: 100%;
  max-width: 432px;
}

@media (max-width: 640px) {
  .values-section-idk-1225 {
    padding: 80px 0 40px;
  }
  .values-section-idk-1225 .values-section-wrapper {
    gap: 20px;
  }
  .values-section-idk-1225 .values-section-card {
    height: 280px;
  }
  .values-section-idk-1225 .values-section-card p {
    max-width: 100%;
  }
}
.service-section-card-idk-1225 {
  padding: 40px 20px 120px;
}
.service-section-card-idk-1225 .service-section-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 102px;
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 104px;
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card__content {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card__media {
  order: 2;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card__media .image-card-swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card__media .image-card-swiper img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card .swiper,
.service-section-card-idk-1225 .service-section-card-wrapper .service-card .swiper-wrapper,
.service-section-card-idk-1225 .service-section-card-wrapper .service-card .swiper-slide {
  max-width: 100%;
  border-radius: 32px;
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card__title {
  color: #000000;
  font-weight: var(--weight-medium);
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card__text {
  color: #717171;
  font-weight: var(--weight-regular);
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card:nth-child(even) .service-card__content {
  order: 2;
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card:nth-child(even) .service-card__media {
  order: 1;
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card .swiper-pagination {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  width: fit-content;
  padding: 6px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5019607843);
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0;
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card .swiper-pagination-bullet-active {
  background: #ffffff;
  opacity: 1;
}
.service-section-card-idk-1225 .service-section-card-wrapper .service-card .service-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .service-section-card-idk-1225 .service-section-card-wrapper .service-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-section-card-idk-1225 .service-section-card-wrapper .service-card__content, .service-section-card-idk-1225 .service-section-card-wrapper .service-card__media {
    order: initial;
  }
  .service-section-card-idk-1225 .service-section-card-wrapper .service-card .swiper,
  .service-section-card-idk-1225 .service-section-card-wrapper .service-card .swiper-wrapper,
  .service-section-card-idk-1225 .service-section-card-wrapper .service-card .swiper-slide {
    height: 410px;
  }
  .service-section-card-idk-1225 .service-section-card-wrapper .service-card:nth-child(even) .service-card__content {
    order: 1;
  }
  .service-section-card-idk-1225 .service-section-card-wrapper .service-card:nth-child(even) .service-card__media {
    order: 2;
  }
  .service-section-card-idk-1225 .service-card__media {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .service-section-card-idk-1225 {
    padding: 40px 0 0 0;
  }
  .service-section-card-idk-1225 .container {
    padding: 0;
  }
  .service-section-card-idk-1225 .service-card {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 0;
  }
  .service-section-card-idk-1225 .service-card__content {
    padding: 0 20px;
    gap: 20px;
  }
  .service-section-card-idk-1225 .service-card .swiper,
  .service-section-card-idk-1225 .service-card .swiper-wrapper,
  .service-section-card-idk-1225 .service-card .swiper-slide {
    border-radius: 0 !important;
  }
}
.three-cards-section-idk-1225 {
  padding: 0 0 120px;
  width: 100%;
  overflow: hidden;
}
.three-cards-section-idk-1225 .cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 104px;
  width: 100%;
}
.three-cards-section-idk-1225 h6 {
  font-size: 64px;
  font-weight: var(--weight-light);
  line-height: 1;
  padding: 0;
  margin: 0 0 16px;
}
.three-cards-section-idk-1225 .card-text * {
  padding: 0;
  margin: 0 0 20px;
  font-size: 20px;
  color: #717171;
}
.three-cards-section-idk-1225 .cards-left {
  display: flex;
  flex-direction: column;
  gap: 137px;
}
.three-cards-section-idk-1225 .cards-right {
  margin-top: 384px;
}
.three-cards-section-idk-1225 .card {
  width: 100%;
  height: 624px;
  display: flex;
  flex-direction: column;
}
.three-cards-section-idk-1225 .image-card-swiper {
  width: 416px;
  max-width: 416px;
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 32px !important;
  margin: 0;
}
.three-cards-section-idk-1225 .image-card-swiper .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
.three-cards-section-idk-1225 .image-card-swiper .swiper-slide {
  flex: 0 0 100%;
  width: 100% !important;
  height: 100%;
}
.three-cards-section-idk-1225 .image-card-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
}
.three-cards-section-idk-1225 .image-card-swiper .swiper-pagination {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  padding: 6px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: fit-content;
}
.three-cards-section-idk-1225 .image-card-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
  margin: 0;
}
.three-cards-section-idk-1225 .image-card-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 1024px) {
  .three-cards-section-idk-1225 .image-card-swiper {
    width: 300px;
    max-width: 300px;
    aspect-ratio: 416/500;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    margin: 0;
  }
  .three-cards-section-idk-1225 .cards-left,
  .three-cards-section-idk-1225 .cards-right {
    width: fit-content;
  }
  .three-cards-section-idk-1225 .cards-grid {
    column-gap: 48px !important;
  }
}
@media (max-width: 768px) {
  .three-cards-section-idk-1225 {
    padding: 0 0 80px;
  }
  .three-cards-section-idk-1225 .cards-grid {
    grid-template-columns: 1fr;
    row-gap: 80px;
  }
  .three-cards-section-idk-1225 .cards-left,
  .three-cards-section-idk-1225 .cards-left .card,
  .three-cards-section-idk-1225 .cards-right,
  .three-cards-section-idk-1225 .cards-right .card {
    width: 100%;
  }
  .three-cards-section-idk-1225 .cards-left {
    gap: 80px;
  }
  .three-cards-section-idk-1225 .image-card-swiper {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .three-cards-section-idk-1225 h6 {
    font-size: 60px;
  }
  .three-cards-section-idk-1225 .card {
    height: fit-content;
  }
  .three-cards-section-idk-1225 .card-text * {
    margin: 0 0 32px;
    font-size: 16px;
  }
  .three-cards-section-idk-1225 .cards-right {
    margin-top: 0;
  }
  .three-cards-section-idk-1225 .image-card-swiper {
    height: 410px;
    border-radius: 0;
  }
}
.partners-section-idk-1225 {
  padding: 120px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.partners-section-idk-1225 .container h2 {
  font-weight: var(--weight-medium);
}
.partners-section-idk-1225 .container h6 {
  margin-top: 16px;
  font-weight: var(--weight-regular);
  color: #717171;
}
.partners-section-idk-1225 .partners-bar {
  display: block;
  background: #28a564;
  max-height: 39px;
  min-height: 30px;
  max-width: 560px;
  width: 30%;
  aspect-ratio: 560/39;
}
.partners-section-idk-1225 .partners-bar--top {
  position: absolute;
  right: 0;
  top: 156px;
}
.partners-section-idk-1225 .partners-bar--bottom {
  margin: 30px 0 0;
}
.partners-section-idk-1225 .partners-carousel {
  position: relative;
  margin-top: 32px;
  overflow: hidden;
}
.partners-section-idk-1225 .partners-track {
  display: flex;
  gap: 10px;
  will-change: transform;
  transition: transform 0.6s ease;
}
.partners-section-idk-1225 .partner-item {
  flex: 0 0 auto;
  width: 275px;
  height: 162px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.partners-section-idk-1225 .partner-item img {
  max-width: 100%;
  height: auto;
  display: block;
}
.partners-section-idk-1225 .partners-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
  z-index: 2;
}
.partners-section-idk-1225 .partners-gradient--left {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.partners-section-idk-1225 .partners-gradient--right {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.partners-section-idk-1225 .partners-carousel {
  cursor: grab;
}
.partners-section-idk-1225 .partners-carousel.is-dragging {
  cursor: grabbing;
}

@media (max-width: 767px) {
  .partners-section-idk-1225 {
    padding: 80px 0;
  }
  .partners-section-idk-1225 .partners-carousel {
    margin-top: 20px;
  }
  .partners-section-idk-1225 .partners-bar {
    display: none;
  }
}
.units-carousel-idk-1225 {
  padding: 90px 0;
}
.units-carousel-idk-1225 .container-fluid {
  max-width: 1440px;
}
.units-carousel-idk-1225 .units-title {
  margin-bottom: 40px;
  font-weight: var(--weight-medium);
}
.units-carousel-idk-1225 .units-carousel {
  display: flex;
  align-items: center;
  gap: 40px;
}
.units-carousel-idk-1225 .units-viewport {
  overflow: hidden;
  width: 100%;
}
.units-carousel-idk-1225 .units-track {
  display: flex;
  transition: transform 0.6s ease;
}
.units-carousel-idk-1225 .unit-card {
  min-width: 100%;
  height: 560px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.units-carousel-idk-1225 .unit-content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  color: #ffffff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.units-carousel-idk-1225 .unit-content h2 {
  font-weight: var(--weight-medium);
}
.units-carousel-idk-1225 .unit-content .primary-btn-green {
  width: fit-content;
  padding: 14px 20px;
  font-weight: var(--weight-medium);
}
.units-carousel-idk-1225 .unit-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.units-carousel-idk-1225 .unit-info li {
  color: #c9c9c9;
}
.units-carousel-idk-1225 .unit-info li p {
  font-size: 14px;
}
.units-carousel-idk-1225 .unit-info li p .number-emphasis {
  font-size: 16px;
  color: #ffffff;
}
.units-carousel-idk-1225 .units-arrow {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  background-color: #28a564;
  border-radius: 99999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.units-carousel-idk-1225 .units-arrow img {
  width: 32px;
  height: 32px;
}
.units-carousel-idk-1225 .units-arrow:hover {
  background-color: #2ac675;
}
.units-carousel-idk-1225 .units-arrow:disabled {
  background-color: transparent;
  border: 1px solid #28a564;
  cursor: not-allowed;
}
.units-carousel-idk-1225 .units-arrow:disabled img {
  width: 32px;
  height: 32px;
  filter: invert(53%) sepia(16%) saturate(1926%) hue-rotate(96deg) brightness(96%) contrast(82%);
}
.units-carousel-idk-1225 .units-counter {
  background: rgba(0, 0, 0, 0.2705882353);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 100px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
  width: fit-content;
}
.units-carousel-idk-1225 .arrows-mobile {
  display: none;
}

@media (max-width: 1440px) {
  .units-carousel-idk-1225 .units-title {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .units-carousel-idk-1225 {
    padding: 130px 0 40px;
  }
  .units-carousel-idk-1225 .units-title {
    margin-bottom: 20px;
  }
  .units-carousel-idk-1225 .units-arrow {
    display: none;
  }
  .units-carousel-idk-1225 .unit-card {
    height: 500px;
    border-radius: 24px;
  }
  .units-carousel-idk-1225 .units-counter {
    margin: 0 auto;
  }
  .units-carousel-idk-1225 .arrows-mobile {
    display: flex;
    padding: 20px;
    justify-content: center;
    gap: 30px;
  }
  .units-carousel-idk-1225 .arrows-mobile .units-arrow {
    display: flex;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    background-color: #00194c;
  }
  .units-carousel-idk-1225 .arrows-mobile .units-arrow:hover {
    background-color: #4599fc;
  }
  .units-carousel-idk-1225 .arrows-mobile .units-arrow:disabled {
    background-color: transparent;
    border: 1px solid #c9c9c9;
    cursor: not-allowed;
  }
  .units-carousel-idk-1225 .arrows-mobile .units-arrow:disabled img {
    filter: invert(45%) sepia(0%) saturate(0%) hue-rotate(153deg) brightness(97%) contrast(87%);
  }
}
.find-unit-section-idk-1225 {
  padding: 30px 20px 120px;
}
.find-unit-section-idk-1225 .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.find-unit-section-idk-1225 h2 {
  text-align: center;
}
.find-unit-section-idk-1225 .filters {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.find-unit-section-idk-1225 .filters .select-wrapper {
  position: relative;
  width: 240px;
}
.find-unit-section-idk-1225 .filters .select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("/wp-content/themes/hbr-idkbrasil-theme-wp/assets/img/arrow-select.svg");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.find-unit-section-idk-1225 .filters .select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background: #fafafa;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
  padding: 16px;
  color: #717171;
  width: 240px;
  max-width: 100%;
}
.find-unit-section-idk-1225 .primary-btn-blue {
  padding: 16px 40px;
  border-radius: 12px;
  height: 100%;
}
.find-unit-section-idk-1225 #map-wrapper {
  margin-top: 32px;
  width: 100%;
}
.find-unit-section-idk-1225 #map-iframe iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  border: 1px solid #d4d4d4;
  border-radius: 22px;
  max-width: 1216px;
}

@media (max-width: 768px) {
  .find-unit-section-idk-1225 {
    padding: 40px 20px 80px;
  }
  .find-unit-section-idk-1225 .container {
    gap: 24px;
  }
  .find-unit-section-idk-1225 .filters {
    flex-direction: column;
    width: 100%;
  }
  .find-unit-section-idk-1225 .filters .select-wrapper,
  .find-unit-section-idk-1225 .filters .select-wrapper select,
  .find-unit-section-idk-1225 .filters .primary-btn-blue {
    width: 100%;
  }
  .find-unit-section-idk-1225 #map-iframe iframe {
    height: 500px;
    border-radius: 24px;
    max-width: 100%;
  }
}
.service-section-opportunities-card-idk-1225 {
  padding: 120px 20px;
  overflow-x: hidden;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 102px;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card__content, .service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card__media {
  z-index: 2;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 525px;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card__media {
  order: 2;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card__media img {
  width: 100%;
  max-width: 592px;
  height: 582px;
  min-height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 32px;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card__title {
  color: #000000;
  font-weight: var(--weight-medium);
  line-height: 1.2;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card__text {
  color: #717171;
  font-weight: var(--weight-regular);
  line-height: 1.5;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 116px;
  height: 230px;
  background: url("../../assets/img/circle-vector.svg") no-repeat center/contain;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card:nth-child(odd)::after {
  right: calc(-50vw + 608px);
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card:nth-child(4n+3)::after {
  right: auto;
  left: calc(-50vw + 608px);
  transform: rotate(180deg);
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card:nth-child(even)::after {
  display: none;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card:nth-child(even) .service-card__content {
  order: 2;
}
.service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card:nth-child(even) .service-card__media {
  order: 1;
}

@media (max-width: 1460px) {
  .service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .service-section-opportunities-card-idk-1225 {
    border-top: 1px solid #d4d4d4;
    padding: 80px 0 0;
  }
  .service-section-opportunities-card-idk-1225 .container {
    padding: 0;
  }
  .service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 40px;
  }
  .service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card__content, .service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card__media {
    order: initial;
  }
  .service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card__content {
    padding: 0 20px;
    max-width: 100%;
  }
  .service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card__media img {
    max-width: 100%;
    height: 410px;
    border-radius: 0;
  }
  .service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card:nth-child(even) .service-card__content {
    order: 1;
  }
  .service-section-opportunities-card-idk-1225 .service-section-card-wrapper .service-card:nth-child(even) .service-card__media {
    order: 2;
  }
  .service-section-opportunities-card-idk-1225 .service-card__media {
    width: 100%;
  }
}
.numbers-section-hbr-malls-idk-1225 {
  margin: 138px 0 80px;
  padding: 80px 20px;
  background-color: #fafafa;
}
.numbers-section-hbr-malls-idk-1225 .container {
  max-width: 1218px;
}
.numbers-section-hbr-malls-idk-1225 .numbers-section-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}
.numbers-section-hbr-malls-idk-1225 .number-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}
.numbers-section-hbr-malls-idk-1225 .number {
  font-size: 80px;
  line-height: 1;
  font-family: Aktiv Grotesk;
  font-weight: var(--weight-light);
  color: #000000;
}
.numbers-section-hbr-malls-idk-1225 .description {
  font-weight: var(--weight-regular);
  color: #717171;
}

@media (max-width: 768px) {
  .numbers-section-hbr-malls-idk-1225 {
    margin: 0;
    padding: 80px 20px;
  }
  .numbers-section-hbr-malls-idk-1225 .numbers-section-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .numbers-section-hbr-malls-idk-1225 .number {
    font-size: 64px;
  }
  .numbers-section-hbr-malls-idk-1225 .number-item {
    width: 100%;
    gap: 12px;
    border-bottom: 1px solid #d4d4d4;
    padding: 60px 0;
  }
  .numbers-section-hbr-malls-idk-1225 .number-item:first-child {
    padding-top: 0;
  }
  .numbers-section-hbr-malls-idk-1225 .number-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.malls-section-hbr-malls-idk-1225 {
  position: relative;
  padding: 80px calc(15.15% + 10px);
}
.malls-section-hbr-malls-idk-1225 .container {
  max-width: 1216px;
  padding: 0;
}
.malls-section-hbr-malls-idk-1225 .section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 24px;
}
.malls-section-hbr-malls-idk-1225 .shopping-tabs-wrapper {
  overflow-x: auto;
  margin-bottom: 80px;
  justify-content: center;
  display: flex;
  padding: 0 20px;
}
.malls-section-hbr-malls-idk-1225 .shopping-tabs {
  display: flex;
  gap: 8px;
  width: max-content;
  padding: 0;
}
.malls-section-hbr-malls-idk-1225 .shopping-tab {
  white-space: nowrap;
  padding: 20px 16px;
  border-radius: 12px;
  background: #f3f3f3;
  color: #929292;
  cursor: pointer;
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 1.2;
  transition: 0.3s ease all;
}
.malls-section-hbr-malls-idk-1225 .shopping-tab:hover, .malls-section-hbr-malls-idk-1225 .shopping-tab:focus, .malls-section-hbr-malls-idk-1225 .shopping-tab:active {
  background: #d4d4d4;
}
.malls-section-hbr-malls-idk-1225 .shopping-tab.is-active {
  background: #00194c;
  color: #ffffff;
  box-shadow: 0px -4px 8.2px 0px rgba(255, 255, 255, 0.2509803922) inset;
}
.malls-section-hbr-malls-idk-1225 .shopping-content {
  display: none;
}
.malls-section-hbr-malls-idk-1225 .shopping-content.is-active {
  display: block;
}
.malls-section-hbr-malls-idk-1225 .shopping-grid {
  display: grid;
  grid-template-columns: 60.25% calc(39.75% - 20px);
  gap: 20px;
  align-items: start;
  justify-content: center;
}
.malls-section-hbr-malls-idk-1225 .shopping-image img {
  width: 100%;
  height: 643px;
  border-radius: 24px;
  display: block;
  object-fit: cover;
}
.malls-section-hbr-malls-idk-1225 .shopping-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.malls-section-hbr-malls-idk-1225 .shopping-title {
  margin-bottom: 2px;
}
.malls-section-hbr-malls-idk-1225 .shopping-description {
  display: flex;
  flex-direction: column;
  gap: 19px;
  color: #717171;
  font-weight: var(--weight-regular);
}
.malls-section-hbr-malls-idk-1225 .shopping-description * {
  font-size: 14px;
}
.malls-section-hbr-malls-idk-1225 .shopping-description .numer-emphasis {
  font-size: 16px;
  color: #000000;
}
.malls-section-hbr-malls-idk-1225 .primary-btn-blue {
  font-weight: var(--weight-medium);
  width: max-content;
}
.malls-section-hbr-malls-idk-1225 .shopping-map {
  height: 100%;
}
.malls-section-hbr-malls-idk-1225 .shopping-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 0;
  filter: grayscale(100%);
}
.malls-section-hbr-malls-idk-1225 .shopping-shape {
  position: absolute;
  width: 15.15%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  border: 34px solid #e59177;
  opacity: 0.8;
}
.malls-section-hbr-malls-idk-1225 .shopping-shape-left {
  left: -6.8%;
  top: 293px;
}
.malls-section-hbr-malls-idk-1225 .shopping-shape-right {
  right: -6.8%;
  bottom: 80px;
}
@media (max-width: 1375px) {
  .malls-section-hbr-malls-idk-1225 .shopping-shape {
    border-width: 28px;
  }
}
@media (max-width: 1024px) {
  .malls-section-hbr-malls-idk-1225 .shopping-shape {
    border-width: 22px;
  }
}
@media (max-width: 960px) {
  .malls-section-hbr-malls-idk-1225 {
    padding: 80px 20px 40px;
  }
  .malls-section-hbr-malls-idk-1225 .section-title {
    font-size: 32px;
  }
  .malls-section-hbr-malls-idk-1225 .shopping-tabs-wrapper {
    margin-bottom: 32px;
    justify-content: flex-start;
  }
  .malls-section-hbr-malls-idk-1225 .shopping-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .malls-section-hbr-malls-idk-1225 .shopping-tabs {
    padding: 0;
  }
  .malls-section-hbr-malls-idk-1225 .shopping-image img {
    height: 490px;
  }
  .malls-section-hbr-malls-idk-1225 .shopping-title {
    font-size: 24px;
    margin-bottom: 0;
  }
  .malls-section-hbr-malls-idk-1225 .primary-btn-blue {
    margin-bottom: 4px;
  }
  .malls-section-hbr-malls-idk-1225 .shopping-map {
    height: 287px;
  }
  .malls-section-hbr-malls-idk-1225 .shopping-shape {
    display: none;
  }
}

.comercialization-section-hbr-malls-idk-1225 {
  margin-top: 40px;
  background: #fafafa;
  padding: 80px 20px;
}
.comercialization-section-hbr-malls-idk-1225 .comercialization-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.comercialization-section-hbr-malls-idk-1225 .section-title {
  font-size: 64px;
  font-weight: var(--weight-medium);
}
.comercialization-section-hbr-malls-idk-1225 .section-description {
  font-weight: var(--weight-regular);
  max-width: 624px;
  color: #717171;
  text-align: center;
}
.comercialization-section-hbr-malls-idk-1225 .primary-btn-blue {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .comercialization-section-hbr-malls-idk-1225 .section-title {
    font-size: 32px;
  }
  .comercialization-section-hbr-malls-idk-1225 .section-description {
    max-width: 354px;
  }
}

.key-features-section-idk-1225 {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}
.key-features-section-idk-1225 .text-container {
  border-top: 1px solid #d4d4d4;
  width: 50%;
  display: flex;
  justify-content: center;
}
.key-features-section-idk-1225 .text-wrapper {
  max-width: 466px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-left: 58px;
  justify-content: center;
}
.key-features-section-idk-1225 .description {
  color: #717171;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.key-features-section-idk-1225 .primary-btn-blue {
  width: fit-content;
}
.key-features-section-idk-1225 .topics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.key-features-section-idk-1225 .topic {
  display: flex;
  gap: 10px;
  align-items: center;
}
.key-features-section-idk-1225 .topic p {
  font-size: 16px;
  font-weight: var(--weight-medium);
  line-height: 1.2;
}
.key-features-section-idk-1225 .image-wrapper {
  width: 50%;
  height: 900px;
}
.key-features-section-idk-1225 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.key-features-section-idk-1225 img.circle-vector {
  position: absolute;
  bottom: 34px;
  left: 0;
  z-index: 1;
  width: 160px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .key-features-section-idk-1225 {
    flex-direction: column;
    gap: 40px;
  }
  .key-features-section-idk-1225 .text-container {
    width: 100%;
    padding: 40px 20px 0;
  }
  .key-features-section-idk-1225 .text-wrapper {
    margin: 0;
    gap: 20px;
  }
  .key-features-section-idk-1225 .image-wrapper {
    width: 100%;
    height: 500px;
  }
  .key-features-section-idk-1225 img.circle-vector {
    display: none;
  }
}

.units-carousel-triple-a-idk-1225 {
  padding: 120px 0 113px;
}
.units-carousel-triple-a-idk-1225 .container-fluid {
  max-width: 1440px;
}
.units-carousel-triple-a-idk-1225 .units-title {
  margin-bottom: 40px;
  font-weight: var(--weight-medium);
  text-align: center;
}
.units-carousel-triple-a-idk-1225 .units-carousel {
  display: flex;
  align-items: center;
  gap: 40px;
}
.units-carousel-triple-a-idk-1225 .units-viewport {
  overflow: hidden;
  width: 100%;
}
.units-carousel-triple-a-idk-1225 .units-track {
  display: flex;
  transition: transform 0.6s ease;
}
.units-carousel-triple-a-idk-1225 .unit-card {
  min-width: 100%;
  height: 560px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.units-carousel-triple-a-idk-1225 .unit-content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  color: #ffffff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.units-carousel-triple-a-idk-1225 .unit-content h2 {
  font-weight: var(--weight-medium);
}
.units-carousel-triple-a-idk-1225 .unit-content .primary-btn-white {
  width: fit-content;
  padding: 14px 20px;
  font-weight: var(--weight-medium);
  box-shadow: none;
}
.units-carousel-triple-a-idk-1225 .unit-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.units-carousel-triple-a-idk-1225 .unit-info li {
  color: #c9c9c9;
}
.units-carousel-triple-a-idk-1225 .unit-info li p {
  font-size: 14px;
}
.units-carousel-triple-a-idk-1225 .unit-info li p .number-emphasis {
  font-size: 16px;
  color: #ffffff;
}
.units-carousel-triple-a-idk-1225 .units-arrow {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  background-color: #00194c;
  border-radius: 99999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.units-carousel-triple-a-idk-1225 .units-arrow img {
  width: 32px;
  height: 32px;
}
.units-carousel-triple-a-idk-1225 .units-arrow:hover {
  background-color: #4599fc;
}
.units-carousel-triple-a-idk-1225 .units-arrow:disabled {
  background-color: transparent;
  border: 1px solid #c9c9c9;
  cursor: not-allowed;
}
.units-carousel-triple-a-idk-1225 .units-arrow:disabled img {
  width: 32px;
  height: 32px;
  filter: invert(91%) sepia(1%) saturate(123%) hue-rotate(89deg) brightness(7) contrast(90%);
}
.units-carousel-triple-a-idk-1225 .units-counter {
  background: rgba(0, 0, 0, 0.2705882353);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 100px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
  width: fit-content;
}
.units-carousel-triple-a-idk-1225 .arrows-mobile {
  display: none;
}

@media (max-width: 991px) {
  .units-carousel-triple-a-idk-1225 {
    padding: 80px 0;
  }
  .units-carousel-triple-a-idk-1225 .units-title {
    margin-bottom: 20px;
  }
  .units-carousel-triple-a-idk-1225 .units-arrow {
    display: none;
  }
  .units-carousel-triple-a-idk-1225 .unit-card {
    height: 500px;
    border-radius: 24px;
  }
  .units-carousel-triple-a-idk-1225 .units-counter {
    margin: 0 auto;
  }
  .units-carousel-triple-a-idk-1225 .arrows-mobile {
    display: flex;
    padding: 20px;
    justify-content: center;
    gap: 30px;
  }
  .units-carousel-triple-a-idk-1225 .arrows-mobile .units-arrow {
    display: flex;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    background-color: #00194c;
  }
  .units-carousel-triple-a-idk-1225 .arrows-mobile .units-arrow:hover {
    background-color: #4599fc;
  }
  .units-carousel-triple-a-idk-1225 .arrows-mobile .units-arrow:disabled {
    background-color: transparent;
    border: 1px solid #c9c9c9;
    cursor: not-allowed;
  }
  .units-carousel-triple-a-idk-1225 .arrows-mobile .units-arrow:disabled img {
    filter: invert(45%) sepia(0%) saturate(0%) hue-rotate(153deg) brightness(97%) contrast(87%);
  }
}
.not-found-page-idk-1225 {
  height: 100vh;
}
.not-found-page-idk-1225 .content-section {
  height: 100%;
  width: 100%;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
}
.not-found-page-idk-1225 .content-wrapper {
  width: 100%;
  padding: 40px 40px 40px 135px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.not-found-page-idk-1225 .content-wrapper h1 {
  font-size: 64px;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  max-width: 500px;
}
.not-found-page-idk-1225 .content-wrapper h6 {
  color: #717171;
}
.not-found-page-idk-1225 .content-wrapper .primary-btn-blue {
  margin-top: 12px;
  width: fit-content;
  gap: 7px;
}
.not-found-page-idk-1225 .shape-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #efefef;
  overflow: hidden;
}
.not-found-page-idk-1225 .shape-container h1 {
  color: #00194c;
  font-size: 220px;
  line-height: 1.2;
  font-weight: var(--weight-regular);
  width: max-content;
}
.not-found-page-idk-1225 .shape-container .not-found-shape {
  position: absolute;
  width: 38.3%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  border: 34px solid #00194c;
  opacity: 0.8;
}
.not-found-page-idk-1225 .shape-container .not-found-shape-left {
  left: -18.7%;
  bottom: 12px;
}
.not-found-page-idk-1225 .shape-container .not-found-shape-right {
  right: -18.7%;
  top: 12px;
}
@media (max-width: 1280px) {
  .not-found-page-idk-1225 .content-wrapper {
    padding: 40px;
  }
  .not-found-page-idk-1225 .content-wrapper h1 {
    font-size: 50px;
  }
  .not-found-page-idk-1225 .shape-container h1 {
    font-size: 180px;
  }
}
@media (max-width: 768px) {
  .not-found-page-idk-1225 {
    height: fit-content;
  }
  .not-found-page-idk-1225 .content-section {
    margin-top: 106px;
    flex-direction: column;
  }
  .not-found-page-idk-1225 .content-wrapper {
    padding: 80px 20px;
    gap: 12px;
  }
  .not-found-page-idk-1225 .content-wrapper h1 {
    font-size: 32px;
    font-weight: var(--weight-medium);
  }
  .not-found-page-idk-1225 .content-wrapper .primary-btn-blue {
    margin-top: 10px;
  }
  .not-found-page-idk-1225 .shape-container {
    background: url("../img/404-background.webp") no-repeat;
    background-size: cover;
    min-height: 370px;
  }
  .not-found-page-idk-1225 .shape-container h1 {
    font-size: 90px;
    color: #ffffff;
  }
  .not-found-page-idk-1225 .shape-container .not-found-shape {
    display: none;
  }
}

.terms-page-idk-1225 {
  margin-top: 98px;
  padding: 60px 0 120px;
  /* MOBILE */
}
.terms-page-idk-1225 .mobile-only {
  display: none;
}
.terms-page-idk-1225 .desktop-only {
  display: block;
}
.terms-page-idk-1225 .terms-grid {
  display: grid;
  grid-template-columns: 1fr 384px;
  gap: 40px;
  align-items: start;
}
.terms-page-idk-1225 .terms-updated {
  font-size: 18px;
  color: #717171;
  font-weight: var(--weight-regular);
  line-height: 1.5;
  margin-bottom: 24px;
}
.terms-page-idk-1225 .terms-intro {
  margin-bottom: 64px;
}
.terms-page-idk-1225 .terms-intro h1 {
  margin-bottom: 16px;
}
.terms-page-idk-1225 .terms-section {
  scroll-margin-top: 110px;
  margin-bottom: 80px;
}
.terms-page-idk-1225 .terms-section h2 {
  margin-bottom: 12px;
}
.terms-page-idk-1225 .terms-section ul {
  list-style: disc;
  margin-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.terms-page-idk-1225 .terms-section a {
  text-decoration: underline;
}
.terms-page-idk-1225 .terms-section table {
  border: 1px solid;
  margin-top: 20px;
}
.terms-page-idk-1225 .terms-section table th,
.terms-page-idk-1225 .terms-section table td {
  border: 1px solid;
  padding: 8px;
}
.terms-page-idk-1225 .terms-section table tr td:first-child {
  background-color: #f3f3f3;
  font-weight: var(--weight-medium);
  text-align: center;
}
.terms-page-idk-1225 .terms-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #717171;
  line-height: 1.6;
}
.terms-page-idk-1225 .terms-sidebar {
  position: sticky;
  top: 120px;
  align-self: flex-start;
}
.terms-page-idk-1225 .terms-content {
  max-width: 696px;
}
.terms-page-idk-1225 .terms-sidebar-box {
  border: 1px solid #d4d4d4;
  background: #fafafa;
  border-radius: 19px;
  padding: 24px;
}
.terms-page-idk-1225 .terms-sidebar-box h5 {
  font-weight: var(--weight-medium);
  margin-bottom: 32px;
}
.terms-page-idk-1225 .terms-sidebar-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.terms-page-idk-1225 .terms-sidebar-box li {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: start;
}
.terms-page-idk-1225 .terms-sidebar-box img {
  width: 24px;
  height: 24px;
}
.terms-page-idk-1225 .terms-sidebar-box a {
  font-size: 16px;
  color: #717171;
  font-weight: var(--weight-regular);
  text-decoration: none;
  line-height: 1.2;
  display: flex;
  margin-top: 3px;
}
.terms-page-idk-1225 .terms-sidebar-box a:hover {
  color: #00194c;
}
.terms-page-idk-1225 .terms-sidebar-box a.active {
  color: #000000;
  font-weight: var(--weight-medium);
}
@media (max-width: 960px) {
  .terms-page-idk-1225 {
    padding: 44px 40px 0;
  }
  .terms-page-idk-1225 .desktop-only {
    display: none;
  }
  .terms-page-idk-1225 .mobile-only {
    display: block;
  }
  .terms-page-idk-1225 .terms-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr;
  }
  .terms-page-idk-1225 .terms-intro {
    margin-bottom: 40px;
  }
  .terms-page-idk-1225 .terms-sidebar {
    position: static;
    margin-top: 0;
    width: 100%;
    margin-bottom: 80px;
  }
  .terms-page-idk-1225 .terms-content {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .terms-page-idk-1225 {
    padding: 44px 20px 0;
  }
}

.enterprise-single-idk-1225 .enterprise-gallery {
  margin-top: -90px;
  padding: 170px 20px 80px;
  text-align: center;
}
.enterprise-single-idk-1225 .enterprise-gallery .title {
  margin-bottom: 40px;
  font-weight: var(--weight-medium);
}
.enterprise-single-idk-1225 .enterprise-gallery .enterprise-gallery-swiper {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1408px;
  margin: 0 auto;
}
.enterprise-single-idk-1225 .enterprise-gallery .swiper {
  overflow: hidden;
  width: 100%;
}
.enterprise-single-idk-1225 .enterprise-gallery .swiper-wrapper {
  display: flex;
}
.enterprise-single-idk-1225 .enterprise-gallery .swiper-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 96px;
}
.enterprise-single-idk-1225 .enterprise-gallery .swiper-slide img {
  width: 100%;
  max-width: 1216px;
  height: 560px;
  object-fit: cover;
  border-radius: 22px;
}
.enterprise-single-idk-1225 .enterprise-gallery .enterprise-arrow {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  background-color: #00194c;
  border-radius: 99999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.enterprise-single-idk-1225 .enterprise-gallery .enterprise-arrow img {
  width: 32px;
  height: 32px;
}
.enterprise-single-idk-1225 .enterprise-gallery .enterprise-arrow:hover {
  background-color: #4599fc;
}
.enterprise-single-idk-1225 .enterprise-gallery .enterprise-arrow.swiper-button-disabled {
  background-color: transparent;
  border: 1px solid #c9c9c9;
  cursor: not-allowed;
}
.enterprise-single-idk-1225 .enterprise-gallery .enterprise-arrow.swiper-button-disabled img {
  filter: invert(91%) sepia(1%) saturate(123%) hue-rotate(89deg) brightness(7) contrast(90%);
}
.enterprise-single-idk-1225 .enterprise-gallery .arrows-mobile {
  display: none;
}
.enterprise-single-idk-1225 .enterprise-gallery .swiper-button-prev::after,
.enterprise-single-idk-1225 .enterprise-gallery .swiper-button-next::after {
  display: none !important;
}
.enterprise-single-idk-1225 .enterprise-gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.enterprise-single-idk-1225 .enterprise-gallery .swiper-pagination {
  margin: 24px auto 0;
  position: relative;
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.2705882353);
  padding: 4px 8px;
  border-radius: 999px;
  width: fit-content;
}
.enterprise-single-idk-1225 .enterprise-gallery .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #ffffff;
  opacity: 0.5;
  margin: 0 !important;
}
.enterprise-single-idk-1225 .enterprise-gallery .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.enterprise-single-idk-1225 .enterprise-location {
  padding: 40px 0 120px;
  position: relative;
  /* DECORAÇÕES */
}
.enterprise-single-idk-1225 .enterprise-location h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: var(--weight-medium);
}
.enterprise-single-idk-1225 .enterprise-location .location-wrapper {
  position: relative;
  max-width: 1636px;
  margin: 0 auto;
  padding: 0 210px;
}
.enterprise-single-idk-1225 .enterprise-location .location-map {
  height: 560px;
  border-radius: 22px;
  overflow: hidden;
}
.enterprise-single-idk-1225 .enterprise-location .location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.enterprise-single-idk-1225 .enterprise-location .location-line {
  position: absolute;
  left: 131px;
  top: 0;
  width: 39px;
  height: 100%;
  background: #ffdf80;
}
.enterprise-single-idk-1225 .enterprise-location img.circle-vector {
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 1;
  width: 160px;
  height: auto;
  object-fit: contain;
}
.enterprise-single-idk-1225 .contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.enterprise-single-idk-1225 .contact-section .contact-col {
  flex: 1;
}
.enterprise-single-idk-1225 .contact-section .contact-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #d4d4d4;
  height: 100%;
  width: 100%;
  align-items: center;
}
.enterprise-single-idk-1225 .contact-section .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  max-width: 552px;
  padding: 0 20px 0 72px;
}
.enterprise-single-idk-1225 .contact-section .contact-form h2 {
  font-size: 42px;
  color: #000000;
  font-weight: var(--weight-medium);
}
.enterprise-single-idk-1225 .contact-section .contact-form p {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: var(--weight-regular);
  color: #717171;
  line-height: 1.5;
}
.enterprise-single-idk-1225 .contact-section .contact-form .input-group {
  position: relative;
  margin-bottom: 20px;
}
.enterprise-single-idk-1225 .contact-section .contact-form .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}
.enterprise-single-idk-1225 .contact-section .contact-form input {
  width: 100%;
  padding: 16px 20px 16px 54px;
  font-size: 18px;
  font-weight: var(--weight-regular);
  resize: none;
  color: #000000;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
}
.enterprise-single-idk-1225 .contact-section .contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: var(--weight-regular);
  resize: none;
  color: #8f9ab0;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
}
.enterprise-single-idk-1225 .contact-section .contact-form input:focus,
.enterprise-single-idk-1225 .contact-section .contact-form textarea:focus {
  outline: none;
  border-color: #00194c;
}
.enterprise-single-idk-1225 .contact-section .contact-form input::placeholder,
.enterprise-single-idk-1225 .contact-section .contact-form textarea::placeholder {
  color: #717171;
}
.enterprise-single-idk-1225 .contact-section .contact-form textarea {
  height: 180px;
}
.enterprise-single-idk-1225 .contact-section .contact-form .checkbox-line {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #717171;
  font-weight: var(--weight-regular);
  margin: 12px 0 32px;
}
.enterprise-single-idk-1225 .contact-section .contact-form .checkbox-line input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.enterprise-single-idk-1225 .contact-section .contact-form .checkbox-line .check-icon {
  width: 24px;
  height: 24px;
  border: 2px solid #00194c;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  transition: 0.2s ease;
  cursor: pointer;
}
.enterprise-single-idk-1225 .contact-section .contact-form .checkbox-line input:checked + .check-icon {
  border-color: #00194c;
  background-color: #00194c;
  background-image: url("../img/check-icon.svg");
}
.enterprise-single-idk-1225 .contact-section .contact-form .checkbox-line a {
  color: inherit;
  text-decoration: underline;
}
.enterprise-single-idk-1225 .contact-section .contact-form .send-btn {
  width: 100%;
  padding: 16px;
  background: #00194c;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.3s ease;
}
.enterprise-single-idk-1225 .contact-section .contact-form .send-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.enterprise-single-idk-1225 .contact-section .contact-form .send-btn:hover:not(:disabled) {
  background: #4599fc;
  color: #00194c;
}
.enterprise-single-idk-1225 .contact-section .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.enterprise-single-idk-1225 .contact-section .image-wrapper img {
  width: 100%;
  height: 900px;
  object-fit: cover;
}
@media (max-width: 1120px) {
  .enterprise-single-idk-1225 .enterprise-location .location-wrapper {
    padding: 0 160px;
  }
  .enterprise-single-idk-1225 .enterprise-location .location-line {
    left: 90px;
  }
  .enterprise-single-idk-1225 .enterprise-location img.circle-vector {
    right: 10px;
    width: 120px;
  }
}
@media (max-width: 960px) {
  .enterprise-single-idk-1225 .enterprise-gallery {
    margin-top: -106px;
    padding: 186px 20px 80px;
  }
  .enterprise-single-idk-1225 .enterprise-gallery .container {
    max-width: 100%;
    padding: 0;
  }
  .enterprise-single-idk-1225 .enterprise-gallery .title {
    max-width: 300px;
    margin: 0 auto 32px;
  }
  .enterprise-single-idk-1225 .enterprise-gallery .swiper-slide {
    padding: 0;
  }
  .enterprise-single-idk-1225 .enterprise-gallery .enterprise-gallery-swiper {
    height: 500px;
  }
  .enterprise-single-idk-1225 .enterprise-gallery .enterprise-gallery-swiper > .enterprise-arrow {
    display: none;
  }
  .enterprise-single-idk-1225 .enterprise-gallery .swiper-slide img {
    height: 500px;
    border-radius: 24px;
  }
  .enterprise-single-idk-1225 .enterprise-gallery .arrows-mobile {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0 30px;
    height: 100px;
  }
  .enterprise-single-idk-1225 .enterprise-gallery .arrows-mobile * {
    left: unset;
    right: unset;
    position: relative;
  }
  .enterprise-single-idk-1225 .enterprise-gallery .swiper-pagination {
    margin: 0 auto;
    gap: 8px;
  }
  .enterprise-single-idk-1225 .enterprise-location {
    padding: 0 20px 80px;
  }
  .enterprise-single-idk-1225 .enterprise-location h2 {
    max-width: 350px;
    margin: 0 auto 32px;
  }
  .enterprise-single-idk-1225 .enterprise-location .location-wrapper {
    max-width: 100%;
    padding: 0;
  }
  .enterprise-single-idk-1225 .enterprise-location .location-map {
    height: 500px;
    width: 100%;
    border-radius: 24px;
  }
  .enterprise-single-idk-1225 .enterprise-location .location-line,
  .enterprise-single-idk-1225 .enterprise-location .circle-vector {
    display: none;
  }
  .enterprise-single-idk-1225 .contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .enterprise-single-idk-1225 .contact-section .contact-wrapper {
    padding: 40px 20px;
  }
  .enterprise-single-idk-1225 .contact-section .contact-form {
    padding: 0;
    gap: 20px;
  }
  .enterprise-single-idk-1225 .contact-section .contact-form h2 {
    font-size: 32px;
  }
  .enterprise-single-idk-1225 .contact-section .contact-form p {
    margin-bottom: 0;
  }
  .enterprise-single-idk-1225 .contact-section .image-wrapper img {
    height: 500px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Aktiv Grotesk", sans-serif;
  color: #000000;
}

a {
  text-decoration: none;
  color: inherit;
}

#page #header {
  display: none;
}

.primary-btn-white {
  background: #ffffff;
  color: #00194c;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  box-shadow: 0px -4px 5.8px 0px rgba(0, 25, 76, 0.2509803922) inset;
  font-size: 16px;
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: 0.3s ease all;
}
@media (max-width: 768px) {
  .primary-btn-white {
    width: 100%;
    padding: 14px 20px;
  }
}
.primary-btn-white:hover, .primary-btn-white:focus, .primary-btn-white:active {
  background: #00194c;
  color: #ffffff;
}
.primary-btn-white .primary-btn-white:disabled {
  background: #929292;
  color: #ffffff;
  cursor: not-allowed;
}
.primary-btn-white .primary-btn-white:disabled:hover, .primary-btn-white .primary-btn-white:disabled:focus, .primary-btn-white .primary-btn-white:disabled:active {
  background: #929292;
  color: #ffffff;
}

.primary-btn-blue {
  background: #00194c;
  color: #ffffff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 29px;
  font-size: 16px;
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: 0.3s ease all;
}
@media (max-width: 768px) {
  .primary-btn-blue {
    padding: 14px 20px;
  }
}
.primary-btn-blue:hover, .primary-btn-blue:focus, .primary-btn-blue:active {
  background: #4599fc;
}
.primary-btn-blue:disabled {
  background: #929292;
  color: #ffffff;
  cursor: not-allowed;
}
.primary-btn-blue:disabled:hover, .primary-btn-blue:disabled:focus, .primary-btn-blue:disabled:active {
  background: #929292;
  color: #ffffff;
}

.primary-btn-green {
  background: #28a564;
  color: #ffffff;
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 29px;
  font-size: 16px;
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: 0.3s ease all;
  gap: 6px;
}
@media (max-width: 768px) {
  .primary-btn-green {
    padding: 14px 20px;
  }
}
.primary-btn-green:hover, .primary-btn-green:focus, .primary-btn-green:active {
  background: #2ac675;
}
.primary-btn-green:disabled {
  background: #929292;
  color: #ffffff;
  cursor: not-allowed;
}
.primary-btn-green:disabled:hover, .primary-btn-green:disabled:focus, .primary-btn-green:disabled:active {
  background: #929292;
  color: #ffffff;
}

.secondary-btn-white {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #ffffff;
  font-size: 16px;
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: 0.3s ease all;
}
@media (max-width: 768px) {
  .secondary-btn-white {
    width: 100%;
    padding: 14px 20px;
  }
}
.secondary-btn-white:hover, .secondary-btn-white:focus, .secondary-btn-white:active {
  background: rgba(255, 255, 255, 0.4941176471);
  color: #00194c;
  border-color: #00194c;
}
.secondary-btn-white:disabled {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: not-allowed;
}
.secondary-btn-white:disabled:hover, .secondary-btn-white:disabled:focus, .secondary-btn-white:disabled:active {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.secondary-btn-blue {
  background: transparent;
  color: #00194c;
  border: 1px solid #00194c;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 29px;
  font-size: 16px;
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: 0.3s ease all;
}
@media (max-width: 768px) {
  .secondary-btn-blue {
    padding: 14px 20px;
  }
}
.secondary-btn-blue:hover, .secondary-btn-blue:focus, .secondary-btn-blue:active {
  background: rgba(143, 154, 176, 0.4156862745);
}
.secondary-btn-blue:disabled {
  background: #929292;
  color: #ffffff;
  cursor: not-allowed;
}
.secondary-btn-blue:disabled:hover, .secondary-btn-blue:disabled:focus, .secondary-btn-blue:disabled:active {
  background: #929292;
  color: #ffffff;
}

h1 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  h5 {
    font-size: 16px;
  }
}

h6 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  h6 {
    font-size: 16px;
  }
}

p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

p.small {
  font-size: 14px;
  line-height: 1.2;
}

/*# sourceMappingURL=main.css.map */
