/* Sauco Vision modern layer */
:root {
  --sv-ink: #10120f;
  --sv-muted: #62685f;
  --base-color: #ffea23;
  --sv-accent: #ffea23;
  --sv-accent-soft: rgba(255, 234, 35, .34);
  --sv-surface: rgba(255, 255, 255, .78);
  --sv-line: rgba(16, 18, 15, .1);
  --sv-shadow: 0 18px 50px rgba(16, 18, 15, .14);
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
}

header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
}

header .navbar {
  width: min(1120px, calc(100% - 28px));
  min-height: 62px;
  margin: 0 auto;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .7) !important;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(16, 18, 15, .08);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  transition: width .28s ease, min-height .28s ease, box-shadow .28s ease, background .28s ease, transform .28s ease;
  pointer-events: auto;
}

body.sv-scrolled header .navbar {
  width: min(980px, calc(100% - 28px));
  min-height: 54px;
  background: rgba(255, 255, 255, .86) !important;
  border-color: var(--sv-line);
  box-shadow: var(--sv-shadow);
}

header .navbar .container-fluid {
  padding-inline: 10px;
}

header .navbar-brand img {
  max-height: 42px !important;
  transition: transform .28s ease, max-height .28s ease;
}

body.sv-scrolled header .navbar-brand img {
  max-height: 34px !important;
}

header .navbar-nav {
  gap: 4px;
  align-items: center;
}

header .navbar .nav-link {
  position: relative;
  min-height: 30px;
  padding: 6px 9px !important;
  color: var(--sv-ink) !important;
  border-radius: 999px;
  line-height: 1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

header .navbar .nav-link:hover,
header .navbar .nav-link:focus-visible {
  color: #000 !important;
  background: var(--sv-accent-soft);
  transform: translateY(-1px);
}

header .navbar .nav-link[aria-current="page"] {
  color: #000 !important;
  background: var(--sv-accent);
  box-shadow: inset 0 0 0 1px rgba(16, 18, 15, .08), 0 8px 18px rgba(255, 234, 35, .22);
}

header .navbar-toggler {
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--sv-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 8px 22px rgba(16, 18, 15, .08);
}

header .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 234, 35, .42);
}

header .navbar-toggler-line {
  background: var(--sv-ink) !important;
  left: 50%;
  right: auto;
  width: 20px;
  margin: 0;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: top .22s ease, width .22s ease, transform .22s ease, opacity .22s ease;
}

header .navbar-toggler-line:nth-child(1) {
  top: 14px;
  width: 15px;
}

header .navbar-toggler-line:nth-child(2),
header .navbar-toggler-line:nth-child(3) {
  top: 21px;
}

header .navbar-toggler-line:nth-child(4) {
  top: 28px;
  width: 15px;
}

header .navbar-toggler[aria-expanded="true"] .navbar-toggler-line:nth-child(1),
header .navbar-toggler[aria-expanded="true"] .navbar-toggler-line:nth-child(4) {
  top: 21px;
  width: 0;
  opacity: 0;
}

header .navbar-toggler[aria-expanded="true"] .navbar-toggler-line:nth-child(2) {
  transform: translateX(-50%) rotate(45deg);
}

header .navbar-toggler[aria-expanded="true"] .navbar-toggler-line:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
}

.top-space-margin,
.ipad-top-space-margin {
  padding-top: clamp(90px, 10vw, 118px);
}

.btn,
.btn.btn-link-gradient,
.btn.btn-large {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.border-radius-6px,
.border-radius-4px {
  overflow: hidden;
}

.interactive-banner-style-05,
.feature-box,
.accordion-item,
.portfolio-box,
.swiper-slide,
.bg-white,
.bg-very-light-gray {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.interactive-banner-style-05:hover,
.feature-box:hover,
.portfolio-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(16, 18, 15, .12);
}

.sv-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--sv-delay, 0ms);
}

.sv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sv-reveal-group > * {
  transition-delay: calc(var(--sv-index, 0) * 60ms);
}

body.sv-no-scroll-reveal .sv-reveal,
body.sv-no-scroll-reveal [data-anime],
body.sv-no-scroll-reveal .appear,
body.sv-no-scroll-reveal .anime-complete {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

body.sv-no-scroll-reveal .sv-reveal {
  transition: none !important;
  transition-delay: 0ms !important;
}

.sv-slow-word-carousel .swiper-wrapper,
.sv-slow-word-carousel .sv-word-track {
  display: flex;
  width: max-content;
  gap: clamp(48px, 7vw, 92px);
  will-change: transform;
}

.sv-slow-word-carousel.sv-css-marquee .swiper-wrapper,
.sv-slow-word-carousel.sv-css-marquee .sv-word-track {
  animation: sv-word-marquee 68s linear infinite !important;
  animation-duration: 68s !important;
  animation-iteration-count: infinite !important;
  transition-timing-function: linear !important;
}

.sv-slow-word-carousel.sv-css-marquee .swiper-slide {
  flex: 0 0 auto;
  width: auto !important;
  margin-right: 0 !important;
}

.sv-slow-word-carousel.sv-css-marquee .sv-marquee-ghost {
  display: flex;
  gap: inherit;
}

.sv-slow-word-carousel.sv-css-marquee:hover .swiper-wrapper,
.sv-slow-word-carousel.sv-css-marquee:hover .sv-word-track {
  animation-play-state: paused;
}

.sv-footer {
  margin: 0;
  padding: clamp(64px, 8vw, 96px) 0 clamp(24px, 4vw, 32px);
  color: var(--sv-ink);
}

.sv-whatsapp-float {
  position: fixed;
  right: clamp(16px, 2.2vw, 28px);
  bottom: clamp(16px, 2.2vw, 28px);
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 16px 10px 13px;
  border: 1px solid rgba(16, 18, 15, .1);
  border-radius: 999px;
  background: #25d366;
  color: #07140b;
  box-shadow: 0 18px 42px rgba(16, 18, 15, .18), 0 8px 18px rgba(37, 211, 102, .25);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.sv-whatsapp-float:hover,
.sv-whatsapp-float:focus-visible {
  color: #07140b;
  background: #2ee978;
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(16, 18, 15, .22), 0 10px 24px rgba(37, 211, 102, .34);
}

.sv-whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sv-footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  background: transparent;
}

.sv-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sv-footer-brandline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sv-footer a {
  color: var(--sv-ink);
  text-decoration: none;
}

.sv-footer-brandline img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.sv-footer-brandline span {
  color: var(--sv-ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.sv-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sv-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(16, 18, 15, .1);
  border-radius: 999px;
  background: rgba(16, 18, 15, .045);
  color: var(--sv-ink);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.sv-footer-social a:hover {
  background: var(--sv-accent);
  border-color: rgba(16, 18, 15, .16);
  transform: translateY(-2px);
}

.sv-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  gap: 24px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(16, 18, 15, .12);
}

.sv-footer-links,
.sv-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  grid-column: 2;
}

.sv-footer-links a {
  color: var(--sv-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-underline-offset: 4px;
}

.sv-footer-legal a,
.sv-footer-copyline {
  color: var(--sv-muted);
  font-size: 14px;
  line-height: 1.7;
}

.sv-footer-links a:hover,
.sv-footer-legal a:hover {
  text-decoration: underline;
}

.sv-footer-copyline {
  grid-column: 1;
  grid-row: 1 / 3;
  white-space: nowrap;
}

.sv-feature-panel {
  overflow: hidden;
  margin-top: 30px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(16, 18, 15, .1);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(16, 18, 15, .08);
}

.sv-feature-panel-head {
  padding: 22px 24px 20px;
  border-bottom: 1px solid rgba(16, 18, 15, .1);
}

.sv-feature-panel-head > span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border: 1px solid rgba(16, 18, 15, .08);
  border-radius: 50%;
  background: rgba(16, 18, 15, .1);
}

.sv-feature-panel-head h6 {
  margin: 16px 0 6px;
  color: var(--sv-ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.sv-feature-panel-head p {
  margin: 0;
  color: var(--sv-muted);
  font-size: 14px;
  line-height: 1.55;
}

.sv-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.sv-feature-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 22px;
  background: rgba(247, 247, 247, .74);
  border: 1px solid rgba(16, 18, 15, .08);
  border-radius: 14px;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.sv-feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .98);
  border-color: rgba(16, 18, 15, .16);
}

.sv-feature-card > i {
  color: var(--sv-ink);
  font-size: 20px;
}

.sv-feature-card h3 {
  margin: 18px 0 10px;
  color: var(--sv-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
}

.sv-feature-card p {
  margin: 0;
  color: var(--sv-muted);
  font-size: 14px;
  line-height: 1.62;
}

.sv-feature-mini {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -18px;
  height: 92px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(16, 18, 15, .1);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 10px 24px rgba(16, 18, 15, .08);
}

.sv-feature-mini-bars {
  display: grid;
  align-content: end;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sv-feature-mini-bars span {
  display: block;
  border-radius: 8px 8px 0 0;
  background: var(--sv-accent);
}

.sv-feature-mini-bars span:nth-child(1) { height: 34px; }
.sv-feature-mini-bars span:nth-child(2) { height: 52px; }
.sv-feature-mini-bars span:nth-child(3) { height: 42px; }

.sv-feature-mini-window span {
  display: block;
  height: 9px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(16, 18, 15, .1);
}

.sv-feature-mini-window span:nth-child(1) {
  width: 72%;
  background: var(--sv-accent);
}

.sv-feature-mini-window span:nth-child(2) { width: 92%; }
.sv-feature-mini-window span:nth-child(3) { width: 54%; }

.sv-feature-mini-table {
  display: grid;
  gap: 8px;
}

.sv-feature-mini-table span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(16, 18, 15, .1);
}

.sv-feature-mini-table span:nth-child(1) {
  width: 92%;
  background: rgba(255, 234, 35, .75);
}

.sv-feature-mini-table span:nth-child(2) { width: 74%; }
.sv-feature-mini-table span:nth-child(3) { width: 86%; }

.sv-ledronie-flow article {
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(16, 18, 15, .1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .78));
  box-shadow: 0 18px 50px rgba(16, 18, 15, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.sv-ledronie-flow article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 234, 35, .62);
  box-shadow: 0 24px 60px rgba(16, 18, 15, .12);
}

.sv-ledronie-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--sv-accent);
  color: var(--sv-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.sv-ledronie-flow h3 {
  margin: 0 0 12px;
  color: var(--sv-ink);
  font-size: 22px;
  font-weight: 800;
}

.sv-ledronie-flow p {
  margin: 0;
  color: var(--sv-muted);
  font-size: 15px;
  line-height: 1.65;
}

.sv-ledronie-shot {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top center;
}

.sv-home .position-relative.mb-30px > .bg-base-color {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px) !important;
  background: linear-gradient(135deg, rgba(255, 234, 35, .92), rgba(255, 248, 158, .72)) !important;
  border: 1px solid rgba(16, 18, 15, .12);
  border-radius: 18px !important;
  box-shadow: 0 18px 42px rgba(16, 18, 15, .12);
}

.sv-home .position-relative.mb-30px > .bg-base-color::after {
  content: "";
  position: absolute;
  inset: auto -12% -45% auto;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(16, 18, 15, .12);
  border-radius: 50%;
}

.sv-home .position-relative.mb-30px > .bg-base-color h3 {
  margin-bottom: 18px !important;
  font-size: 20px !important;
}

.sv-home .position-relative.mb-30px > .bg-base-color li {
  position: relative;
  padding-left: 24px;
}

.sv-home .position-relative.mb-30px > .bg-base-color li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111;
}

.sv-home .process-step-style-10 {
  --sv-card-icon: "\F3EE";
  min-height: 100%;
  padding: 30px 28px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 248, 248, .86));
  border: 1px solid rgba(16, 18, 15, .1);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(16, 18, 15, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.sv-home .process-step-style-10:nth-child(2) {
  --sv-card-icon: "\F4B6";
}

.sv-home .process-step-style-10:nth-child(3) {
  --sv-card-icon: "\F2E5";
}

.sv-home .process-step-style-10::before {
  content: var(--sv-card-icon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 18, 15, .1);
  border-radius: 14px;
  background: rgba(255, 234, 35, .34);
  color: #111;
  font-family: bootstrap-icons !important;
  font-size: 20px;
  line-height: 1;
}

.sv-home .process-step-style-10:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 18, 15, .18);
  box-shadow: 0 24px 58px rgba(16, 18, 15, .12);
}

.sv-home .process-step-style-10 .process-step-icon-box {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  left: auto !important;
  margin-bottom: 0;
}

.sv-home .process-step-style-10 .number {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 28px;
  background: rgba(16, 18, 15, .06);
  border: 1px solid rgba(16, 18, 15, .08);
  border-radius: 999px;
  color: rgba(16, 18, 15, .62) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1;
  -webkit-text-stroke: 0 !important;
  text-stroke: 0 !important;
}

.sv-home .process-step-style-10 span.fs-19 {
  min-height: 48px;
  margin-bottom: 12px !important;
  padding-right: 48px;
  color: var(--sv-ink) !important;
  font-size: 22px !important;
  line-height: 1.2;
}

.sv-home .process-step-style-10 .pb-60px {
  padding-bottom: 0 !important;
}

.sv-home .process-step-style-10 p {
  width: 100% !important;
  margin-bottom: 0;
  color: var(--sv-muted);
  font-size: 15.5px;
  line-height: 1.72 !important;
}

.sv-home .portfolio-box {
  position: relative;
  height: clamp(360px, 34vw, 450px);
  padding: 0;
  overflow: hidden;
  background: #111;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 0 42px -16px rgba(16, 18, 15, .58);
  transition: transform .45s ease, box-shadow .45s ease;
}

.sv-home .portfolio-box:hover {
  transform: scale(1.035);
  box-shadow: 0 0 60px -14px rgba(16, 18, 15, .62);
}

.sv-home .portfolio-box .portfolio-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit !important;
}

.sv-home .portfolio-box .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.sv-home .portfolio-box:hover .portfolio-image img {
  transform: scale(1.1);
}

.sv-home .portfolio-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(16, 18, 15, .92), rgba(16, 18, 15, .56) 34%, rgba(16, 18, 15, .06) 68%);
  pointer-events: none;
}

.sv-home .portfolio-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px !important;
  color: #fff;
  text-align: left;
  font-size: 14px;
}

.sv-home .portfolio-caption a {
  display: block;
  margin-bottom: 4px;
  color: #fff !important;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800 !important;
  line-height: 1;
  letter-spacing: 0;
}

.sv-home .portfolio-caption .separator-line-1px {
  display: none !important;
}

.sv-home .portfolio-caption .d-inline-block:last-child {
  display: block !important;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 600;
}

.sv-home .portfolio-caption::after {
  content: "Ver proyecto  \2192";
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 12px 15px;
  margin-top: 26px;
  border: 1px solid rgba(255, 234, 35, .28);
  border-radius: 12px;
  background: rgba(255, 234, 35, .16);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .25s ease, border-color .25s ease;
}

.sv-home .portfolio-box:hover .portfolio-caption::after {
  background: rgba(255, 234, 35, .28);
  border-color: rgba(255, 234, 35, .48);
}

.sv-home .box-shadow-medium {
  border: 1px solid rgba(16, 18, 15, .1);
  border-radius: 18px !important;
  box-shadow: 0 16px 42px rgba(16, 18, 15, .08) !important;
}

.sv-home .row-cols-lg-4 .box-shadow-medium {
  padding: 30px 22px !important;
}

.sv-home .row-cols-lg-4 .fs-60 {
  margin-bottom: 12px !important;
  font-size: clamp(36px, 4vw, 52px) !important;
}

.sv-home .accordion-style-02 {
  display: grid;
  gap: 12px;
}

.sv-home .accordion-style-02 .accordion-item {
  overflow: hidden;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(16, 18, 15, .1);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(16, 18, 15, .06);
}

.sv-home .accordion-style-02 .accordion-header,
.sv-home .accordion-style-02 .accordion-body {
  border-bottom: 0 !important;
}

.sv-home .accordion-style-02 .accordion-title {
  padding: 20px 22px;
}

.sv-home .accordion-style-02 .accordion-body {
  padding: 0 22px 22px;
  color: var(--sv-muted);
}

.sv-home .slider-navigation-style-04 {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes sv-word-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 991px) {
  header {
    top: 10px;
  }

  header .navbar {
    width: min(100% - 20px, 720px);
    min-height: 52px;
    padding: 6px 7px;
    border-radius: 16px;
  }

  body.sv-scrolled header .navbar {
    width: min(100% - 20px, 720px);
    min-height: 50px;
  }

  header .navbar .container-fluid {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding-inline: 6px;
  }

  header .menu-order {
    margin-left: auto;
  }

  header .navbar-brand {
    max-width: 138px;
  }

  header .navbar-brand img {
    max-width: 100%;
    max-height: 30px !important;
    object-fit: contain;
  }

  body.sv-scrolled header .navbar-brand img {
    max-height: 28px !important;
  }

  header .navbar-toggler {
    width: 40px;
    height: 40px;
    display: inline-flex;
    flex: 0 0 40px;
    float: none !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
  }

  header .navbar-toggler-line:nth-child(1) {
    top: 12px;
  }

  header .navbar-toggler-line:nth-child(2),
  header .navbar-toggler-line:nth-child(3) {
    top: 19px;
  }

  header .navbar-toggler-line:nth-child(4) {
    top: 26px;
  }

  header .navbar-toggler[aria-expanded="true"] .navbar-toggler-line:nth-child(1),
  header .navbar-toggler[aria-expanded="true"] .navbar-toggler-line:nth-child(4) {
    top: 19px;
  }

  header .container-fluid > .col-auto.col-lg-2.text-end,
  header .header-icon,
  header .header-button {
    display: none !important;
  }

  header .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 14px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--sv-line);
    border-radius: 16px;
    box-shadow: var(--sv-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  header .navbar-nav {
    gap: 8px;
    align-items: stretch;
  }

  header .navbar .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    padding: 13px 16px !important;
    background: rgba(16, 18, 15, .035);
  }

  .sv-home .process-step-style-10 {
    padding: 24px 20px !important;
    border-radius: 16px;
  }

  .sv-home .process-step-style-10::before {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
  }

  .sv-home .process-step-style-10 .process-step-icon-box {
    top: 20px !important;
    right: 18px !important;
  }

  .sv-home .process-step-style-10 span.fs-19 {
    min-height: auto;
    padding-right: 48px;
    font-size: 19px !important;
  }

  .sv-home .position-relative.mb-30px > .bg-base-color {
    border-radius: 16px !important;
  }

  .sv-home .portfolio-box {
    border-radius: 16px;
    height: 360px;
  }

  .sv-home .portfolio-caption {
    padding: 22px !important;
  }

  .sv-home .portfolio-caption a {
    font-size: 26px;
  }

  .sv-home .portfolio-caption::after {
    min-height: 42px;
    margin-top: 20px;
  }

  .sv-home .row-cols-lg-4 .box-shadow-medium,
  .sv-home .box-shadow-medium {
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }

  .sv-home .accordion-style-02 .accordion-title {
    padding: 17px 18px;
  }

  .sv-home .accordion-style-02 .accordion-body {
    padding: 0 18px 18px;
  }

  .sv-footer {
    padding-top: 54px;
  }

  .sv-footer-shell {
    width: min(100% - 28px, 720px);
  }

  .sv-footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .sv-footer-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .sv-footer-links,
  .sv-footer-legal,
  .sv-footer-copyline {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
  }

  .sv-footer-copyline {
    margin-top: 6px;
    white-space: normal;
  }

  .sv-footer-social a {
    width: 38px;
    height: 38px;
  }

  .sv-whatsapp-float {
    min-height: 48px;
    padding: 12px;
  }

  .sv-whatsapp-float span {
    display: none;
  }

  .sv-feature-panel {
    margin-top: 24px;
    border-radius: 16px;
  }

  .sv-feature-grid {
    grid-template-columns: 1fr;
  }

  .sv-feature-card {
    min-height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .sv-reveal {
    opacity: 1;
    transform: none;
  }
}
