*,
::after,
::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  line-height: normal;
}

blockquote,
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
iframe {
  margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

a {
  display: block;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
a:hover {
  text-decoration: none;
}

address {
  font-style: normal;
  margin-bottom: 0;
}

button {
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: initial;
  background-color: transparent;
  padding-block: 0;
  padding-inline: 0;
  cursor: pointer;
}

dialog {
  border: none;
}

form {
  width: 100%;
  display: block;
}

fieldset {
  border: none;
  display: block;
}

iframe {
  border: none;
}

img {
  display: block;
}

label {
  display: block;
  margin-bottom: 0;
}

mark {
  padding: 0;
  background-color: transparent;
}

menu {
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

ul {
  list-style-type: none;
  padding-inline-start: 0;
}

summary {
  list-style: none;
  cursor: pointer;
}

time {
  display: block;
}

[role=button] {
  cursor: pointer;
}

section,
article,
aside,
details,
figcaption,
figure,
header,
footer,
menu,
nav {
  display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
/*
$neutral-50: #FAFAFA;
$neutral-100: #F5F5F5;
$neutral-200: #E5E5E5;
$neutral-300: #D4D4D4;
$neutral-400: #A3A3A3;
$neutral-500: #737373;
$neutral-600: #525252;
$neutral-700: #404040;
$neutral-800: #262626;
$neutral-900: #171717;

$zinc-50: #FAFAFA;
$zinc-100: #F4F4F5;
$zinc-200: #E4E4E7;
$zinc-300: #D4D4D8;
$zinc-400: #A1A1AA;
$zinc-500: #71717A;
$zinc-600: #52525B;
$zinc-700: #3F3F46;
$zinc-800: #27272A;
$zinc-900: #18181B;

*/
/*
$slate-300: #CBD5E1;
$slate-400: #94A3B8;
$slate-500: #64748B;
$slate-600: #475569;
$slate-700: #334155;
$slate-800: #1E293B;
$slate-900: #0F172A;

$stone-500: #78716C;
*/
body {
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  background-color: #F3F5F9;
}
body.is--locked {
  overflow: hidden;
  height: 100vh;
}

/*
.heading__dual {
  @include heading__dual();
}
*/
.button {
  display: flex;
  height: 44px;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #F8FAFC;
  color: #64748B;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}
.button:hover {
  background: white;
  transform: translateY(-2px);
}

.button--white {
  display: flex;
  height: 44px;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #F8FAFC;
  color: #64748B;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}
.button--white:hover {
  background: white;
  transform: translateY(-2px);
}

.layout__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 24px;
  z-index: 100;
}
.layout__header .wrapper {
  width: 100%;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
}
.layout__header .header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #f1f5f9;
  border-radius: 16px;
  height: 74px;
  padding-right: 24px;
  padding-left: 140px;
  box-shadow: 6px 8px 14px 1px rgba(0, 0, 0, 0.08);
}
.layout__header .header__logo {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 113px;
  height: 102px;
  z-index: 2;
}
.layout__header .header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.layout__header .header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.layout__header .header__nav {
  display: flex;
  align-items: center;
  flex: 1;
}
@media (min-width: 1280px) {
  .layout__header .header__nav {
    padding-left: 41px;
  }
}
.layout__header .header__nav .nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.layout__header .header__nav .nav__list .nav__link {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}
.layout__header .header__nav .nav__list .nav__link:hover {
  color: #0f172a;
}
.layout__header .header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.layout__header .header__actions .language-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.layout__header .header__actions .language-selector span {
  font-size: 16px;
  font-weight: 500;
  color: #475569;
}
.layout__header .header__actions .btn-action {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: #f1f5f9;
  border-radius: 6px;
  text-decoration: none;
  color: #64748b;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.layout__header .header__actions .btn-action:hover {
  background-color: #e2e8f0;
}
.layout__header .header__actions .btn-action img {
  width: 16px;
  height: 16px;
}
.layout__header .header__actions .btn-loja {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: #dd1e26;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.layout__header .header__actions .btn-loja:hover {
  background-color: rgb(176.0956175299, 23.9043824701, 30.2788844622);
}
.layout__header .header__actions .btn-loja img {
  width: 16px;
  height: 16px;
}
.layout__header .divider {
  width: 1px;
  height: 24px;
  background-color: rgba(71, 85, 105, 0.24);
}
.layout__header .d-mobile-none {
  display: block;
}
.layout__header .header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.layout__header .header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #475569;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 1280px) {
  .layout__header .header__inner {
    padding-left: 80px;
    padding-right: 16px;
  }
  .layout__header .header__logo {
    left: 16px;
    width: 60px;
    height: 56px;
  }
  .layout__header .d-mobile-none {
    display: none;
  }
  .layout__header .header__hamburger {
    display: flex;
  }
  .layout__header .header__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #f1f5f9;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 40px;
    gap: 32px;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 8;
  }
  .layout__header .header__menu .header__nav {
    flex: none;
    width: 100%;
  }
  .layout__header .header__menu .header__nav .nav__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
  }
  .layout__header .header__menu .header__nav .nav__list .nav__link {
    font-size: 18px;
  }
  .layout__header .header__menu .header__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
  }
  .layout__header .header__menu .header__actions .btn-action,
  .layout__header .header__menu .header__actions .btn-loja {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 16px;
  }
  .layout__header .header__menu .header__actions .divider {
    display: none;
  }
  .layout__header.is-active .header__menu {
    right: 0;
  }
  .layout__header.is-active .header__hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .layout__header.is-active .header__hamburger span:nth-child(2) {
    opacity: 0;
  }
  .layout__header.is-active .header__hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.layout__footer {
  background-color: #001c29;
  color: #CBD5E1;
}
.layout__footer .footer__inner {
  width: 100%;
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 96px;
  padding-bottom: 0;
}
.layout__footer .footer__newsletter {
  display: flex;
  align-items: flex-end;
  gap: 214px;
  padding-bottom: 48px;
}
.layout__footer .footer__newsletter .newsletter__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  max-width: 444px;
}
.layout__footer .footer__newsletter .newsletter__text .newsletter__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background-color: rgba(221, 30, 38, 0.16);
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  color: #dd1e26;
  width: -moz-fit-content;
  width: fit-content;
}
.layout__footer .footer__newsletter .newsletter__text .newsletter__title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.02;
  color: #FFF;
  margin: 0;
}
.layout__footer .footer__newsletter .newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 466px;
  flex-shrink: 0;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group {
  display: flex;
  gap: 4px;
  align-items: stretch;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__input-wrapper {
  position: relative;
  flex: 1;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__input-wrapper .newsletter__input {
  width: 100%;
  height: 100%;
  background-color: rgba(226, 232, 240, 0.3);
  border: none;
  border-radius: 4px;
  padding: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #F1F5F9;
  outline: none;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__input-wrapper .newsletter__input::-moz-placeholder {
  color: #F1F5F9;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__input-wrapper .newsletter__input::placeholder {
  color: #F1F5F9;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__input-wrapper .newsletter__input:focus {
  box-shadow: 0 0 0 2px rgba(221, 30, 38, 0.5);
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__input-wrapper .newsletter__feedback {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__input-wrapper .newsletter__feedback .newsletter__feedback-icon {
  display: flex;
  align-items: center;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__input-wrapper .newsletter__feedback .newsletter__feedback-icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__input-wrapper .newsletter__feedback .newsletter__feedback-icon.is--hidden {
  display: none;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__btn {
  background-color: #dd1e26;
  color: #FFF;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 141px;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__btn:hover {
  opacity: 0.85;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.layout__footer .footer__newsletter .newsletter__form .newsletter__disclaimer {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #99a1af;
  margin: 0;
}
.home__comercial {
  background-color: #06121f;
  padding: 48px 100px;
}
.home__comercial .wrapper {
  width: 100%;
}
.home__comercial .comercial__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.home__comercial .comercial__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}
.home__comercial .comercial__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background-color: rgba(221, 30, 38, 0.16);
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  color: #dd1e26;
  width: -moz-fit-content;
  width: fit-content;
}
.home__comercial .comercial__title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.02;
  color: #FFF;
  margin: 0;
}
.home__comercial .comercial__action {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.home__comercial .comercial__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #dd1e26;
  color: #FFF;
  border: none;
  border-radius: 4px;
  padding: 12px 22px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.home__comercial .comercial__btn:hover {
  opacity: 0.85;
}
.home__comercial .comercial__btn-icon {
  width: 18px;
  height: 18px;
}
.home__comercial .comercial__phone {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #FFF;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .home__comercial {
    padding: 40px 24px;
  }
  .home__comercial .comercial__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .home__comercial .comercial__action {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.layout__footer .footer__divider {
  border: none;
  border-top: 1px solid rgba(226, 232, 240, 0.16);
  margin: 0;
}
.layout__footer .footer__body {
  display: flex;
  align-items: flex-end;
  gap: 0;
  padding-top: 48px;
  padding-bottom: 48px;
}
.layout__footer .footer__body .footer__brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 224px;
  flex-shrink: 0;
  margin-right: 170px;
}
.layout__footer .footer__body .footer__brand .brand__logo-wrap .brand__logo {
  width: 113px;
  height: auto;
  display: block;
}
.layout__footer .footer__body .footer__brand .brand__desc {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #94A3B8;
  margin: 0;
}
.layout__footer .footer__body .footer__brand .brand__social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.layout__footer .footer__body .footer__brand .brand__social .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid #94A3B8;
  border-radius: 4px;
  background-color: rgba(226, 232, 240, 0.16);
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.layout__footer .footer__body .footer__brand .brand__social .social-btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.layout__footer .footer__body .footer__brand .brand__social .social-btn:hover {
  background-color: rgba(226, 232, 240, 0.28);
  border-color: #CBD5E1;
}
.layout__footer .footer__body .footer__links {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex: 1;
}
.layout__footer .footer__body .footer__links .footer__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.layout__footer .footer__body .footer__links .footer__col .footer__col-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #F1F5F9;
  margin: 0;
}
.layout__footer .footer__body .footer__links .footer__col .footer__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.layout__footer .footer__body .footer__links .footer__col .footer__col-list li a {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.layout__footer .footer__body .footer__links .footer__col .footer__col-list li a:hover {
  color: #FFF;
}
.layout__footer .footer__body .footer__links .footer__col .footer__address {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #CBD5E1;
  font-style: normal;
}
.layout__footer .footer__body .footer__scroll-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 12px;
  border: 1px solid #94A3B8;
  border-radius: 50px;
  background-color: rgba(241, 245, 249, 0.16);
  cursor: pointer;
  flex-shrink: 0;
  align-self: flex-start;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
  margin-left: auto;
}
.layout__footer .footer__body .footer__scroll-top img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.layout__footer .footer__body .footer__scroll-top:hover {
  background-color: rgba(241, 245, 249, 0.28);
}
.layout__footer .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 16px;
}
.layout__footer .footer__bottom .footer__copyright {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #CBD5E1;
  margin: 0;
}
.layout__footer .footer__bottom .footer__agency {
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout__footer .footer__bottom .footer__agency img {
  height: auto;
  max-height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1280px) {
  .layout__footer .footer__inner {
    padding-top: 56px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .layout__footer .footer__newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 40px;
  }
  .layout__footer .footer__newsletter .newsletter__text {
    max-width: 100%;
  }
  .layout__footer .footer__newsletter .newsletter__form {
    width: 100%;
  }
  .layout__footer .footer__newsletter .newsletter__form .newsletter__field-group {
    flex-direction: column;
  }
  .layout__footer .footer__newsletter .newsletter__form .newsletter__field-group .newsletter__btn {
    min-width: unset;
    width: 100%;
    padding: 14px 16px;
  }
  .layout__footer .footer__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .layout__footer .footer__body .footer__brand {
    width: 100%;
    margin-right: 0;
  }
  .layout__footer .footer__body .footer__links {
    flex-direction: column;
    width: 100%;
    gap: 32px;
  }
  .layout__footer .footer__body .footer__scroll-top {
    margin-left: 0;
    align-self: flex-start;
  }
  .layout__footer .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
  }
}

.layout__cta {
  display: flex;
  width: 100%;
}
.layout__cta .cta__left,
.layout__cta .cta__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 100px;
  gap: 32px;
}
.layout__cta .cta__left {
  background-color: #004767;
}
.layout__cta .cta__right {
  background-color: #dd1e26;
}
.layout__cta .cta__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}
.layout__cta .cta__header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.layout__cta .cta__header .icon-box {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  width: 56px;
  height: 56px;
}
.layout__cta .cta__header .icon-box img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.layout__cta .cta__header .title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -1.8px;
  color: #f9fafc;
  margin: 0;
}
.layout__cta .cta__description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0;
}
.layout__cta .cta__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.layout__cta .cta__actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #f4f4f5;
  color: #004183;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.layout__cta .cta__actions .btn-secondary:hover {
  opacity: 0.9;
}
.layout__cta .cta__actions .btn-secondary img {
  width: 16px;
  height: 16px;
}
.layout__cta .cta__actions .input-group {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 420px;
}
.layout__cta .cta__actions .input-group input {
  flex: 1;
  background-color: #7f1d1d;
  color: #f1f5f9;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
}
.layout__cta .cta__actions .input-group input::-moz-placeholder {
  color: #f1f5f9;
  opacity: 0.8;
}
.layout__cta .cta__actions .input-group input::placeholder {
  color: #f1f5f9;
  opacity: 0.8;
}
.layout__cta .cta__actions .input-group input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.layout__cta .cta__actions .input-group button {
  background-color: #f4f4f5;
  color: #004183;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.layout__cta .cta__actions .input-group button:hover {
  opacity: 0.9;
}
@media (max-width: 1280px) {
  .layout__cta {
    flex-direction: column;
  }
  .layout__cta .cta__left,
  .layout__cta .cta__right {
    padding: 40px 24px;
  }
  .layout__cta .cta__header .title {
    font-size: 24px;
  }
  .layout__cta .cta__actions .input-group {
    flex-direction: column;
    max-width: 100%;
  }
}

.layout__breadcrumb.is--flat {
  background: linear-gradient(232deg, #001C29 4.82%, #004767 50.64%, #046996 95.18%);
  width: 100%;
  height: 188px;
}
.layout__breadcrumb.is--simple {
  background: linear-gradient(203deg, #001C29 4.82%, #004767 50.64%, #046996 95.18%);
  width: 100%;
  min-height: 479px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.layout__breadcrumb.is--simple .breadcrumb__inner {
  width: 100%;
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 64px;
}
.layout__breadcrumb.is--simple .breadcrumb__inner .breadcrumb__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 440px;
}
.layout__breadcrumb.is--simple .breadcrumb__inner .breadcrumb__left .breadcrumb__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 64px;
  border: 1px solid #cbd5e1;
  background-color: rgba(243, 245, 249, 0.16);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  color: #f3f5f9;
  white-space: nowrap;
  align-self: flex-start;
}
.layout__breadcrumb.is--simple .breadcrumb__inner .breadcrumb__left .breadcrumb__title {
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin: 0;
}
.layout__breadcrumb.is--simple .breadcrumb__inner .breadcrumb__desc {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #cbd5e1;
  max-width: 434px;
  margin: 0;
}
.layout__breadcrumb.is--simple .breadcrumb__bottom {
  width: 100%;
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}
.layout__breadcrumb.is--simple .breadcrumb__bottom .button__color,
.layout__breadcrumb.is--simple .breadcrumb__bottom .button__glass {
  color: #FFF;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  height: 52px;
  padding: 13px 28px 15px 28px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  transition: background 0.3s ease;
}
.layout__breadcrumb.is--simple .breadcrumb__bottom .button__color {
  background: #DD1E26;
}
.layout__breadcrumb.is--simple .breadcrumb__bottom .button__color:hover {
  background: rgb(176.0956175299, 23.9043824701, 30.2788844622);
}
.layout__breadcrumb.is--simple .breadcrumb__bottom .button__glass {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}
.layout__breadcrumb.is--simple .breadcrumb__bottom .button__glass:hover {
  background: rgba(255, 255, 255, 0.2);
}
.layout__breadcrumb.is--simple.has--buttons {
  padding-bottom: 91px;
}
.layout__breadcrumb.is--simple.has--buttons .breadcrumb__inner {
  padding-bottom: 40px;
}
.layout__breadcrumb.is--simple.has--buttons .breadcrumb__inner .breadcrumb__left {
  max-width: 530px;
}
@media (max-width: 1280px) {
  .layout__breadcrumb.is--simple {
    min-height: auto;
    align-items: flex-start;
  }
  .layout__breadcrumb.is--simple .breadcrumb__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 56px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .layout__breadcrumb.is--simple .breadcrumb__inner .breadcrumb__left .breadcrumb__title {
    font-size: 36px;
  }
  .layout__breadcrumb.is--simple .breadcrumb__inner .breadcrumb__desc {
    font-size: 18px;
    max-width: 100%;
  }
  .layout__breadcrumb.is--simple .breadcrumb__bottom {
    padding-left: 24px;
    padding-right: 24px;
    flex-direction: column;
  }
  .layout__breadcrumb.is--simple .breadcrumb__bottom .button__color,
  .layout__breadcrumb.is--simple .breadcrumb__bottom .button__glass {
    width: 100%;
  }
}
.layout__breadcrumb.has--perks .breadcrumb__perks {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.layout__breadcrumb.has--perks .breadcrumb__perks .breadcrumb__perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.layout__breadcrumb.has--perks .breadcrumb__perks .breadcrumb__perk img {
  width: 20px;
  height: 20px;
}
.layout__breadcrumb.has--perks .breadcrumb__perks .breadcrumb__perk-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1280px) {
  .layout__breadcrumb.has--perks .breadcrumb__perks {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .layout__breadcrumb.has--perks .breadcrumb__perks .breadcrumb__perk-divider {
    display: none;
  }
}
.layout__breadcrumb.has--perks .breadcrumb__left {
  max-width: 682px !important;
}
.layout__breadcrumb.has--perks .breadcrumb__desc {
  max-width: 291px !important;
}
@media (max-width: 1280px) {
  .layout__breadcrumb.has--perks .breadcrumb__left {
    max-width: 100% !important;
  }
}

.actions__back {
  margin-top: 70px;
  margin-bottom: 40px;
}
.actions__back a {
  color: #475569;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.actions__back a:hover {
  color: #004767;
  cursor: pointer;
  transform: translateX(-4px);
}
@media (max-width: 1280px) {
  .actions__back {
    margin-top: 40px;
    padding-left: 24px;
  }
}

.home__hero {
  position: relative;
}
.home__hero .hero__carousel .splide__pagination {
  bottom: 24px;
  gap: 8px;
}
.home__hero .hero__carousel .splide__pagination li .splide__pagination__page {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  opacity: 1;
  margin: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.home__hero .hero__carousel .splide__pagination li .splide__pagination__page.is-active {
  background: #dd1e26;
  transform: scale(1.25);
}
.home__hero .hero__carousel .splide__pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.home__hero .hero__slide {
  position: relative;
  height: 802px;
}
.home__hero .hero__slide .hero__bg {
  position: absolute;
  inset: 0;
}
.home__hero .hero__slide .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home__hero .hero__slide .hero__bg .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #002a3d 8.92%, rgba(0, 42, 61, 0.624) 47.28%, rgba(0, 42, 61, 0) 64%), linear-gradient(#002a3d 7.21%, rgba(0, 42, 61, 0) 22.89%);
}
.home__hero .hero__slide .hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 177px;
  max-width: 1100px;
}
.home__hero .hero__slide .hero__content .hero__badge {
  margin-bottom: 12px;
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 1px 13px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.home__hero .hero__slide .hero__content .hero__badge img {
  width: 20px;
  height: 20px;
}
.home__hero .hero__slide .hero__content .hero__body {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.home__hero .hero__slide .hero__content .hero__body .hero__title {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -1.8px;
  color: #f9fafc;
  margin: 0;
}
.home__hero .hero__slide .hero__content .hero__body .hero__title .mark {
  font-weight: 800;
  color: #dd1e26;
}
.home__hero .hero__slide .hero__content .hero__body .hero__subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.22;
  color: #e2e7f0;
  margin: 0;
}
.home__hero .hero__slide .hero__content .hero__actions {
  margin-bottom: 57px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.home__hero .hero__slide .hero__content .hero__actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 32px;
  height: 44px;
  background: #dd1e26;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #f1f5f9;
  transition: opacity 0.2s ease;
}
.home__hero .hero__slide .hero__content .hero__actions .btn-primary:hover {
  opacity: 0.88;
}
.home__hero .hero__slide .hero__content .hero__actions .btn-primary img {
  width: 16px;
  height: 16px;
}
.home__hero .hero__slide .hero__content .hero__actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 32px;
  height: 44px;
  background: #f4f4f5;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  transition: opacity 0.2s ease;
}
.home__hero .hero__slide .hero__content .hero__actions .btn-secondary:hover {
  opacity: 0.88;
}
.home__hero .hero__slide .hero__content .hero__actions .btn-secondary img {
  width: 16px;
  height: 16px;
}
.home__hero .hero__slide .hero__content .hero__perks {
  display: flex;
  align-items: center;
  gap: 16px;
}
.home__hero .hero__slide .hero__content .hero__perks .hero__perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.home__hero .hero__slide .hero__content .hero__perks .hero__perk img {
  width: 20px;
  height: 20px;
}
.home__hero .hero__slide .hero__content .hero__perks .hero__perk-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1280px) {
  .home__hero .hero__slide {
    height: 800px;
  }
  .home__hero .hero__slide .hero__bg .hero__overlay {
    background: linear-gradient(0deg, #002a3d 20%, rgba(0, 42, 61, 0.85) 55%, rgba(0, 42, 61, 0.3) 80%, rgba(0, 42, 61, 0) 100%), linear-gradient(180deg, #002a3d 0%, rgba(0, 42, 61, 0) 24%), linear-gradient(90deg, rgba(0, 42, 61, 0.6) 0%, rgba(0, 42, 61, 0) 100%);
  }
  .home__hero .hero__slide .hero__content {
    padding: 40px 24px 80px;
    gap: 32px;
    max-width: 100%;
    justify-content: flex-end;
  }
  .home__hero .hero__slide .hero__content .hero__body .hero__title {
    font-size: 32px;
  }
  .home__hero .hero__slide .hero__content .hero__body .hero__subtitle {
    font-size: 18px;
  }
  .home__hero .hero__slide .hero__content .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .home__hero .hero__slide .hero__content .hero__actions .btn-primary,
  .home__hero .hero__slide .hero__content .hero__actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .home__hero .hero__slide .hero__content .hero__perks {
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
}

.home__about {
  padding: 124px 0;
}
.home__about .wrapper {
  width: 100%;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 158px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.home__about .eyebrow {
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 64px;
  border: 1px solid #CBD5E1;
  color: #4B5563;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  align-self: flex-start;
}
.home__about .about__main {
  display: flex;
  align-items: center;
  gap: 41px;
  width: 100%;
  margin-top: 0;
}
.home__about .about__main .about__left {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
}
.home__about .about__main .about__left .about__photo {
  width: 261px;
  height: 363px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.home__about .about__main .about__left .about__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home__about .about__main .about__left .about__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  width: 332px;
  flex-shrink: 0;
}
.home__about .about__main .about__left .about__content .title {
  color: #1E293B;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -1.8px;
}
.home__about .about__main .about__left .about__content .title .mark {
  color: #DC2626;
  font-weight: 500;
}
.home__about .about__main .about__left .about__content .description {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #475569;
  width: 100%;
}
.home__about .about__main .about__left .about__content .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 8px 32px;
  border-radius: 8px;
  background: #004767;
  color: #F9FAFC;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  text-decoration: none;
  transition: all linear 0.25s;
}
.home__about .about__main .about__left .about__content .btn-primary img {
  width: 16px;
  height: 16px;
  display: block;
}
.home__about .about__main .about__left .about__content .btn-primary:hover {
  background: rgb(0, 99.1242718447, 143.8);
  transform: translateY(-2px);
}
.home__about .about__main .about__right {
  position: relative;
  width: 440px;
  height: 394px;
  flex-shrink: 0;
}
.home__about .about__main .about__right .about__mascot {
  position: absolute;
  top: 0;
  left: 0;
  width: 54%;
  height: 51%;
}
.home__about .about__main .about__right .about__mascot img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.home__about .about__main .about__right .about__stats {
  position: absolute;
  top: 10px;
  left: 220px;
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home__about .about__main .about__right .about__stats .stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: 16px;
  background: #F9FAFC;
  border-left: 4px solid #DC2626;
  width: 100%;
}
.home__about .about__main .about__right .about__stats .stat .stat__number {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -1.8px;
  color: #1E293B;
}
.home__about .about__main .about__right .about__stats .stat .stat__label {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #475569;
}
.home__about .about__main .about__right .about__national {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 196px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}
.home__about .about__main .about__right .about__national .national__icon {
  width: 64px;
  height: 64px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}
.home__about .about__main .about__right .about__national .national__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home__about .about__main .about__right .about__national .national__text {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  width: 100%;
  text-align: center;
}
.home__about .about__main .about__right .about__national .national__text .national__number {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -1.8px;
  color: #1E293B;
}
.home__about .about__main .about__right .about__national .national__text .national__label {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: #64748B;
}
@media (max-width: 1280px) {
  .home__about {
    padding: 64px 0;
  }
  .home__about .wrapper {
    padding: 0 24px;
  }
  .home__about .about__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .home__about .about__main .about__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }
  .home__about .about__main .about__left .about__photo {
    width: 100%;
    height: 240px;
  }
  .home__about .about__main .about__left .about__content {
    width: 100%;
    gap: 24px;
  }
  .home__about .about__main .about__right {
    width: 100%;
    height: auto;
    position: static;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .home__about .about__main .about__right .about__mascot {
    position: static;
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  .home__about .about__main .about__right .about__stats {
    position: static;
    width: 100%;
  }
  .home__about .about__main .about__right .about__stats .stat {
    width: 100%;
  }
  .home__about .about__main .about__right .about__national {
    position: static;
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
  }
  .home__about .about__main .about__right .about__national .national__text {
    align-items: flex-start;
    text-align: left;
  }
}

.home__categories {
  background-color: #E6EDF5;
  padding-top: 124px;
  padding-bottom: 124px;
}
.home__categories .wrapper {
  width: 100%;
  max-width: 1126px;
  margin-left: auto;
  margin-right: auto;
}
.home__categories .wrapper .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.home__categories .wrapper .heading .eyebrow {
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: rgba(0, 71, 103, 0.16);
  color: #004767;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
}
.home__categories .wrapper .heading .title {
  color: #1E293B;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 66px;
  letter-spacing: -1.8px;
}
.home__categories .wrapper .heading .title .mark {
  color: #DC2626;
  font-weight: 500;
}
.home__categories .wrapper .heading {
  margin-bottom: 24px;
}
.home__categories .categories__body {
  display: flex;
  gap: 32px;
  height: 477px;
  align-items: stretch;
  max-width: 1126px;
  margin: 0 auto;
  padding: 0 24px;
}
.home__categories .categories__body .categories__tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  width: 438px;
}
.home__categories .categories__body .categories__tabs .tab-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.home__categories .categories__body .categories__tabs .tab-btn .tab-btn__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 71, 103, 0.08);
  border-radius: 10px;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.home__categories .categories__body .categories__tabs .tab-btn .tab-btn__icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.home__categories .categories__body .categories__tabs .tab-btn span {
  flex: 1;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.06;
  color: #1e293b;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.home__categories .categories__body .categories__tabs .tab-btn .tab-btn__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: filter 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.home__categories .categories__body .categories__tabs .tab-btn.is--active {
  background: #004767;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}
.home__categories .categories__body .categories__tabs .tab-btn.is--active .tab-btn__icon {
  background-color: rgba(241, 245, 249, 0.16);
}
.home__categories .categories__body .categories__tabs .tab-btn.is--active .tab-btn__icon img {
  filter: brightness(0) invert(1);
}
.home__categories .categories__body .categories__tabs .tab-btn.is--active span {
  color: #ffffff;
}
.home__categories .categories__body .categories__tabs .tab-btn.is--active .tab-btn__arrow {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.home__categories .categories__body .categories__tabs .tab-btn:hover:not(.is--active) {
  background: rgb(233.72, 239.8, 245.88);
}
.home__categories .categories__body .categories__tabs .tab-btn {
  flex: 1;
}
.home__categories .categories__body .categories__panel {
  display: none;
  flex: 1;
}
.home__categories .categories__body .categories__panel.is--active {
  display: flex;
}
.home__categories .categories__body .categories__panel .category-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.home__categories .categories__body .categories__panel .category-card .category-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home__categories .categories__body .categories__panel .category-card .category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(232.62deg, rgba(0, 71, 103, 0) 29.23%, rgba(0, 71, 103, 0.64) 77.71%);
}
.home__categories .categories__body .categories__panel .category-card .category-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
  height: 100%;
  padding: 40px 50px;
}
.home__categories .categories__body .categories__panel .category-card .category-card__content .category-card__title {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -1.2px;
  color: #ffffff;
  margin: 0;
}
.home__categories .categories__body .categories__panel .category-card .category-card__content .category-card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.42;
  color: #e2e8f0;
  margin: 0;
  max-width: 317px;
}
.home__categories .categories__body .categories__panel .category-card .category-card__content .category-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  align-self: flex-start;
  transition: opacity 0.2s ease;
}
.home__categories .categories__body .categories__panel .category-card .category-card__content .category-card__btn:hover {
  opacity: 0.88;
}
.home__categories .categories__body .categories__panel .category-card .category-card__content .category-card__btn img {
  width: 16px;
  height: 16px;
}
.home__categories .categories__carousel {
  display: none;
}
.home__categories .categories__carousel .splide__slide {
  height: 400px;
}
.home__categories .categories__carousel .splide__slide .category-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.home__categories .categories__carousel .splide__slide .category-card .category-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home__categories .categories__carousel .splide__slide .category-card .category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(232.62deg, rgba(0, 71, 103, 0) 29.23%, rgba(0, 71, 103, 0.64) 77.71%);
}
.home__categories .categories__carousel .splide__slide .category-card .category-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
  height: 100%;
  padding: 40px 50px;
}
.home__categories .categories__carousel .splide__slide .category-card .category-card__content .category-card__title {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -1.2px;
  color: #ffffff;
  margin: 0;
}
.home__categories .categories__carousel .splide__slide .category-card .category-card__content .category-card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.42;
  color: #e2e8f0;
  margin: 0;
  max-width: 317px;
}
.home__categories .categories__carousel .splide__slide .category-card .category-card__content .category-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  align-self: flex-start;
  transition: opacity 0.2s ease;
}
.home__categories .categories__carousel .splide__slide .category-card .category-card__content .category-card__btn:hover {
  opacity: 0.88;
}
.home__categories .categories__carousel .splide__slide .category-card .category-card__content .category-card__btn img {
  width: 16px;
  height: 16px;
}
@media (max-width: 1280px) {
  .home__categories {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .home__categories .wrapper .heading {
    align-items: flex-start;
  }
  .home__categories .categories__body {
    display: none;
  }
  .home__categories .categories__carousel {
    display: block;
  }
}

.home__products {
  padding-top: 124px;
  padding-bottom: 124px;
}
.home__products .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
}
.home__products .wrapper .heading {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.home__products .wrapper .heading .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.home__products .wrapper .heading .right .eyebrow {
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: rgba(0, 71, 103, 0.16);
  color: #004767;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
}
.home__products .wrapper .heading .right .title {
  color: #1E293B;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 66px;
  letter-spacing: -1.8px;
}
.home__products .wrapper .heading .right .title .mark {
  color: #DC2626;
  font-weight: 500;
}
.home__products .wrapper .heading {
  margin-bottom: 32px;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide {
  height: auto;
  display: flex;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  width: 100%;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product .card-product__image {
  position: relative;
  background-color: #F8FAFC;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 432px;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product .card-product__image img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product .card-product__image .card-product__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #E11D48;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product .card-product__image .card-product__badge img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product .card-product__image .card-product__status {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  font-family: "Manrope", sans-serif;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product .card-product__image .card-product__status.is--stock {
  background-color: rgba(22, 163, 74, 0.12);
  color: #15803d;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product .card-product__image .card-product__status.is--order {
  background-color: rgba(217, 119, 6, 0.12);
  color: #b45309;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product .card-product__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product .card-product__content .eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #0369A1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product .card-product__content .title {
  font-size: 18px;
  font-weight: 600;
  color: #1E293B;
  margin: 0;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product .card-product__content .description {
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  margin: 0;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide .card-product {
  width: 100%;
}
.home__products .mobile {
  display: none;
}
@media (max-width: 1280px) {
  .home__products {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .home__products .heading {
    align-items: flex-start;
  }
  .home__products .heading .button {
    display: none;
  }
  .home__products .mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
  }
  .home__products .mobile .button {
    width: 100%;
  }
}

@keyframes accordionOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home__club {
  background: linear-gradient(232.04deg, #004767 32.78%, #046896 96.74%);
}
.home__club .wrapper {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.home__club .club__inner {
  display: flex;
  align-items: flex-start;
  gap: 98px;
  padding-top: 78px;
}
.home__club .club__left {
  flex-shrink: 0;
  width: 606px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: flex-end;
}
.home__club .club__left .club__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
  width: 100%;
}
.home__club .club__left .club__header .eyebrow {
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: rgba(243, 245, 249, 0.16);
  color: #F3F5F9;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  width: -moz-fit-content;
  width: fit-content;
}
.home__club .club__left .club__header .club__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  color: #cbd5e1;
  margin: 0;
}
.home__club .club__left .club__image {
  height: 437px;
  position: absolute;
  left: 0;
  top: 0;
}
.home__club .club__left .club__image .club__image-bg {
  position: absolute;
  top: 206px;
  left: 0;
  pointer-events: none;
}
.home__club .club__left .club__image .club__image-products {
  position: absolute;
  top: 230px;
  left: 15px;
  pointer-events: none;
}
.home__club .club__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
  padding-bottom: 72px;
}
.home__club .club__right .club__benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.home__club .club__right .club__benefits .club__title {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -1.8px;
  color: #f9fafc;
  margin: 0;
}
.home__club .club__right .club__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 8px 32px;
  background: #f4f4f5;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  transition: opacity 0.2s ease;
  width: 100%;
}
.home__club .club__right .club__cta:hover {
  opacity: 0.88;
}
.home__club .club__right .club__cta img {
  width: 16px;
  height: 16px;
}
.home__club .accordion {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.home__club .accordion .accordion__item {
  border-bottom: 1px solid rgba(226, 232, 240, 0.32);
}
.home__club .accordion .accordion__item .accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
}
.home__club .accordion .accordion__item .accordion__trigger .accordion__label {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.02;
  color: #f9fafc;
  text-align: left;
}
.home__club .accordion .accordion__item .accordion__trigger .accordion__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.home__club .accordion .accordion__item .accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
  opacity: 0;
  padding-bottom: 0;
}
.home__club .accordion .accordion__item .accordion__body p {
  font-size: 16px;
  font-weight: 400;
  color: #e2e8f0;
  margin: 0;
  line-height: normal;
}
.home__club .accordion .accordion__item.is--open .accordion__trigger .accordion__icon {
  transform: rotate(90deg);
}
.home__club .accordion .accordion__item.is--open .accordion__body {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 16px;
  animation: accordionOpen 0.3s ease-out;
}
@media (max-width: 1280px) {
  .home__club {
    overflow: hidden;
    padding-left: 24px;
    padding-right: 24px;
  }
  .home__club .wrapper {
    position: static;
  }
  .home__club .club__inner {
    flex-direction: column;
    gap: 0;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .home__club .club__left {
    width: 100%;
    position: relative;
  }
  .home__club .club__left .club__image {
    position: relative;
    height: 280px;
    left: auto;
    top: auto;
    width: 100%;
    overflow: hidden;
  }
  .home__club .club__left .club__image .club__image-bg {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
    opacity: 0.8;
  }
  .home__club .club__left .club__image .club__image-products {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .home__club .club__right {
    width: 100%;
    padding-bottom: 40px;
  }
  .home__club .club__right .club__benefits .club__title {
    font-size: 24px;
  }
}

.home__seals {
  padding-top: 96px;
  padding-bottom: 96px;
}
.home__seals .wrapper {
  width: 100%;
  max-width: 1041px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.home__seals .seals__label {
  font-size: 18px;
  font-weight: 500;
  color: #64748b;
  text-align: center;
  margin: 0;
}
.home__seals .seals__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: 100%;
}
.home__seals .seals__row .seal {
  width: 148px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.home__seals .seals__row .seal img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home__seals .seals__carousel {
  display: none;
}
@media (max-width: 1280px) {
  .home__seals {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .home__seals .wrapper {
    gap: 32px;
  }
  .home__seals .seals__row {
    display: none;
  }
  .home__seals .seals__carousel {
    display: block;
    margin-top: 8px;
  }
  .home__seals .seals__carousel .splide__pagination {
    bottom: 24px;
    gap: 8px;
  }
  .home__seals .seals__carousel .splide__pagination li .splide__pagination__page {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 1;
    margin: 0;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .home__seals .seals__carousel .splide__pagination li .splide__pagination__page.is-active {
    background: #004767;
    transform: scale(1.25);
  }
  .home__seals .seals__carousel .splide__slide .seal {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .home__seals .seals__carousel .splide__slide .seal img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.home__blog {
  background-color: #E6EDF5;
  padding-top: 124px;
  padding-bottom: 124px;
}
.home__blog .wrapper {
  width: 100%;
  max-width: 1126px;
  margin-left: auto;
  margin-right: auto;
}
.home__blog .heading {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.home__blog .heading .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.home__blog .heading .right .eyebrow {
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: rgba(0, 71, 103, 0.16);
  color: #004767;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
}
.home__blog .heading .right .title {
  color: #1E293B;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 66px;
  letter-spacing: -1.8px;
}
.home__blog .heading .right .title .mark {
  color: #DC2626;
  font-weight: 500;
}
.home__blog .heading {
  margin-bottom: 32px;
}
.home__blog .blog__carousel {
  margin-top: 40px;
}
.home__blog .blog__carousel .splide__track .splide__list .splide__slide {
  height: auto;
  display: flex;
}
.home__blog .mobile {
  display: none;
}
.home__blog .card-article {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 40px 32px;
  border-radius: 8px;
  overflow: hidden;
  height: 480px;
  text-decoration: none;
}
.home__blog .card-article .card-article__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.home__blog .card-article .card-article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home__blog .card-article .card-article__image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 27, 52, 0) 34.45%, rgba(10, 27, 52, 0.79) 66.97%, #0a1b34 92.44%);
}
.home__blog .card-article .card-article__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.home__blog .card-article .card-article__content .tag {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  color: #1677ff;
  text-transform: uppercase;
}
.home__blog .card-article .card-article__content .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.02;
  color: #f8fafc;
  margin: 0;
}
.home__blog .card-article .card-article__arrow {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 24px;
}
.home__blog .card-article .card-article__arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1280px) {
  .home__blog {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .home__blog .heading {
    align-items: flex-start;
  }
  .home__blog .heading .button--white {
    display: none;
  }
  .home__blog .mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
  }
  .home__blog .mobile .button--white {
    width: 100%;
  }
}

.about__about {
  padding-top: 67px;
  padding-bottom: 67px;
}
.about__about .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 89px;
}
.about__about .wrapper .content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.about__about .wrapper .content .left {
  width: 100%;
  max-width: 568px;
}
.about__about .wrapper .content .left .eyebrow {
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 64px;
  border: 1px solid #CBD5E1;
  color: #4B5563;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}
.about__about .wrapper .content .left .title {
  margin-top: 25px;
  color: #1E293B;
  font-family: "Manrope", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -1.8px;
}
.about__about .wrapper .content .left .title span {
  color: #DD1E26;
}
.about__about .wrapper .content .mascot {
  position: absolute;
  right: 406px;
  bottom: 0;
}
.about__about .wrapper .content .text {
  color: #475569;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.25px;
  width: 100%;
  max-width: 372px;
}
.about__about .wrapper .statistics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(0, 71, 103, 0.16);
  padding-top: 24px;
}
.about__about .wrapper .statistics .card {
  padding: 33px 33px 1px 33px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.about__about .wrapper .statistics .card .card__value {
  color: #004767;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: -2px;
}
.about__about .wrapper .statistics .card .card__label {
  color: #004767;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
@media (max-width: 1280px) {
  .about__about {
    padding-left: 24px;
    padding-right: 24px;
  }
  .about__about .wrapper {
    gap: 60px;
  }
  .about__about .wrapper .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .about__about .wrapper .content .left .title {
    font-size: 40px;
    line-height: 48px;
  }
  .about__about .wrapper .statistics {
    grid-template-columns: 1fr;
  }
  .about__about .wrapper .statistics .card {
    align-items: flex-start;
  }
}

.about__parallax {
  position: relative;
  height: 294px;
  background-image: url("../img/about-parallax.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-bottom: 124px;
}
@media (max-width: 1280px) {
  .about__parallax {
    margin-bottom: 60px;
  }
}

.about__timeline {
  padding-top: 0;
  padding-bottom: 80px;
}
.about__timeline .timeline__carousel {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .about__timeline .timeline__carousel {
    overflow: visible;
  }
}
.about__timeline .splide__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
@media (max-width: 1280px) {
  .about__timeline .splide__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.about__timeline .splide__top .splide__header .eyebrow {
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 64px;
  border: 1px solid #CBD5E1;
  color: #4B5563;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}
.about__timeline .splide__top .splide__header .title {
  margin-top: 25px;
  max-width: 574px;
  color: #1E293B;
  font-family: "Manrope", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -1.8px;
}
.about__timeline .splide__top .splide__header .title span {
  color: #DD1E26;
}
@media (max-width: 1280px) {
  .about__timeline .splide__top .splide__header .title {
    font-size: 38px;
    line-height: 48px;
  }
  .about__timeline .splide__top .splide__header .title br {
    display: none;
  }
}
.about__timeline .splide__top .splide__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.about__timeline .splide__top .splide__nav .splide__nav-hint {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 1280px) {
  .about__timeline .splide__top .splide__nav {
    align-items: flex-start;
  }
}
.about__timeline .splide__top .splide__arrows {
  display: flex;
  gap: 18px;
}
.about__timeline .splide__top .splide__arrows .splide__arrow {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  background: rgba(0, 71, 103, 0.16);
  transition: all 0.3s ease;
}
.about__timeline .splide__top .splide__arrows .splide__arrow:hover {
  background: #004767;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.about__timeline .splide__top .splide__arrows .splide__arrow:hover img {
  filter: brightness(0) invert(1);
}
.about__timeline .timeline__card {
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding-bottom: 32px;
  width: 440px;
}
.about__timeline .timeline__card .card__image {
  position: relative;
  height: 258px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.about__timeline .timeline__card .card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about__timeline .timeline__card .card__image .card__year {
  position: absolute;
  bottom: 20px;
  left: 30px;
  background-color: #dd1e26;
  border-radius: 16px;
  height: 80px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__timeline .timeline__card .card__image .card__year span {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #f3f5f9;
  line-height: 64px;
  letter-spacing: -1.8px;
  white-space: nowrap;
}
.about__timeline .timeline__card .card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
}
.about__timeline .timeline__card .card__body .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #1e293b;
  line-height: 32px;
  letter-spacing: -1.8px;
  margin: 0;
}
.about__timeline .timeline__card .card__body .card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #475569;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 1280px) {
  .about__timeline .timeline__card {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .about__timeline .timeline__card .card__image {
    height: 200px;
  }
  .about__timeline .timeline__card .card__body {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .about__timeline {
    padding-bottom: 56px;
  }
}

.about__purpose {
  background: linear-gradient(235deg, #004767 32.78%, #046896 96.74%);
  padding-top: 80px;
  padding-bottom: 80px;
}
.about__purpose .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
.about__purpose .purpose__left {
  width: 330px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__purpose .purpose__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 8px;
  background-color: rgba(243, 245, 249, 0.16);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #f3f5f9;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  line-height: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.about__purpose .purpose__title {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #f9fafc;
  line-height: 1.02;
  letter-spacing: -1.8px;
  margin: 0;
}
.about__purpose .purpose__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__purpose .purpose__right .purpose__intro {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #f3f5f9;
  line-height: 29px;
  margin: 0;
  max-width: 574px;
}
.about__purpose .purpose__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 28px;
  align-items: start;
}
.about__purpose .purpose__grid .grid__img-main {
  grid-column: 1;
  grid-row: 1/3;
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}
.about__purpose .purpose__grid .grid__img-secondary {
  grid-column: 2;
  grid-row: 1;
  width: 234px;
  height: 137px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
  flex-shrink: 0;
}
.about__purpose .purpose__grid .grid__desc {
  grid-column: 2;
  grid-row: 2;
  width: 226px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #f3f5f9;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 1280px) {
  .about__purpose {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .about__purpose .wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .about__purpose .purpose__left {
    width: 100%;
  }
  .about__purpose .purpose__title {
    font-size: 36px;
  }
  .about__purpose .purpose__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about__purpose .purpose__grid .grid__img-main {
    grid-column: 1;
    grid-row: 1;
    height: 240px;
  }
  .about__purpose .purpose__grid .grid__img-secondary {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: 180px;
  }
  .about__purpose .purpose__grid .grid__desc {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
  }
}

.catalog__main {
  width: 100%;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 124px;
  padding-bottom: 124px;
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 24px;
}
@media (max-width: 1280px) {
  .catalog__main {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 24px;
    padding-right: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.catalog__filters {
  background-color: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.catalog__filters .filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
}
.catalog__filters .filters__header .filters__title {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1e293b;
  margin: 0;
}
.catalog__filters .filters__panel {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
}
.catalog__filters .filters__panel .filters__search {
  position: relative;
  width: 100%;
}
.catalog__filters .filters__panel .filters__search .filters__search-icon {
  position: absolute;
  left: 13.75px;
  top: 50%;
  transform: translateY(-50%);
  width: 10.5px;
  height: 10.5px;
  pointer-events: none;
}
.catalog__filters .filters__panel .filters__search .filters__search-input {
  width: 100%;
  height: 37.5px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0 12px 0 36px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.catalog__filters .filters__panel .filters__search .filters__search-input::-moz-placeholder {
  color: #94a3b8;
}
.catalog__filters .filters__panel .filters__search .filters__search-input::placeholder {
  color: #94a3b8;
}
.catalog__filters .filters__panel .filters__search .filters__search-input:focus {
  border-color: #004767;
  box-shadow: 0 0 0 3px rgba(0, 71, 103, 0.12);
}
.catalog__filters .filters__panel .filter-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}
.catalog__filters .filters__panel .filter-section .filter-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.catalog__filters .filters__panel .filter-section .filter-section__header .filter-section__title {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #1e293b;
  margin: 0;
}
.catalog__filters .filters__panel .filter-section .filter-section__header .filter-section__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.catalog__filters .filters__panel .filter-section .filter-section__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.catalog__filters .filters__panel .filter-section.is--collapsed .filter-section__icon {
  transform: rotate(180deg);
}
.catalog__filters .filters__panel .filter-section.is--collapsed .filter-section__body {
  max-height: 0 !important;
  opacity: 0;
  pointer-events: none;
}
.catalog__filters .filters__panel .filter-section .filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.catalog__filters .filters__panel .filter-section .filter-check .filter-check__box {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.catalog__filters .filters__panel .filter-section .filter-check .filter-check__box img {
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.catalog__filters .filters__panel .filter-section .filter-check .filter-check__label {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #475569;
}
.catalog__filters .filters__panel .filter-section .filter-check input[type=checkbox],
.catalog__filters .filters__panel .filter-section .filter-check input[type=radio] {
  display: none;
}
.catalog__filters .filters__panel .filter-section .filter-check input[type=checkbox]:checked + .filter-check__box,
.catalog__filters .filters__panel .filter-section .filter-check input[type=radio]:checked + .filter-check__box {
  background-color: #004767;
  border-color: #004767;
}
.catalog__filters .filters__panel .filter-section .filter-check input[type=checkbox]:checked + .filter-check__box img,
.catalog__filters .filters__panel .filter-section .filter-check input[type=radio]:checked + .filter-check__box img {
  opacity: 1;
  filter: brightness(0) invert(1);
}
.catalog__filters .filters__panel .filter-section .filter-check:hover .filter-check__box {
  border-color: #004767;
}
.catalog__filters .filters__panel .filters__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 37.5px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #475569;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.catalog__filters .filters__panel .filters__clear:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: #1e293b;
}
@media (max-width: 1280px) {
  .catalog__filters {
    border-radius: 12px;
    padding: 16px;
  }
  .catalog__filters .filters__panel .filters__search .filters__search-input {
    height: 44px;
    font-size: 14px;
  }
  .catalog__filters .filters__panel .filter-section .filter-check .filter-check__label {
    font-size: 14px;
  }
  .catalog__filters .filters__panel .filters__clear {
    height: 44px;
    font-size: 14px;
  }
}

.catalog__results .categories__quick {
  margin-bottom: 32px;
}
.catalog__results .categories__quick .title {
  margin-bottom: 12px;
  color: #64748B;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.catalog__results .categories__quick .categories__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.catalog__results .categories__quick .categories__list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 33.5px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #475569;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.catalog__results .categories__quick .categories__list li a:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: #1e293b;
}
.catalog__results .categories__quick .categories__list li a.highlight {
  background-color: #004767;
  border-color: #004767;
  color: #f8fafc;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
.catalog__results .categories__quick .categories__list li a.highlight:hover {
  background-color: #003d58;
  border-color: #003d58;
}
.catalog__results .results__number {
  margin-bottom: 24px;
  color: #64748B;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
}
.catalog__results .results__number span {
  color: #1E293B;
  font-weight: 500;
}
.catalog__results .results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.catalog__results .results__grid .card-product {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  width: 100%;
}
.catalog__results .results__grid .card-product .card-product__image {
  position: relative;
  background-color: #F8FAFC;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 432px;
}
.catalog__results .results__grid .card-product .card-product__image img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog__results .results__grid .card-product .card-product__image .card-product__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #E11D48;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.catalog__results .results__grid .card-product .card-product__image .card-product__badge img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog__results .results__grid .card-product .card-product__image .card-product__status {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  font-family: "Manrope", sans-serif;
}
.catalog__results .results__grid .card-product .card-product__image .card-product__status.is--stock {
  background-color: rgba(22, 163, 74, 0.12);
  color: #15803d;
}
.catalog__results .results__grid .card-product .card-product__image .card-product__status.is--order {
  background-color: rgba(217, 119, 6, 0.12);
  color: #b45309;
}
.catalog__results .results__grid .card-product .card-product__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catalog__results .results__grid .card-product .card-product__content .eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #0369A1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.catalog__results .results__grid .card-product .card-product__content .title {
  font-size: 18px;
  font-weight: 600;
  color: #1E293B;
  margin: 0;
}
.catalog__results .results__grid .card-product .card-product__content .description {
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  margin: 0;
}
@media (max-width: 1280px) {
  .catalog__results .results__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .catalog__results .results__grid {
    grid-template-columns: 1fr;
  }
}

.product__main {
  width: 100%;
  max-width: 1143px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 170px;
  display: grid;
  grid-template-columns: 4fr 6.5fr;
  gap: 24px;
  row-gap: 0;
}
.product__main .actions__back {
  grid-column: span 2;
}
@media (max-width: 1280px) {
  .product__main {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding-bottom: 80px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .product__main .actions__back {
    grid-column: span 1;
  }
}

.product__main .info__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product__main .info__heading .info__eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #dd1e26;
}
.product__main .info__heading .info__title {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -1px;
  color: #1e293b;
  margin: 0;
}
.product__main .info__heading .info__desc {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}
.product__main .is--mobile {
  display: none;
}
@media (max-width: 1280px) {
  .product__main .is--mobile {
    display: flex;
  }
}
.product__main .is--desktop {
  display: none;
}
@media (min-width: 1280px) {
  .product__main .is--desktop {
    display: flex;
  }
}

.product__info {
  border-radius: 16px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.product__info .info__specs {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.product__info .info__specs .spec__row {
  display: flex;
  align-items: stretch;
  min-height: 41px;
}
.product__info .info__specs .spec__row:nth-child(odd) {
  background-color: #f8fafc;
}
.product__info .info__specs .spec__row:nth-child(even) {
  background-color: #ffffff;
}
.product__info .info__specs .spec__row + .spec__row {
  border-top: 1px solid #e2e8f0;
}
.product__info .info__specs .spec__row .spec__label {
  width: 160px;
  flex-shrink: 0;
  padding: 10px 16px;
  border-right: 1px solid #e2e8f0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  display: flex;
  align-items: center;
}
.product__info .info__specs .spec__row .spec__value {
  padding: 10px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  display: flex;
  align-items: center;
}
.product__info .info__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product__info .info__features .feature__item {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 48px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0;
  position: relative;
}
.product__info .info__features .feature__item .feature__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #004767;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.product__info .info__features .feature__item .feature__check img {
  width: 10px;
  height: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__info .info__features .feature__item .feature__text {
  padding: 12px 16px 12px 48px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}
.product__info .info__features .feature__item .feature__text .feature__sub {
  font-weight: 400;
  color: #64748b;
}
.product__info .info__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 45px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.product__info .info__button img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__info .info__button:hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
  color: #1e293b;
}
.product__info .info__feedback-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product__info .info__feedback-card .feedback__header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product__info .info__feedback-card .feedback__header .feedback__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #004767;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
}
.product__info .info__feedback-card .feedback__header .feedback__name {
  flex: 1;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
}
.product__info .info__feedback-card .feedback__header .feedback__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.product__info .info__feedback-card .feedback__header .feedback__stars img {
  width: 13px;
  height: 13px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__info .info__feedback-card .feedback__quote {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #475569;
  margin: 0;
  padding-left: 36px;
}
.product__info .subtitle {
  color: #1E293B;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.product__info .info__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product__info .info__list .sublist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product__info .info__package {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product__info .info__package .package__item {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #1f2937;
}
.product__info .info__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.product__info .info__actions .action__primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  background-color: #dd1e26;
  border: none;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.product__info .info__actions .action__primary img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__info .info__actions .action__primary:hover {
  background-color: #b91c1c;
}
.product__info .info__actions .action__secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.product__info .info__actions .action__secondary img {
  width: 13px;
  height: 13px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__info .info__actions .action__secondary:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}
@media (max-width: 1280px) {
  .product__info {
    padding: 24px;
  }
  .product__info .info__heading .info__title {
    font-size: 28px;
  }
  .product__info .info__specs .spec__row .spec__label {
    width: 120px;
  }
}

.product__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product__gallery .gallery-w-thumbs__carousel .splide__track {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
}
.product__gallery .gallery-w-thumbs__carousel .splide__slide {
  background-color: #f8fafc;
  height: 432px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__gallery .gallery-w-thumbs__carousel .splide__slide img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__gallery .gallery-w-thumbs__thumbs .splide__track {
  overflow: hidden;
}
.product__gallery .gallery-w-thumbs__thumbs .splide__slide {
  height: 72px;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f8fafc;
  opacity: 0.6;
  cursor: pointer;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.product__gallery .gallery-w-thumbs__thumbs .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 2px;
}
.product__gallery .gallery-w-thumbs__thumbs .splide__slide.is-active {
  border-color: #004767;
  opacity: 1;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1280px) {
  .product__gallery .gallery-w-thumbs__carousel .splide__slide {
    height: 300px;
  }
  .product__gallery .gallery-w-thumbs__thumbs .splide__slide {
    height: 60px;
  }
}

.search__main {
  padding-top: 48px;
  padding-bottom: 56px;
  background: #E6EDF5;
}
.search__main .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.search__main .search__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.search__main .heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search__main .heading .eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 16.5px;
}
.search__main .heading .title {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #1e293b;
  line-height: 42px;
  letter-spacing: -0.6px;
  margin: 0;
}
.search__main .search__bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search__main .search__input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.search__main .search__input-wrap .input__icon {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  flex-shrink: 0;
}
.search__main .search__input-wrap input {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__main .search__input-wrap input::-moz-placeholder {
  color: #94a3b8;
}
.search__main .search__input-wrap input::placeholder {
  color: #94a3b8;
}
.search__main .search__input-wrap input:focus {
  border-color: #94a3b8;
}
.search__main .search__input-wrap input {
  padding-left: 40px;
  height: 52px;
}
.search__main .search__input-wrap select {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 40px 0 40px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__main .search__input-wrap select:hover {
  border-color: #cbd5e1;
}
.search__main .search__input-wrap select:focus {
  border-color: #94a3b8;
}
.search__main .search__input-wrap select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  color: #94a3b8;
  background-color: #f1f5f9;
}
.search__main .btn--search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #dd1e26;
  background: #dd1e26;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__main .btn--search img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.search__main .btn--search:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.search__main .btn--search:active {
  transform: translateY(0);
}
.search__main .btn--location {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__main .btn--location img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.search__main .btn--location:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.search__main .btn--location:active {
  transform: translateY(0);
}
@media (max-width: 1280px) {
  .search__main {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .search__main .search__card {
    padding: 24px;
  }
  .search__main .search__bar {
    flex-direction: column;
    align-items: stretch;
  }
  .search__main .btn--search,
  .search__main .btn--location {
    justify-content: center;
    width: 100%;
  }
}

.search__results {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #F3F5F9;
}
.search__results .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 6.5fr 3.4fr;
  grid-template-rows: auto 1fr;
  row-gap: 19px;
}
@media (min-width: 1280px) {
  .search__results .wrapper {
    overflow: hidden !important;
    height: 490px;
  }
}
.search__results .upper {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.search__results .upper .results__number {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  line-height: 19.5px;
}
.search__results .upper .results__number span {
  font-weight: 600;
  color: #1e293b;
}
.search__results .upper button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__results .upper button img {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.search__results .upper button:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}
.search__results .upper .btn--clear {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__results .upper .btn--clear img {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.search__results .upper .btn--clear:hover {
  background-color: #fef2f2;
  border-color: #dd1e26;
  color: #dd1e26;
}
.search__results .grid {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 6.5fr 3.4fr;
  gap: 32px;
  align-items: start;
  min-height: 0;
}
.search__results .map {
  border-radius: 16px;
  overflow: hidden;
  background: #e8edf3;
  position: sticky;
  top: 24px;
}
.search__results .map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
.search__results .scrollable__box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: scroll;
  padding-right: 4px;
  max-height: 100%;
}
.search__results .scrollable__box::-webkit-scrollbar {
  width: 4px;
}
.search__results .scrollable__box::-webkit-scrollbar-track {
  background: transparent;
}
.search__results .scrollable__box::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.search__results .tech-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.search__results .tech-card .card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.search__results .tech-card .card__tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.search__results .tech-card .card__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.search__results .tech-card .card__tag--nearest {
  background-color: #dd1e26;
  color: #ffffff;
}
.search__results .tech-card .card__tag--authorized {
  background-color: #dcfce7;
  color: #15803d;
}
.search__results .tech-card .card__distance {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  flex-shrink: 0;
}
.search__results .tech-card .card__name {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}
.search__results .tech-card .card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search__results .tech-card .card__info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.search__results .tech-card .card__info-row img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.search__results .tech-card .card__info-row span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  line-height: 20px;
}
.search__results .tech-card {
  border: 1px solid #e2e8f0;
}
.search__results .tech-card .card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  margin-top: 4px;
  border-radius: 8px;
  background-color: transparent;
  border: 1px solid #e2e8f0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__results .tech-card .card__cta img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.search__results .tech-card .card__cta:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}
.search__results .tech-card--highlight {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.search__results .tech-card--highlight .card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.search__results .tech-card--highlight .card__tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.search__results .tech-card--highlight .card__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.search__results .tech-card--highlight .card__tag--nearest {
  background-color: #dd1e26;
  color: #ffffff;
}
.search__results .tech-card--highlight .card__tag--authorized {
  background-color: #dcfce7;
  color: #15803d;
}
.search__results .tech-card--highlight .card__distance {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  flex-shrink: 0;
}
.search__results .tech-card--highlight .card__name {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}
.search__results .tech-card--highlight .card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search__results .tech-card--highlight .card__info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.search__results .tech-card--highlight .card__info-row img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.search__results .tech-card--highlight .card__info-row span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  line-height: 20px;
}
.search__results .tech-card--highlight {
  border: 1.5px solid #004767;
}
.search__results .tech-card--highlight .card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  margin-top: 4px;
  border-radius: 8px;
  background-color: #004767;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__results .tech-card--highlight .card__cta img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.search__results .tech-card--highlight .card__cta:hover {
  background-color: #003d58;
}
@media (max-width: 1280px) {
  .search__results {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .search__results .wrapper {
    grid-template-columns: 1fr;
  }
  .search__results .upper {
    grid-column: span 1;
  }
  .search__results .grid {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .search__results .map {
    height: 280px;
    position: static;
  }
  .search__results .scrollable__box {
    max-height: unset;
    overflow-y: visible;
    padding-right: 0;
  }
}

.search__resources {
  padding-top: 96px;
  padding-bottom: 96px;
}
.search__resources .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.search__resources .heading {
  margin-bottom: 40px;
}
.search__resources .heading .eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #dd1e26;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 18px;
}
.search__resources .heading .title {
  margin-top: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #1e293b;
  line-height: 48px;
  letter-spacing: -0.8px;
}
.search__resources .heading .subtitle {
  margin-top: 8px;
  color: #475569;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px;
  /* 160% */
}
.search__resources .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.search__resources .card--manuals {
  border-radius: 20px;
  background: #F8FAFC;
  display: flex;
  width: 100%;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
.search__resources .card--manuals .card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #004767;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.search__resources .card--manuals .card__icon img {
  width: 22px;
  height: 22px;
}
.search__resources .card--manuals .card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search__resources .card--manuals .card__body .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  margin: 0;
}
.search__resources .card--manuals .card__body .card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.search__resources .card--manuals .card__link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #004767;
  text-decoration: none;
  line-height: 1.5;
  transition: gap 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__resources .card--manuals .card__link img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.search__resources .card--manuals .card__link:hover {
  gap: 10px;
}
.search__resources .card--videos {
  border-radius: 20px;
  background: #F8FAFC;
  display: flex;
  width: 100%;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
.search__resources .card--videos .card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #dd1e26;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.search__resources .card--videos .card__icon img {
  width: 22px;
  height: 22px;
}
.search__resources .card--videos .card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search__resources .card--videos .card__body .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  margin: 0;
}
.search__resources .card--videos .card__body .card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.search__resources .card--videos .card__link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #dd1e26;
  text-decoration: none;
  line-height: 1.5;
  transition: gap 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__resources .card--videos .card__link img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.search__resources .card--videos .card__link:hover {
  gap: 10px;
}
@media (max-width: 1280px) {
  .search__resources {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .search__resources .grid {
    grid-template-columns: 1fr;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search__faq {
  padding-top: 80px;
  padding-bottom: 96px;
  background-color: #E6EDF5;
}
.search__faq .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 2.5fr 7.5fr;
  gap: 81px;
  align-items: start;
}
.search__faq .faq__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.search__faq .faq__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search__faq .faq__heading .eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #dd1e26;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 18px;
}
.search__faq .faq__heading .title {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.3;
  letter-spacing: -0.8px;
  margin: 0;
}
.search__faq .faq__heading .desc {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
.search__faq .faq__cta-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search__faq .faq__cta-card .cta__label {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}
.search__faq .faq__cta-card .cta__desc {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}
.search__faq .faq__cta-card .cta__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #004767;
  text-decoration: none;
  margin-top: 6px;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__faq .faq__cta-card .cta__link img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.search__faq .faq__cta-card .cta__link:hover {
  opacity: 0.8;
}
.search__faq .faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.search__faq .faq__item {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: #ffffff;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__faq .faq__item[open] {
  border-color: #1e293b;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.search__faq .faq__item[open] .icon--open {
  display: block;
}
.search__faq .faq__item[open] .icon--closed {
  display: none;
}
.search__faq .faq__item[open] .faq__icon {
  background-color: #1e293b;
}
.search__faq .faq__item:not([open]) .icon--open {
  display: none;
}
.search__faq .faq__item:not([open]) .icon--closed {
  display: block;
}
.search__faq .faq__item:not([open]) .faq__icon {
  background-color: #ffffff;
}
.search__faq .faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}
.search__faq .faq__question::-webkit-details-marker {
  display: none;
}
.search__faq .faq__question .faq__question-text {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
}
.search__faq .faq__question .faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__faq .faq__question .faq__icon img {
  width: 14px;
  height: 14px;
}
.search__faq .faq__answer {
  padding: 0 20px 20px;
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search__faq .faq__answer p {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 1280px) {
  .search__faq {
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .search__faq .wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.layout__breadcrumb.is--simple.breadcrumb__blog .breadcrumb__left {
  max-width: 530px !important;
}
@media (max-width: 1280px) {
  .layout__breadcrumb.is--simple.breadcrumb__blog .breadcrumb__left {
    max-width: 100% !important;
  }
}

.blog__highlight {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #e6edf5;
}
.blog__highlight .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  border-radius: 20px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__highlight .wrapper:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.blog__highlight .wrapper:hover .image img {
  transform: scale(1.05);
}
.blog__highlight .image {
  width: 100%;
  max-width: 458px;
  height: 337px;
  overflow: hidden;
  background: #c8d9e8;
  flex-shrink: 0;
  border-radius: 20px 0 0 20px;
}
.blog__highlight .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__highlight .content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  background-color: #F8FAFC;
  border-radius: 0 20px 20px 0;
  border: 1px solid transparent;
}
.blog__highlight .tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog__highlight .tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 18px;
  white-space: nowrap;
}
.blog__highlight .tag--highlight {
  background-color: #dd1e26;
  color: #ffffff;
}
.blog__highlight .tag--category {
  background-color: #dce8f0;
  color: #334155;
  border: 1px solid #c3d8e8;
}
.blog__highlight .title {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin: 0;
}
.blog__highlight .intro {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}
.blog__highlight .meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog__highlight .meta__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog__highlight .meta__item img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.blog__highlight .meta__item span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 19.5px;
  white-space: nowrap;
}
.blog__highlight .highlight__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #004767;
  text-decoration: none;
  line-height: 21px;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__highlight .highlight__link img {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.blog__highlight .highlight__link:hover {
  opacity: 0.75;
}
@media (max-width: 1280px) {
  .blog__highlight {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .blog__highlight .wrapper {
    flex-direction: column;
    gap: 0;
  }
  .blog__highlight .image {
    width: 100%;
    flex-shrink: unset;
    border-radius: 20px 20px 0 0;
    height: 260px;
  }
  .blog__highlight .content {
    border-radius: 0 0 20px 20px;
  }
  .blog__highlight .title {
    font-size: 26px;
  }
}

.blog__categories {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.blog__categories .categories__bar {
  width: 100%;
  max-width: 1268px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 97px;
}
.blog__categories .categories__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.blog__categories .categories__list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 33.5px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #475569;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__categories .categories__list li a:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: #1e293b;
}
.blog__categories .categories__list li a.highlight {
  background-color: #004767;
  border-color: #004767;
  color: #f8fafc;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
.blog__categories .categories__list li a.highlight:hover {
  background-color: #003d58;
  border-color: #003d58;
}
.blog__categories .filters__search {
  position: relative;
  width: 100%;
}
.blog__categories .filters__search .filters__search-icon {
  position: absolute;
  left: 13.75px;
  top: 50%;
  transform: translateY(-50%);
  width: 10.5px;
  height: 10.5px;
  pointer-events: none;
}
.blog__categories .filters__search .filters__search-input {
  width: 100%;
  height: 37.5px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0 12px 0 36px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__categories .filters__search .filters__search-input::-moz-placeholder {
  color: #94a3b8;
}
.blog__categories .filters__search .filters__search-input::placeholder {
  color: #94a3b8;
}
.blog__categories .filters__search .filters__search-input:focus {
  border-color: #004767;
  box-shadow: 0 0 0 3px rgba(0, 71, 103, 0.12);
}
@media (max-width: 1280px) {
  .blog__categories .categories__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .blog__categories .categories__list {
    flex-wrap: wrap;
  }
}

.blog__posts {
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #F8FAFC;
}
.blog__posts .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
}
.blog__posts .wrapper .results__number {
  margin-bottom: 24px;
  color: #64748B;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
}
.blog__posts .wrapper .results__number span {
  color: #1E293B;
  font-weight: 500;
}
.blog__posts .wrapper .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog__posts .wrapper .grid .post__card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__posts .wrapper .grid .post__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.blog__posts .wrapper .grid .post__card .card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.blog__posts .wrapper .grid .post__card .card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__posts .wrapper .grid .post__card:hover .card__thumb img {
  transform: scale(1.04);
}
.blog__posts .wrapper .grid .post__card .card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  flex: 1;
}
.blog__posts .wrapper .grid .post__card .card__content .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  line-height: 21.6px;
  letter-spacing: -0.3px;
  margin: 0;
}
.blog__posts .wrapper .grid .post__card .card__content .card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  line-height: 20px;
  margin: 0;
}
.blog__posts .wrapper .grid .post__card .card__content .card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
}
.blog__posts .wrapper .grid .post__card .card__content .card__footer .card__read-time {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog__posts .wrapper .grid .post__card .card__content .card__footer .card__read-time img {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.blog__posts .wrapper .grid .post__card .card__content .card__footer .card__read-time span {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 18px;
  white-space: nowrap;
}
.blog__posts .wrapper .grid .post__card .card__content .card__footer .card__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #004767;
  text-decoration: none;
  line-height: 19.5px;
  white-space: nowrap;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__posts .wrapper .grid .post__card .card__content .card__footer .card__link img {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.blog__posts .wrapper .grid .post__card .card__content .card__footer .card__link:hover {
  opacity: 0.75;
}
.blog__posts .wrapper .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 48px;
}
.blog__posts .wrapper .pagination .pagination__page {
  display: flex;
  width: 36px;
  height: 36px;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  color: #475569;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__posts .wrapper .pagination .pagination__page:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: #1e293b;
}
.blog__posts .wrapper .pagination .pagination__page.is--active {
  display: flex;
  width: 36px;
  height: 36px;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  color: #f8fafc;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  background-color: #004767;
  border: 1px solid #004767;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__posts .wrapper .pagination .pagination__page.is--active:hover {
  background-color: #003d58;
  border-color: #003d58;
}
.blog__posts .wrapper .pagination .pagination__chevron {
  display: flex;
  width: 36px;
  height: 36px;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  color: #64748b;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__posts .wrapper .pagination .pagination__chevron img {
  width: 14px;
  height: 14px;
}
.blog__posts .wrapper .pagination .pagination__chevron:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: #1e293b;
}
.blog__posts .wrapper .pagination .pagination__chevron:disabled, .blog__posts .wrapper .pagination .pagination__chevron.is--disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}
@media (max-width: 1280px) {
  .blog__posts {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .blog__posts .wrapper .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .blog__posts .wrapper .grid {
    grid-template-columns: 1fr;
  }
}

.post__main {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
.post__main .wrapper {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 56px;
}
@media (max-width: 1280px) {
  .post__main {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .post__main .wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .post__main .actions__back {
    padding-left: 0 !important;
    margin-bottom: 0;
  }
}

.post__post {
  padding-bottom: 64px;
}
.post__post .wrapper {
  width: 100%;
  max-width: 753px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.post__post .post__topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.post__post .post__topbar .post__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #dbeafe;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1e40af;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-transform: capitalize;
}
.post__post .post__topbar .post__readtime {
  display: flex;
  align-items: center;
  gap: 6px;
}
.post__post .post__topbar .post__readtime img {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.post__post .post__topbar .post__readtime span {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 18px;
  white-space: nowrap;
}
.post__post .post__title {
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.1;
  letter-spacing: -1.2px;
}
.post__post .post__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}
.post__post .meta__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.post__post .meta__item img {
  width: 10px;
  height: 11px;
  flex-shrink: 0;
}
.post__post .meta__item span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  line-height: 19.5px;
  white-space: nowrap;
}
.post__post .meta__sep {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #e2e8f0;
  line-height: 19.5px;
}
.post__post .meta__text {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  line-height: 19.5px;
  white-space: nowrap;
}
.post__post .post__cover {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 31px;
}
.post__post .post__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.post__post .post__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post__post .post__body p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}
.post__post .post__body h2 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  letter-spacing: -0.4px;
  margin: 0;
}
.post__post .post__cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 32px;
  min-height: 114px;
  border-radius: 16px;
  background: linear-gradient(90deg, #004767 0%, #046896 100%);
}
.post__post .post__cta-inline .cta-inline__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.post__post .post__cta-inline .cta-inline__title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}
.post__post .post__cta-inline .cta-inline__desc {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #94c7db;
  line-height: 1.5;
  margin: 0;
}
.post__post .post__cta-inline .cta-inline__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 0 24px;
  height: 44px;
  background-color: #dd1e26;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.post__post .post__cta-inline .cta-inline__btn:hover {
  background-color: #b91c1c;
}
@media (max-width: 1280px) {
  .post__post {
    padding-top: 32px;
    padding-bottom: 48px;
  }
  .post__post .post__title {
    font-size: 28px;
  }
  .post__post .post__cover {
    height: 240px;
  }
  .post__post .post__cta-inline {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    min-height: unset;
    gap: 20px;
  }
  .post__post .post__cta-inline .cta-inline__btn {
    width: 100%;
    justify-content: center;
  }
}

.post__sidebar {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.post__related {
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  background: #FFF;
  display: flex;
  width: 100%;
  padding: 21px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.post__related .heading {
  color: #1E293B;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  /* 150% */
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.post__related .related__card {
  width: 100%;
  display: flex;
  gap: 12px;
}
.post__related .related__card .thumb img {
  width: 64px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #F3F5F9;
  -o-object-fit: cover;
     object-fit: cover;
}
.post__related .related__card .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.post__related .related__card .content .category {
  border-radius: 335px;
  padding: 2px 8px;
  margin-bottom: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.3px;
}
.post__related .related__card .content .category.cat--1 {
  color: #1E40AF;
  background: #DBEAFE;
}
.post__related .related__card .content .category.cat--2 {
  color: #065F46;
  background: #D1FAE5;
}
.post__related .related__card .content .category.cat--3 {
  color: #5B21B6;
  background: #EDE9FE;
}
.post__related .related__card .content .title {
  color: #1E293B;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 17.55px;
}

.post__retailer {
  border-radius: 16px;
  border: 1px solid #004767;
  background: #004767;
  display: flex;
  width: 100%;
  padding: 21px;
  flex-direction: column;
  align-items: flex-start;
}
.post__retailer .icon {
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.post__retailer .title {
  color: #FFF;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  margin-bottom: 4px;
}
.post__retailer .desc {
  color: #94C7DB;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
}
.post__retailer .button {
  margin-top: 12px;
  border-radius: 8px;
  background: #DD1E26;
  color: #FFF;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  padding: 10px;
  width: 100%;
}

.post__newsletter {
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  display: flex;
  width: 100%;
  padding: 21px;
  flex-direction: column;
  align-items: flex-start;
}
.post__newsletter .title {
  color: #1E293B;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  margin-bottom: 4px;
}
.post__newsletter .desc {
  color: #64748B;
  font-family: Manrope;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.5px;
  margin-bottom: 12px;
}
.post__newsletter input {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.post__newsletter input::-moz-placeholder {
  color: #94a3b8;
}
.post__newsletter input::placeholder {
  color: #94a3b8;
}
.post__newsletter input:focus {
  border-color: #94a3b8;
}
.post__newsletter button {
  margin-top: 8px;
  border-radius: 8px;
  background: #004767;
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.5px;
  padding: 8px;
  width: 100%;
}

.dashboard__login {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 90px 16px;
  background-color: #f1f5f9;
}
.dashboard__login .login__card {
  width: 100%;
  max-width: 540px;
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 33px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.dashboard__login .login__card .card__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.dashboard__login .login__card .card__heading .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #1e293b;
  letter-spacing: -0.8px;
  line-height: 1.5;
  margin: 0;
}
.dashboard__login .login__card .card__heading .card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}
.dashboard__login .login__card .card__demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 11px 17px;
}
.dashboard__login .login__card .card__demo img {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.dashboard__login .login__card .card__demo p {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #0369a1;
  line-height: 1.5;
  margin: 0;
}
.dashboard__login .login__card .card__demo p strong {
  font-weight: 700;
}
.dashboard__login .login__card .card__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dashboard__login .login__card .card__field label {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  line-height: 1.5;
}
.dashboard__login .login__card .card__field label .required {
  color: #dd1e26;
}
.dashboard__login .login__card .card__field input[type=email],
.dashboard__login .login__card .card__field input[type=password],
.dashboard__login .login__card .card__field input[type=text] {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dashboard__login .login__card .card__field input[type=email]::-moz-placeholder, .dashboard__login .login__card .card__field input[type=password]::-moz-placeholder, .dashboard__login .login__card .card__field input[type=text]::-moz-placeholder {
  color: #94a3b8;
}
.dashboard__login .login__card .card__field input[type=email]::placeholder,
.dashboard__login .login__card .card__field input[type=password]::placeholder,
.dashboard__login .login__card .card__field input[type=text]::placeholder {
  color: #94a3b8;
}
.dashboard__login .login__card .card__field input[type=email]:focus,
.dashboard__login .login__card .card__field input[type=password]:focus,
.dashboard__login .login__card .card__field input[type=text]:focus {
  border-color: #94a3b8;
}
.dashboard__login .login__card .card__field .field__password-wrap {
  position: relative;
}
.dashboard__login .login__card .card__field .field__password-wrap input {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dashboard__login .login__card .card__field .field__password-wrap input::-moz-placeholder {
  color: #94a3b8;
}
.dashboard__login .login__card .card__field .field__password-wrap input::placeholder {
  color: #94a3b8;
}
.dashboard__login .login__card .card__field .field__password-wrap input:focus {
  border-color: #94a3b8;
}
.dashboard__login .login__card .card__field .field__password-wrap input {
  padding-right: 48px;
}
.dashboard__login .login__card .card__field .field__password-wrap .field__toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.dashboard__login .login__card .card__field .field__password-wrap .field__toggle img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.dashboard__login .login__card .field__forgot {
  display: flex;
  justify-content: flex-end;
}
.dashboard__login .login__card .field__forgot a {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #004767;
  text-decoration: none;
  line-height: 1.5;
}
.dashboard__login .login__card .field__forgot a:hover {
  text-decoration: underline;
}
.dashboard__login .login__card .card__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 50px;
  background-color: #dd1e26;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 4px 16px 0px rgba(221, 30, 38, 0.3);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dashboard__login .login__card .card__submit img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
.dashboard__login .login__card .card__submit:hover {
  background-color: #b91c1c;
  box-shadow: 0px 4px 20px 0px rgba(221, 30, 38, 0.45);
}
.dashboard__login .login__card .card__divider {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dashboard__login .login__card .card__divider .divider__line {
  flex: 1;
  height: 1px;
  background-color: #e2e8f0;
}
.dashboard__login .login__card .card__divider span {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.5;
}
.dashboard__login .login__card .card__register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dashboard__login .login__card .card__register img {
  width: 12px;
  height: 11px;
  -o-object-fit: contain;
     object-fit: contain;
}
.dashboard__login .login__card .card__register span {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #475569;
}
.dashboard__login .login__card .card__register:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}
.dashboard__login .login__note {
  max-width: 360px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8391a3;
  line-height: 1.6;
  margin: 0;
}
.dashboard__login .login__note a {
  display: inline;
  font-weight: 500;
  color: #004767;
  text-decoration: none;
}
.dashboard__login .login__note a:hover {
  text-decoration: underline;
}
@media (max-width: 1280px) {
  .dashboard__login {
    padding: 40px 24px;
  }
  .dashboard__login .login__card {
    padding: 32px 24px;
  }
  .dashboard__login .login__card .card__title {
    font-size: 22px;
  }
}

.contact__contact {
  padding-top: 64px;
  padding-bottom: 64px;
}
.contact__contact .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 32px;
}
@media (max-width: 1280px) {
  .contact__contact {
    padding-left: 24px;
    padding-right: 24px;
  }
  .contact__contact .wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.contact__contact .contact__form-card {
  background: #FFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact__contact .form__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__contact .form__heading .form__title {
  color: #1E293B;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  /* 150% */
  letter-spacing: -0.7px;
}
.contact__contact .form__heading .form__subtitle {
  color: #64748B;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.4px;
}
.contact__contact .contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__contact .contact__form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__contact .contact__form .field .field__label {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  line-height: 1.5;
}
.contact__contact .contact__form .field .field__label .required {
  color: #dd1e26;
}
.contact__contact .contact__form .field input[type=text],
.contact__contact .contact__form .field input[type=email],
.contact__contact .contact__form .field input[type=tel] {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__contact .contact__form .field input[type=text]::-moz-placeholder, .contact__contact .contact__form .field input[type=email]::-moz-placeholder, .contact__contact .contact__form .field input[type=tel]::-moz-placeholder {
  color: #94a3b8;
}
.contact__contact .contact__form .field input[type=text]::placeholder,
.contact__contact .contact__form .field input[type=email]::placeholder,
.contact__contact .contact__form .field input[type=tel]::placeholder {
  color: #94a3b8;
}
.contact__contact .contact__form .field input[type=text]:focus,
.contact__contact .contact__form .field input[type=email]:focus,
.contact__contact .contact__form .field input[type=tel]:focus {
  border-color: #94a3b8;
}
.contact__contact .contact__form .field textarea {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__contact .contact__form .field textarea::-moz-placeholder {
  color: #94a3b8;
}
.contact__contact .contact__form .field textarea::placeholder {
  color: #94a3b8;
}
.contact__contact .contact__form .field textarea:focus {
  border-color: #94a3b8;
}
.contact__contact .contact__form .field textarea {
  height: 130px;
  resize: vertical;
  padding-top: 14px;
  padding-bottom: 14px;
}
.contact__contact .contact__form .field .field__error {
  display: none;
  color: #ef4444;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 2px;
}
.contact__contact .contact__form .field .field__error.is--visible {
  display: block;
}
.contact__contact .contact__form .field__phone-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
}
.contact__contact .contact__form .field__phone-row input[type=tel] {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__contact .contact__form .field__phone-row input[type=tel]::-moz-placeholder {
  color: #94a3b8;
}
.contact__contact .contact__form .field__phone-row input[type=tel]::placeholder {
  color: #94a3b8;
}
.contact__contact .contact__form .field__phone-row input[type=tel]:focus {
  border-color: #94a3b8;
}
.contact__contact .contact__form .field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact__contact .contact__form .field__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.contact__contact .contact__form .field__checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 5px;
  background-color: #ffffff;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__contact .contact__form .field__checkbox input[type=checkbox]:checked {
  background-color: #004767;
  border-color: #004767;
}
.contact__contact .contact__form .field__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 11px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.contact__contact .contact__form .field__checkbox span {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  line-height: 1.5;
}
.contact__contact .contact__form .field__checkbox span a {
  color: #004767;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  display: inline;
}
.contact__contact .contact__form .field--bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.contact__contact .contact__form .field--bottom .form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  background-color: #dd1e26;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(221, 30, 38, 0.3);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__contact .contact__form .field--bottom .form__submit img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.contact__contact .contact__form .field--bottom .form__submit:hover {
  background-color: #b91c1c;
  box-shadow: 0 6px 20px rgba(221, 30, 38, 0.4);
  transform: translateY(-1px);
}
.contact__contact .contact__form .field--bottom .form__submit:active {
  transform: translateY(0);
}
.contact__contact .contact__form .field--bottom .form__note {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 1280px) {
  .contact__contact .contact__form-card {
    padding: 24px;
  }
  .contact__contact .contact__form .field--row {
    grid-template-columns: 1fr;
  }
}

.contact__lateral {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__lateral .lateral__card {
  display: flex;
  width: 100%;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}
.contact__lateral .lateral__card .card__heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact__lateral .lateral__card .card__heading .card__eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.5;
}
.contact__lateral .lateral__card .card__heading .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  line-height: 24px;
  margin: 0;
}
.contact__lateral .card--whatsapp .card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.contact__lateral .card--whatsapp .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__lateral .card--whatsapp .btn img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.contact__lateral .card--whatsapp .btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.contact__lateral .card--whatsapp .btn.btn--whatsapp {
  background-color: #25d366;
  color: #F8FAFC;
}
.contact__lateral .card--whatsapp .btn.btn--phone {
  background-color: #f3f5f9;
  color: #475569;
}
.contact__lateral .card--comercial .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact__lateral .card--comercial .list__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact__lateral .card--comercial .list__item .item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1F5F9;
  border-radius: 8px;
}
.contact__lateral .card--comercial .list__item .item__icon img {
  width: 16px;
  height: 16px;
}
.contact__lateral .card--comercial .list__item .item__text {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.5;
  text-decoration: none;
}
.contact__lateral .card--comercial .list__item .item__text:is(a):hover {
  text-decoration: underline;
}
.contact__lateral .card--location .card__map {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}
.contact__lateral .card--location .card__map iframe {
  display: block;
  width: 100%;
  border: 0;
  height: 153px;
  border-radius: 16px;
}
.contact__lateral .card--location .list__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact__lateral .card--location .list__item .item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1F5F9;
  border-radius: 8px;
}
.contact__lateral .card--location .list__item .item__icon img {
  width: 16px;
  height: 16px;
}
.contact__lateral .card--location .list__item .item__text {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.5;
}
.contact__lateral .card--location .btn--map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 42px;
  background-color: #F1F5F9;
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  border: 1px solid #E2E8F0;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__lateral .card--location .btn--map img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.contact__lateral .card--location .btn--map:hover {
  background-color: #E2E8F0;
}
.contact__lateral .card--social .list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact__lateral .card--social .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f3f5f9;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__lateral .card--social .social-btn img {
  width: 16px;
  height: 16px;
}
.contact__lateral .card--social .social-btn:hover {
  background-color: #E2E8F0;
}
@media (max-width: 1280px) {
  .contact__lateral {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact__lateral .lateral__card {
    flex: 1 1 280px;
  }
}

.contact__options {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #F8FAFC;
}
.contact__options .heading {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.contact__options .heading .eyebrow {
  color: #DD1E26;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  /* 150% */
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact__options .heading .title {
  margin-top: 8px;
  color: #1E293B;
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  /* 150% */
  letter-spacing: -0.8px;
}
.contact__options .grid {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact__options .card--support {
  border-radius: 20px;
  background: #f3f5f9;
  display: flex;
  width: 100%;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
.contact__options .card--support .card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #004767;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__options .card--support .card__icon img {
  width: 22px;
  height: 22px;
}
.contact__options .card--support .card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__options .card--support .card__body .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  margin: 0;
}
.contact__options .card--support .card__body .card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.contact__options .card--support .card__link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #004767;
  text-decoration: none;
  line-height: 1.5;
  transition: gap 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__options .card--support .card__link img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.contact__options .card--support .card__link:hover {
  gap: 10px;
}
.contact__options .card--jobs {
  border-radius: 20px;
  background: #f3f5f9;
  display: flex;
  width: 100%;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
.contact__options .card--jobs .card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__options .card--jobs .card__icon img {
  width: 22px;
  height: 22px;
}
.contact__options .card--jobs .card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__options .card--jobs .card__body .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  margin: 0;
}
.contact__options .card--jobs .card__body .card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.contact__options .card--jobs .card__link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  line-height: 1.5;
  transition: gap 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__options .card--jobs .card__link img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.contact__options .card--jobs .card__link:hover {
  gap: 10px;
}
.contact__options .card--shop {
  border-radius: 20px;
  background: #f3f5f9;
  display: flex;
  width: 100%;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
.contact__options .card--shop .card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #DD1E26;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__options .card--shop .card__icon img {
  width: 22px;
  height: 22px;
}
.contact__options .card--shop .card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__options .card--shop .card__body .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  margin: 0;
}
.contact__options .card--shop .card__body .card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.contact__options .card--shop .card__link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #DD1E26;
  text-decoration: none;
  line-height: 1.5;
  transition: gap 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__options .card--shop .card__link img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.contact__options .card--shop .card__link:hover {
  gap: 10px;
}
@media (max-width: 1280px) {
  .contact__options {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .contact__options .grid {
    grid-template-columns: 1fr;
  }
}

.career__culture {
  background: #E6EDF5;
  padding-top: 80px;
  padding-bottom: 80px;
}
.career__culture .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
}
.career__culture .wrapper .heading {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.career__culture .wrapper .heading .eyebrow {
  color: #DD1E26;
  text-align: center;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  /* 150% */
  letter-spacing: 1px;
  text-transform: uppercase;
}
.career__culture .wrapper .heading .title {
  margin-top: 8px;
  color: #1E293B;
  text-align: center;
  font-family: Manrope;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  /* 150% */
  letter-spacing: -1px;
}
.career__culture .wrapper .heading .text {
  color: #64748B;
  text-align: center;
  font-family: Manrope;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 160% */
  max-width: 490px;
  margin-left: auto;
  margin-right: auto;
}
.career__culture .wrapper .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.career__culture .wrapper .grid .card {
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  background: #FFF;
  padding: 28px;
}
.career__culture .wrapper .grid .card .icon {
  border-radius: 12px;
  background: #F3F5F9;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.career__culture .wrapper .grid .card .name {
  color: #1E293B;
  font-family: Manrope;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.5px;
  /* 150% */
  margin-bottom: 8px;
}
.career__culture .wrapper .grid .card .text {
  color: #1E293B;
  font-family: Manrope;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.5px;
  /* 150% */
}
@media (max-width: 1280px) {
  .career__culture .wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .career__culture .wrapper .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .career__culture .wrapper .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.career__openings {
  background: #f8fafc;
  padding-top: 80px;
  padding-bottom: 80px;
}
.career__openings .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.career__openings .wrapper .heading {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.career__openings .wrapper .heading .eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #dd1e26;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.career__openings .wrapper .heading .title {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0;
}
.career__openings .wrapper .heading .text {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
.career__openings .wrapper .list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 8px;
}
.career__openings .wrapper .card {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__openings .wrapper .card:hover {
  background-color: #f8fafc;
}
.career__openings .wrapper .card__accent {
  width: 4px;
  height: 32px;
  border-radius: 999px;
  background-color: #e2e8f0;
  flex-shrink: 0;
}
.career__openings .wrapper .card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.career__openings .wrapper .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  line-height: 24px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.career__openings .wrapper .card__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.career__openings .wrapper .tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}
.career__openings .wrapper .tag--dept {
  background-color: #dbeafe;
  color: #1e40af;
}
.career__openings .wrapper .tag--location {
  background-color: #f1f5f9;
  color: #475569;
}
.career__openings .wrapper .tag--regime {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
}
.career__openings .wrapper .tag--remote {
  background-color: #fef9c3;
  border: 1px solid #fde68a;
  color: #92400e;
}
.career__openings .wrapper .card__action {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.career__openings .wrapper .card__action span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__openings .wrapper .card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background-color: #f1f5f9;
  flex-shrink: 0;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__openings .wrapper .card__icon img {
  width: 12px;
  height: 12px;
}
.career__openings .wrapper .card:hover .card__action span {
  color: #004767;
}
.career__openings .wrapper .card:hover .card__action .card__icon {
  background-color: #e2e8f0;
}
@media (max-width: 1280px) {
  .career__openings {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .career__openings .wrapper .heading .title {
    font-size: 28px;
  }
  .career__openings .wrapper .card {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
  }
  .career__openings .wrapper .card__title {
    white-space: normal;
  }
  .career__openings .wrapper .card__action {
    width: 100%;
    justify-content: flex-end;
  }
}

.career__talents {
  background: linear-gradient(232deg, #001c29 34%, #004767 92%);
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}
.career__talents .mascot {
  position: absolute;
  bottom: -40px;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.career__talents .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 378px 1fr;
  gap: 80px;
  align-items: start;
}
.career__talents .heading {
  padding-top: 64px;
  position: sticky;
  top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.career__talents .heading .eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 18px;
}
.career__talents .heading .title {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0;
}
.career__talents .heading .text {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}
.career__talents .form {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.career__talents .form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.career__talents .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.career__talents .field__label {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  line-height: 1.5;
}
.career__talents .field__label .required {
  color: #dd1e26;
}
.career__talents .field__label .required {
  color: #dd1e26;
}
.career__talents .field__label .optional {
  color: #94a3b8;
  font-weight: 400;
}
.career__talents .field__input {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__talents .field__input::-moz-placeholder {
  color: #94a3b8;
}
.career__talents .field__input::placeholder {
  color: #94a3b8;
}
.career__talents .field__input:focus {
  border-color: #94a3b8;
}
.career__talents .field__phone-row {
  display: flex;
  gap: 8px;
}
.career__talents .field__phone-row .field__input--ddd {
  width: 80px;
  flex-shrink: 0;
  text-align: center;
}
.career__talents .field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.career__talents .copernicus__select {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.career__talents .copernicus__select .copernicus__selected {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__talents .copernicus__select .copernicus__selected::-moz-placeholder {
  color: #94a3b8;
}
.career__talents .copernicus__select .copernicus__selected::placeholder {
  color: #94a3b8;
}
.career__talents .copernicus__select .copernicus__selected:focus {
  border-color: #94a3b8;
}
.career__talents .copernicus__select .copernicus__selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}
.career__talents .copernicus__select .copernicus__selected .selected-text {
  color: #94a3b8;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__talents .copernicus__select .copernicus__selected.is--chosen .selected-text {
  color: #1e293b;
}
.career__talents .copernicus__select .copernicus__selected .arrow-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__talents .copernicus__select.is--open .copernicus__selected {
  border-color: #94a3b8;
}
.career__talents .copernicus__select.is--open .copernicus__selected .arrow-icon {
  transform: rotate(180deg);
}
.career__talents .copernicus__select.is--open .copernicus__options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.career__talents .copernicus__select .copernicus__options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 100;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__talents .copernicus__select .copernicus__option {
  padding: 10px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__talents .copernicus__select .copernicus__option:hover {
  background-color: #f8fafc;
  color: #1e293b;
}
.career__talents .copernicus__select .copernicus__option.is--selected {
  background-color: #f1f5f9;
  color: #1e293b;
  font-weight: 500;
}
.career__talents .copernicus__file-picker {
  position: relative;
  width: 100%;
}
.career__talents .copernicus__file-picker input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.career__talents .copernicus__file-picker .file-picker__dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  min-height: 160px;
  background-color: #f8fafc;
  border: 2px dashed #e2e8f0;
  border-radius: 10px;
  text-align: center;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__talents .copernicus__file-picker .file-picker__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #e2e8f0;
  flex-shrink: 0;
}
.career__talents .copernicus__file-picker .file-picker__icon img {
  width: 18px;
  height: 18px;
}
.career__talents .copernicus__file-picker .file-picker__label {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #475569;
  line-height: 19.5px;
  margin: 0;
}
.career__talents .copernicus__file-picker .file-picker__label .file-picker__cta {
  font-weight: 500;
  color: #004767;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.career__talents .copernicus__file-picker .file-picker__label .file-picker__filename {
  font-weight: 500;
  color: #1e293b;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}
.career__talents .copernicus__file-picker .file-picker__hint {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 16.5px;
  margin: 0;
}
.career__talents .copernicus__file-picker .file-picker__name {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #004767;
  text-align: center;
  min-height: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__talents .copernicus__file-picker.is--dragging .file-picker__dropzone {
  border-color: #004767;
  background-color: #e6edf5;
}
.career__talents .copernicus__file-picker.is--selected .file-picker__dropzone {
  border-color: #004767;
  background-color: #f0f7fb;
}
.career__talents .copernicus__file-picker.is--selected .file-picker__icon {
  background-color: #d0e8f2;
}
.career__talents .copernicus__file-picker.is--selected .file-picker__hint {
  color: #64748b;
}
.career__talents .copernicus__file-picker.is--selected .file-picker__name {
  max-height: 40px;
  margin-top: 4px;
}
.career__talents .form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  border-radius: 10px;
  background-color: #dd1e26;
  border: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.1px;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.career__talents .form__submit img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.career__talents .form__submit:hover {
  background-color: #b91c1c;
  box-shadow: 0 8px 20px rgba(221, 30, 38, 0.3);
}
.career__talents .form__submit {
  height: 56px;
  margin-top: 4px;
}
.career__talents .form__caption {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  text-align: center;
  line-height: 18px;
  margin: 0;
}
.career__talents .form__caption a {
  display: inline;
  color: #94a3b8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 1280px) {
  .career__talents {
    padding-top: 64px;
    padding-bottom: 240px;
  }
  .career__talents .mascot {
    bottom: -20px;
    right: -100px;
    width: 300px;
  }
  .career__talents .wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .career__talents .wrapper .heading {
    position: static;
  }
  .career__talents .wrapper .heading .title {
    font-size: 28px;
  }
  .career__talents .wrapper .form {
    padding: 24px;
  }
  .career__talents .wrapper .field__row {
    grid-template-columns: 1fr;
  }
}

.retailer__hero {
  background: linear-gradient(203deg, #001c29 4.82%, #004767 50.64%, #046996 95.18%);
  width: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
}
.retailer__hero .background {
  position: absolute;
  bottom: -75px;
  right: 0;
  z-index: 1;
}
.retailer__hero .wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 96px;
  padding-bottom: 80px;
  width: 100%;
}
.retailer__hero .content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 680px;
}
.retailer__hero .content__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.retailer__hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 64px;
  border: 1px solid #cbd5e1;
  background: rgba(243, 245, 249, 0.16);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f3f5f9;
  white-space: nowrap;
  align-self: flex-start;
  margin: 0;
}
.retailer__hero .title {
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 54.6px;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin: 0;
}
.retailer__hero .title span {
  color: #dd1e26;
  font-weight: 700;
}
.retailer__hero .text {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #cbd5e1;
  line-height: 1.2;
  margin: 0;
  max-width: 606px;
}
.retailer__hero .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  background: #dd1e26;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.retailer__hero .button img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.retailer__hero .button:hover {
  background: rgb(185.0764940239, 25.1235059761, 31.8231075697);
  transform: translateY(-1px);
}
.retailer__hero .stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.retailer__hero .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 17px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 110px;
  text-align: center;
}
.retailer__hero .stat__number {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  line-height: 22px;
  margin: 0;
}
.retailer__hero .stat__label {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 18px;
  margin: 0;
}
@media (max-width: 1280px) {
  .retailer__hero {
    min-height: auto;
  }
  .retailer__hero .wrapper {
    padding-top: 72px;
    padding-bottom: 64px;
  }
  .retailer__hero .background {
    height: 80%;
    width: auto;
    bottom: 0;
  }
  .retailer__hero .title {
    font-size: 36px;
    line-height: 38px;
  }
  .retailer__hero .text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .retailer__hero .wrapper {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .retailer__hero .background {
    display: none;
  }
  .retailer__hero .content {
    max-width: 100%;
    gap: 24px;
  }
  .retailer__hero .title {
    font-size: 28px;
    line-height: 30px;
    letter-spacing: -1px;
  }
  .retailer__hero .text {
    font-size: 16px;
    line-height: 1.5;
  }
  .retailer__hero .button {
    align-self: stretch;
    justify-content: center;
  }
  .retailer__hero .stats {
    gap: 10px;
  }
  .retailer__hero .stat {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
  }
}
@media (max-width: 480px) {
  .retailer__hero .wrapper {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .retailer__hero .content__heading {
    gap: 16px;
  }
  .retailer__hero .title {
    font-size: 24px;
    line-height: 26px;
  }
  .retailer__hero .content {
    gap: 20px;
  }
  .retailer__hero .stat__number {
    font-size: 18px;
  }
}

.retailer__differentials {
  padding-top: 96px;
  padding-bottom: 96px;
}
.retailer__differentials .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
}
.retailer__differentials .heading {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.retailer__differentials .heading .eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #dd1e26;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.retailer__differentials .heading .title {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0;
}
.retailer__differentials .heading .text {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
.retailer__differentials .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.retailer__differentials .card {
  background: #f3f5f9;
  border-radius: 20px;
  padding: 28px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.retailer__differentials .card .card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.retailer__differentials .card .card__icon img {
  width: 20px;
  height: 20px;
}
.retailer__differentials .card .card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.retailer__differentials .card .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #1e293b;
  line-height: 25.5px;
  margin: 0;
}
.retailer__differentials .card .card__text {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 1280px) {
  .retailer__differentials {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .retailer__differentials .wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .retailer__differentials .heading {
    position: static;
  }
  .retailer__differentials .heading .title {
    font-size: 28px;
  }
  .retailer__differentials .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .retailer__differentials .grid {
    grid-template-columns: 1fr;
  }
}

.retailer__program {
  background: #e6edf5;
  padding-top: 80px;
  padding-bottom: 80px;
}
.retailer__program .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  gap: 75px;
}
.retailer__program .wrapper .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 449px;
  flex-shrink: 0;
}
.retailer__program .wrapper .content .eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #dd1e26;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.retailer__program .wrapper .content .title {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0;
}
.retailer__program .wrapper .content .tagline {
  color: #64748B;
  font-family: Manrope;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.75px;
}
.retailer__program .wrapper .content .text {
  color: #475569;
  font-family: Manrope;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.5px;
}
.retailer__program .wrapper .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.retailer__program .wrapper .card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.retailer__program .wrapper .card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #004767;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.retailer__program .wrapper .card__icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}
.retailer__program .wrapper .card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.retailer__program .wrapper .card__title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  line-height: 27px;
  margin: 0;
}
.retailer__program .wrapper .card__text {
  color: #475569;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.1px;
}
@media (max-width: 1280px) {
  .retailer__program {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .retailer__program .wrapper {
    flex-direction: column;
  }
  .retailer__program .wrapper .grid {
    grid-template-columns: 1fr;
  }
  .retailer__program .wrapper .content .title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .retailer__program .wrapper .grid {
    grid-template-columns: 1fr;
  }
}

.retailer__partners {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f8fafc;
}
.retailer__partners .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.retailer__partners .title {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 16.5px;
  margin: 0 0 24px;
}
.retailer__partners .splide__partners .splide__pagination {
  bottom: 24px;
  gap: 8px;
}
.retailer__partners .splide__partners .splide__pagination li .splide__pagination__page {
  width: 8px;
  height: 8px;
  background: #004767;
  border-radius: 50%;
  opacity: 1;
  margin: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.retailer__partners .splide__partners .splide__pagination li .splide__pagination__page.is-active {
  background: #DD1E26;
  transform: scale(1.25);
}
.retailer__partners .splide__partners .splide__pagination {
  margin-top: 28px !important;
}
.retailer__partners .card {
  height: 72px;
  background: #f3f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
}
.retailer__partners .card img {
  max-height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.retailer__partners .card:hover img {
  filter: grayscale(0) opacity(1);
}

.retailer__testimonials {
  padding-bottom: 80px;
  background: #f8fafc;
}
.retailer__testimonials .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.retailer__testimonials .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}
.retailer__testimonials .heading .eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #dd1e26;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.retailer__testimonials .heading .title {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0;
}
.retailer__testimonials .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.retailer__testimonials .card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.retailer__testimonials .card__quote-icon {
  width: 28px;
  height: 22px;
  flex-shrink: 0;
}
.retailer__testimonials .card__quote-icon img {
  width: 100%;
  height: 100%;
}
.retailer__testimonials .card__text {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #475569;
  line-height: 25.5px;
  margin: 0;
  flex: 1;
}
.retailer__testimonials .card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.retailer__testimonials .card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #004767;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 19.5px;
}
.retailer__testimonials .card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.retailer__testimonials .card__name {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  line-height: 21px;
  margin: 0;
}
.retailer__testimonials .card__role {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 18px;
  margin: 0;
}
@media (max-width: 1280px) {
  .retailer__testimonials {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .retailer__testimonials .heading .title {
    font-size: 28px;
  }
  .retailer__testimonials .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .retailer__testimonials .grid {
    grid-template-columns: 1fr;
  }
}

.retailer__steps {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
}
.retailer__steps .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.retailer__steps .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 56px;
  text-align: center;
}
.retailer__steps .content .eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #dd1e26;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.retailer__steps .content .title {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0;
}
.retailer__steps .grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 0 16px;
}
.retailer__steps .step {
  min-height: 183px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.retailer__steps .step__number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #004767;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 27px;
  position: relative;
  z-index: 2;
}
.retailer__steps .step__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
.retailer__steps .step__title {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #1e293b;
  line-height: 25.5px;
  margin: 0;
}
.retailer__steps .step__text {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  line-height: 22.4px;
  margin: 0;
}
.retailer__steps .step__connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 19px;
}
.retailer__steps .step__connector img {
  width: 36px;
  height: 10px;
  opacity: 0.9;
}
.retailer__steps .step.is--final .step__number {
  background: #dd1e26;
}
@media (max-width: 1280px) {
  .retailer__steps {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .retailer__steps .content .title {
    font-size: 28px;
  }
  .retailer__steps .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .retailer__steps .step__connector {
    display: none;
  }
}
@media (max-width: 768px) {
  .retailer__steps .grid {
    grid-template-columns: 1fr;
  }
}

.retailer__contact {
  padding-top: 96px;
  padding-bottom: 96px;
  background: linear-gradient(232deg, #001C29 34.44%, #004767 92.23%);
}
.retailer__contact .wrapper {
  width: 100%;
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.retailer__contact .wrapper .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}
.retailer__contact .wrapper .heading .eyebrow {
  color: #94a3b8;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.retailer__contact .wrapper .heading .title {
  color: #ffffff;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0;
}
.retailer__contact .wrapper .heading .text {
  color: #94a3b8;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.retailer__contact .wrapper .grid {
  display: grid;
  grid-template-columns: 7.8fr 3fr;
  gap: 48px;
  align-items: start;
}
.retailer__contact .wrapper .form {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
}
.retailer__contact .wrapper .form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.retailer__contact .wrapper .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.retailer__contact .wrapper .field__label {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  line-height: 1.5;
}
.retailer__contact .wrapper .field__label .required {
  color: #dd1e26;
}
.retailer__contact .wrapper .field__label .required {
  color: #dd1e26;
}
.retailer__contact .wrapper .field__input {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.retailer__contact .wrapper .field__input::-moz-placeholder {
  color: #94a3b8;
}
.retailer__contact .wrapper .field__input::placeholder {
  color: #94a3b8;
}
.retailer__contact .wrapper .field__input:focus {
  border-color: #94a3b8;
}
.retailer__contact .wrapper .field__phone-row {
  display: flex;
  gap: 8px;
}
.retailer__contact .wrapper .field__phone-row .field__input--ddd {
  width: 80px;
  flex-shrink: 0;
  text-align: center;
}
.retailer__contact .wrapper .field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.retailer__contact .wrapper .field__select-wrapper {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__selected {
  width: 100%;
  height: 52px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__selected::-moz-placeholder {
  color: #94a3b8;
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__selected::placeholder {
  color: #94a3b8;
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__selected:focus {
  border-color: #94a3b8;
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__selected .selected-text {
  color: #94a3b8;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__selected.is--chosen .selected-text {
  color: #1e293b;
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__selected .arrow-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.retailer__contact .wrapper .field__select-wrapper.is--open .copernicus__selected {
  border-color: #94a3b8;
}
.retailer__contact .wrapper .field__select-wrapper.is--open .copernicus__selected .arrow-icon {
  transform: rotate(180deg);
}
.retailer__contact .wrapper .field__select-wrapper.is--open .copernicus__options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 100;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__option {
  padding: 10px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__option:hover {
  background-color: #f8fafc;
  color: #1e293b;
}
.retailer__contact .wrapper .field__select-wrapper .copernicus__option.is--selected {
  background-color: #f1f5f9;
  color: #1e293b;
  font-weight: 500;
}
.retailer__contact .wrapper .form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  border-radius: 10px;
  background-color: #dd1e26;
  border: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.1px;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.retailer__contact .wrapper .form__submit img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.retailer__contact .wrapper .form__submit:hover {
  background-color: #b91c1c;
  box-shadow: 0 8px 20px rgba(221, 30, 38, 0.3);
}
.retailer__contact .wrapper .form__submit {
  margin-top: 4px;
}
.retailer__contact .wrapper .form__caption {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #94a3b8;
  text-align: center;
  line-height: 19.5px;
  margin: 0;
}
.retailer__contact .wrapper .content {
  position: sticky;
  top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.retailer__contact .wrapper .aside-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.retailer__contact .wrapper .aside-card__title {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 21px;
  margin: 0;
}
.retailer__contact .wrapper .checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.retailer__contact .wrapper .checklist__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.retailer__contact .wrapper .checklist__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #dd1e26;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.retailer__contact .wrapper .checklist__icon img {
  width: 11px;
  height: 11px;
}
.retailer__contact .wrapper .checklist__text {
  color: #CBD5E1;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.retailer__contact .wrapper .cta__label {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 15px;
  margin: 0;
}
.retailer__contact .wrapper .cta__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 27px;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.retailer__contact .wrapper .cta__phone .box {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.retailer__contact .wrapper .cta__phone img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  flex-shrink: 0;
}
.retailer__contact .wrapper .cta__phone:hover {
  color: #dd1e26;
}
.retailer__contact .wrapper .cta__email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #64748b;
  line-height: 18px;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.retailer__contact .wrapper .cta__email .box {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.retailer__contact .wrapper .cta__email img {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  flex-shrink: 0;
}
.retailer__contact .wrapper .cta__email:hover {
  color: #ffffff;
}
@media (max-width: 1280px) {
  .retailer__contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .retailer__contact .wrapper .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .retailer__contact .wrapper .heading {
    margin-bottom: 40px;
  }
  .retailer__contact .wrapper .heading .title {
    font-size: 28px;
  }
  .retailer__contact .wrapper .field__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .retailer__contact {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .retailer__contact .wrapper .field__phone-row {
    flex-direction: column;
  }
  .retailer__contact .wrapper .field__phone-row .field__input--ddd {
    width: 100%;
    text-align: left;
  }
}/*# sourceMappingURL=main.css.map */
/* === botão "Quero Comprar" abaixo do card (home destaque + catálogo) === */
.card-product__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.card-product__actions .action__primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background-color: #dd1e26;
  border: none;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-product__actions .action__primary:hover {
  background-color: #b91c1c;
}
.card-product__actions .action__primary img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.home__products .products__carousel .splide__track .splide__list .splide__slide {
  flex-direction: column;
  gap: 12px;
}
.results__grid .results__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.results__grid .results__item .card-product {
  flex: 1 1 auto;
}

/* === divisor no card vermelho (dúvidas técnicas + busque assistência) === */
.layout__cta .cta__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 8px 0;
}
