/*
 * MatlabakEna unified responsive system.
 * Loaded last so the old breakpoint files cannot move content with absolute offsets.
 * Design widths: compact 320-767, tablet 768-1199, desktop 1200-1536+, fluid between.
 */
:root {
  --site-ink: #17324d;
  --site-muted: #64748b;
  --site-brand: #1877b7;
  --site-accent: #23a99f;
  --site-warm: #ef8354;
  --site-line: #e2e8f0;
  --site-surface: #ffffff;
  --site-soft: #f5f9fb;
  --site-radius: 12px;
  --site-content: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body#BODY,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--site-soft);
  color: var(--site-ink);
  line-height: 1.6;
}

img,
video,
svg,
canvas {
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  max-width: 100%;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  overflow-wrap: anywhere;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: anywhere;
}

/* Shared page width and legacy offset neutralization */
.container,
.container-fluid,
.section1 .container,
.footer-container {
  width: min(100% - 32px, var(--site-content)) !important;
  max-width: var(--site-content) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.container-fluid {
  margin-left: auto !important;
}

.row {
  width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  left: auto !important;
  right: auto !important;
}

[class*="col-"] {
  min-width: 0;
}

/* Header: one predictable flex layout at every width */
#navbar {
  position: relative !important;
  z-index: 1000;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 66px;
  padding: 10px max(16px, calc((100% - var(--site-content)) / 2)) !important;
  border-bottom: 1px solid var(--site-line);
  background: rgba(255, 255, 255, .98) !important;
  box-shadow: 0 2px 14px rgba(23, 50, 77, .06);
}

#navbar .navbar-brand,
#navbar .navbar-brand-desktop {
  position: static !important;
  right: auto !important;
  left: auto !important;
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  order: 0 !important;
  margin: 0 auto 0 0 !important;
  padding: 0 !important;
  color: var(--site-ink) !important;
}

#navbar .navbar-brand img {
  width: auto;
  height: 40px;
  border-radius: 9px;
}

#navbar .nav-link img.rounded-circle,
#navbar .nav-link img[src*="avatar"] {
  display: inline-block !important;
  width: 25px !important;
  min-width: 25px !important;
  max-width: 25px !important;
  height: 25px !important;
  min-height: 25px !important;
  max-height: 25px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  vertical-align: middle;
}

#navbar .navbar-brand span {
  font-size: 1.1rem;
  font-weight: 700;
}

#navbar .navbar-toggler {
  position: static !important;
  order: 3;
  margin: 0 0 0 10px !important;
}

#navbar .navbar-collapse {
  position: static !important;
  width: auto !important;
  padding: 0 !important;
  background: transparent !important;
}

#navbar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 !important;
}

#navbar .nav-item,
#navbar #loginIcon,
#navbar #addPhoto,
#navbar #dropdownMenuButton1 {
  position: static !important;
  right: auto !important;
  left: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}

#navbar .nav-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 12px !important;
  border-radius: 8px;
  color: var(--site-ink) !important;
  background: transparent !important;
  white-space: nowrap;
}

#navbar .nav-link:hover,
#navbar .nav-link:focus {
  color: var(--site-brand) !important;
  background: #edf7fb !important;
}

#navbar .dropdown-menu {
  right: 0 !important;
  left: auto !important;
  max-width: calc(100vw - 32px);
  border: 1px solid var(--site-line);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(23, 50, 77, .13);
}

#navbar #sarchForM {
  position: static !important;
  display: block !important;
  width: min(260px, 28vw);
  margin: 0 14px 0 0 !important;
}

#navbar #sarchForM input {
  position: static !important;
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  text-align: right;
}

/* Generic content surfaces and forms */
main,
.content,
.page-content {
  width: 100%;
  max-width: var(--site-content);
  margin-right: auto;
  margin-left: auto;
}

form:not(.navbar-form):not(.example) {
  max-width: 100%;
}

input:not([type="radio"]):not([type="checkbox"]),
select,
textarea {
  min-height: 42px;
  max-width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--site-brand);
  outline: 3px solid rgba(24, 119, 183, .14);
}

button,
.btn {
  max-width: 100%;
  border-radius: 8px;
}

.table-responsive {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  max-width: 100%;
}

/* Homepage: remove legacy offsets and use a stable fluid flow */
.section1,
.section2,
.section3 {
  position: relative !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  height: auto !important;
  min-height: 0 !important;
  width: 100% !important;
}

.section1 {
  padding: clamp(32px, 6vw, 76px) 16px !important;
  gap: clamp(22px, 4vw, 42px) !important;
}

.section1 .container {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
}

@media (min-width: 992px) {
  .section1 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .section1 .container {
    display: grid !important;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr) !important;
    align-items: center !important;
    gap: clamp(28px, 5vw, 72px) !important;
    min-height: 320px !important;
  }

  .section1 .container > :first-child {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .section1 .container > :nth-child(2) {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .section1 .HomePhoto {
    display: block !important;
    width: 100% !important;
    max-width: 460px !important;
    margin: 0 auto !important;
  }

  .SearchBar {
    flex: 0 0 auto !important;
    width: min(900px, 100%) !important;
    margin: 30px auto 0 !important;
  }
}

@media (min-width: 1201px) {
  .section1 .container {
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr) !important;
  }

  .section1 .HomePhoto {
    max-width: 380px !important;
  }
}

@media (min-width: 1200px) {
  #navbar .navbar-collapse {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto;
  }

  #navbar .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    white-space: nowrap;
  }

  #navbar #loginIcon,
  #navbar #addPhoto,
  #navbar #dropdownMenuButton1 {
    display: list-item !important;
    position: static !important;
    right: auto !important;
    left: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
  }

  #navbar #loginIcon {
    order: 1 !important;
  }

  #navbar #addPhoto {
    order: 2 !important;
  }

  #navbar #dropdownMenuButton1 {
    order: 3 !important;
  }

  #navbar #loginIcon > .nav-link,
  #navbar #addPhoto > .nav-link,
  #navbar #dropdownMenuButton1 > .nav-link {
    margin: 0 !important;
    white-space: nowrap;
  }
}

.header1,
.section1 .header1 {
  position: static !important;
  width: auto !important;
  max-width: 680px;
  margin: 0 !important;
  padding: 0 !important;
  text-align: right;
}

.header1 h1,
.section1 h1 {
  width: auto !important;
  margin: 0 0 16px !important;
  font-size: clamp(1.85rem, 4vw, 3.7rem) !important;
  line-height: 1.35 !important;
  text-align: right !important;
}

.header1 p,
.section1 p {
  width: auto !important;
  max-width: 650px;
  margin: 0 !important;
  padding: 0 !important;
  font-size: clamp(.95rem, 1.4vw, 1.12rem) !important;
  line-height: 1.9 !important;
  text-align: right !important;
}

.HomePhoto {
  position: static !important;
  display: block !important;
  width: 100% !important;
  max-width: 460px !important;
  margin: 0 auto !important;
  border-radius: var(--site-radius) !important;
  object-fit: cover;
}

.SearchBar {
  position: static !important;
  z-index: 1;
  width: min(900px, 100%) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

form.example {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 6px;
  border-radius: 10px;
}

form.example input[type="text"] {
  position: static !important;
  width: auto !important;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 !important;
  padding: 12px 14px !important;
  border: 0 !important;
  text-align: right;
}

form.example button {
  position: static !important;
  flex: 0 0 auto;
  width: auto !important;
  margin: 0 !important;
  padding: 12px 20px !important;
}

.section2 {
  padding: clamp(36px, 6vw, 84px) 16px !important;
  background: var(--site-soft) !important;
  color: var(--site-ink) !important;
}

.section2Contint {
  position: static !important;
  display: flex !important;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--site-content)) !important;
  margin: 0 auto 28px !important;
  padding: 0 !important;
  color: var(--site-ink) !important;
}

.section2Contint p {
  width: auto !important;
  max-width: 680px;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  color: var(--site-muted);
}

.section2Contint h2,
.section2Contint h3,
.section2Contint h4 {
  color: var(--site-ink) !important;
}

.section2Button {
  position: static !important;
  flex: 0 0 auto;
}

.card1 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--site-content)) !important;
  margin: 0 auto !important;
}

.card1 .row {
  display: contents !important;
}

.card1 .module {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
}

.card1 .card {
  height: 100%;
  margin: 0 !important;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: var(--site-surface);
  box-shadow: 0 8px 22px rgba(23, 50, 77, .07);
}

.card1 .card-body {
  min-height: 170px;
  padding: 24px 18px;
}

.section3 {
  padding: clamp(40px, 7vw, 90px) 16px !important;
}

.section3-wrapper,
.section3-content,
.section3-footer {
  width: min(100%, var(--site-content)) !important;
  max-width: var(--site-content) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.section3-content {
  display: grid !important;
  grid-template-columns: minmax(220px, .75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
}

.section3-image,
.section3Cantant {
  position: static !important;
  width: auto !important;
  float: none !important;
  text-align: right;
}

.section3 img {
  position: static !important;
  display: block;
  max-width: 330px;
  margin: 0 auto;
}

.section3Cantant p {
  width: auto !important;
  margin: 0 !important;
  white-space: normal !important;
}

.section3-footer {
  margin-top: 40px !important;
  text-align: center;
}

.section3Button {
  position: static !important;
  width: auto !important;
  float: none !important;
  margin: 18px auto 0 !important;
}

/* Footer stays readable instead of inheriting desktop offsets. */
.footer,
.footer-container {
  width: 100% !important;
  max-width: none !important;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 32px 16px !important;
}

.footer-links-wrapper {
  display: flex;
  gap: 28px;
}

@media (max-width: 1199px) {
  #navbar {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  #navbar .navbar-toggler {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: 0 !important;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: white;
  }

  #navbar .navbar-collapse:not(.show) {
    display: none !important;
  }

  #navbar .navbar-collapse.show {
    display: block !important;
    position: absolute !important;
    top: 100%;
    right: 16px;
    left: 16px;
    width: auto !important;
    padding: 10px !important;
    border: 1px solid var(--site-line);
    border-radius: 10px;
    background: white !important;
    box-shadow: 0 12px 28px rgba(23, 50, 77, .12);
  }

  #navbar .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 2px;
    width: 100%;
  }

  #navbar .navbar-nav > .nav-item {
    display: block !important;
    width: 100% !important;
  }

  #navbar .nav-link {
    display: flex !important;
    width: 100% !important;
    justify-content: flex-start !important;
    text-align: right;
  }

  #navbar .dropdown-menu {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    margin: 2px 0 6px !important;
    padding: 6px !important;
    border: 1px solid var(--site-line) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    background: #f8fafc !important;
  }

  #navbar .dropdown-menu.show {
    display: block !important;
  }

  #navbar .dropdown-menu .dropdown-item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    min-height: 40px;
    padding: 8px 10px !important;
    border-radius: 6px;
    direction: rtl;
    text-align: right;
    white-space: normal;
  }

  #navbar .dropdown-menu .dropdown-item i {
    flex: 0 0 22px;
    margin-right: 10px;
    margin-left: 0;
    text-align: center;
  }

  #navbar #sarchForM {
    width: 100%;
    margin: 8px 0 0 !important;
  }
}

@media (max-width: 991px) {
  .section1 .container {
    grid-template-columns: 1fr;
    max-width: 720px !important;
    text-align: center;
  }

  .header1,
  .section1 .header1,
  .header1 h1,
  .section1 h1,
  .header1 p,
  .section1 p {
    text-align: center !important;
  }

  .HomePhoto {
    max-width: 420px !important;
  }

  .section2Contint {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .section2Contint p {
    text-align: center;
  }

  .card1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px !important;
  }

  .section3-content {
    grid-template-columns: 1fr;
    max-width: 720px !important;
  }

  .section3Cantant {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .container,
  .container-fluid,
  .section1 .container,
  .footer-container {
    width: min(100% - 24px, var(--site-content)) !important;
  }

  #navbar {
    min-height: 58px;
  }

  #navbar .navbar-brand span {
    display: none;
  }

  #navbar .navbar-brand img {
    height: 36px;
  }

  .section1,
  .section2,
  .section3 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .section1 .container {
    gap: 22px;
  }

  .header1 h1,
  .section1 h1 {
    font-size: clamp(1.65rem, 8vw, 2.45rem) !important;
  }

  form.example {
    padding: 4px;
  }

  form.example input[type="text"] {
    min-width: 0;
    padding: 10px 9px !important;
    font-size: .92rem;
  }

  form.example button {
    padding: 10px 12px !important;
    font-size: .9rem;
  }

  .card1 {
    display: block !important;
    gap: 12px;
  }

  .card1 .row {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }

  .card1 .module {
    width: 100% !important;
  }

  .card1 .card {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    transform: none !important;
  }

  .card1 .card-body {
    min-height: 130px;
  }

  .section3 img {
    max-width: 260px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links-wrapper {
    justify-content: center;
  }

  .social-links-container {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  .social-item {
    width: auto !important;
    min-width: 64px !important;
    max-width: 80px !important;
  }
}

@media (min-width: 1536px) {
  :root {
    --site-content: 1320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* Homepage presentation layer */
.home-page {
  --home-ink: #17324d;
  --home-muted: #64748b;
  --home-brand: #1877b7;
  --home-accent: #23a99f;
  --home-warm: #ef8354;
  display: block;
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  color: var(--home-ink);
  background: #f7fafb;
}

.home-page .section1 {
  position: relative !important;
  overflow: hidden;
  padding-top: clamp(42px, 7vw, 88px) !important;
  padding-bottom: clamp(46px, 7vw, 82px) !important;
  background: #f1f8f8 !important;
}

.home-page .section1 .container,
.home-page .SearchBar,
.home-page .home-trust-row {
  position: relative;
  z-index: 1;
}

.home-page .header1 {
  max-width: 700px;
}

.home-page .home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--home-warm);
  font-family: 'Tajawal', sans-serif;
  font-size: .98rem;
  font-weight: 700;
}

.home-page .home-eyebrow i {
  font-size: .82rem;
}

.home-page .header1 h1 {
  color: var(--home-ink) !important;
  font-size: clamp(2rem, 4.2vw, 3.65rem) !important;
  font-weight: 700;
  letter-spacing: 0;
}

.home-page .header1 h1 .blue {
  color: var(--home-brand) !important;
  white-space: normal;
}

.home-page .header1 p {
  color: var(--home-muted) !important;
  font-size: clamp(1rem, 1.35vw, 1.12rem) !important;
}

.home-page .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home-page .home-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 9px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.home-page .home-action:hover {
  text-decoration: none !important;
  transform: translateY(-2px);
}

.home-page .home-action-primary {
  background: var(--home-brand);
  color: white !important;
  box-shadow: 0 8px 18px rgba(24, 119, 183, .2);
}

.home-page .home-action-primary:hover {
  background: var(--home-accent);
  color: white !important;
}

.home-page .home-action-secondary {
  border: 1px solid rgba(23, 50, 77, .16);
  background: rgba(255, 255, 255, .7);
  color: var(--home-ink) !important;
}

.home-page .home-action-secondary:hover {
  border-color: var(--home-warm);
  background: white;
  color: var(--home-warm) !important;
}

.home-page .HomePhoto {
  border: 8px solid rgba(255, 255, 255, .9);
  border-radius: 28px 28px 28px 8px !important;
  box-shadow: 14px 16px 0 rgba(35, 169, 159, .14), 0 22px 38px rgba(23, 50, 77, .16);
}

.home-page .SearchBar {
  margin-top: 28px !important;
}

.home-page form.example {
  padding: 6px;
  border: 1px solid rgba(23, 50, 77, .08);
  border-radius: 12px;
  background: white;
  box-shadow: 0 12px 28px rgba(23, 50, 77, .12);
}

.home-page form.example input[type="text"] {
  color: var(--home-ink);
  background: transparent;
}

.home-page form.example button {
  border-radius: 8px;
  background: var(--home-brand) !important;
}

.home-page form.example button:hover {
  background: var(--home-accent) !important;
}

.home-page .home-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 18px;
  color: var(--home-muted);
  font-family: 'Tajawal', sans-serif;
  font-size: .92rem;
  font-weight: 700;
}

.home-page .home-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.home-page .home-trust-row i {
  color: var(--home-accent);
}

.home-page .section2 {
  background: #f7fafb !important;
}

.home-page .section2Contint {
  direction: rtl;
  text-align: right;
}

.home-page .section2Button {
  direction: rtl;
}

.home-page .section2Contint h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  color: var(--home-ink) !important;
}

.home-page .section2Contint h2::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: var(--home-warm);
  content: "";
}

.home-page .section2Contint p {
  color: var(--home-muted) !important;
}

.home-page .section2Button a {
  border: 0 !important;
  border-radius: 8px;
  background: var(--home-ink) !important;
  color: white !important;
}

.home-page .section2Button a:hover {
  background: var(--home-accent) !important;
}

.home-page .card1 .card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e3ebef;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 22px rgba(23, 50, 77, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-page .card1 .card:hover {
  border-color: rgba(35, 169, 159, .35);
  box-shadow: 0 15px 28px rgba(23, 50, 77, .12);
  transform: translateY(-4px);
}

.home-page .card1 .card a,
.home-page .card1 .card a:hover {
  color: var(--home-ink) !important;
  background: transparent !important;
  text-decoration: none;
}

.home-page .card1 .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 174px;
  padding: 24px 18px;
  text-align: center;
}

.home-page .card1 .card-body > p:first-child {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 0 0 14px;
  padding: 0;
  border-radius: 15px;
  background: #e5f6f3;
  color: var(--home-accent);
}

.home-page .card1 .module:nth-child(2n) .card-body > p:first-child {
  background: #fff0e9;
  color: var(--home-warm);
}

.home-page .card1 .card-title {
  margin: 0 0 6px;
  color: var(--home-ink);
}

.home-page .card1 .card-text {
  margin: 0;
  padding: 0;
  color: var(--home-muted);
  font-size: .9rem;
  line-height: 1.7;
}

.home-page .section3 {
  background: #eaf6f5 !important;
  color: var(--home-ink);
}

.home-page .section3Cantant h2,
.home-page .section3-footer h2 {
  color: var(--home-ink);
}

.home-page .section3Cantant p {
  color: var(--home-muted);
}

.home-page .section3 img {
  border-radius: 20px;
  box-shadow: 0 18px 32px rgba(23, 50, 77, .13);
}

.home-page .section3Button button {
  border-radius: 9px;
  background: var(--home-warm) !important;
}

@media (max-width: 991px) {
  .home-page .home-hero-actions {
    justify-content: center;
  }

  .home-page .header1 .home-eyebrow,
  .home-page .section3Cantant .home-eyebrow {
    justify-content: center;
  }

  .home-page .section2Contint {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .home-page .home-action {
    flex: 1 1 145px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .home-page .home-trust-row {
    gap: 9px 18px;
    font-size: .86rem;
  }
}
