:root {
  color-scheme:light;
  --bk-canvas:#f6f7f4;
  --bk-surface:#fff;
  --bk-soft:#f1f3ee;
  --bk-ink:#263a40;
  --bk-muted:#62706a;
  --bk-line:#e0e5de;
  --bk-accent:#b84222;
  --ws-orange:#e56642;
  --bk-peach:#fcf0e9;
  --bk-error:#ad352e;
  --bk-button:#263a40;
  --bk-button-ink:#fff
}
html[data-theme="dark"] {
  color-scheme:dark;
  --bk-canvas:#171e20;
  --bk-surface:#20292b;
  --bk-soft:#283235;
  --bk-ink:#eef1e9;
  --bk-muted:#a2afa9;
  --bk-line:#354043;
  --bk-accent:#f5a085;
  --ws-orange:#f08661;
  --bk-peach:#3b2d28;
  --bk-error:#ffb3a5;
  --bk-button:#eef1e9;
  --bk-button-ink:#20292b
}
* {
  box-sizing:border-box
}
body {
  margin:0;
  background:var(--bk-canvas);
  color:var(--bk-ink);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:14px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased
}
button,input,select,textarea {
  font:inherit
}
button,a,input,select,textarea {
  -webkit-tap-highlight-color:transparent
}
button,a {
  touch-action:manipulation
}
button {
  cursor:pointer
}
button:disabled {
  cursor:not-allowed
}
a {
  color:inherit
}
svg {
  width:20px;
  height:20px;
  display:block;
  flex-shrink:0
}
[hidden] {
  display:none!important
}
button:focus-visible,a:focus-visible,summary:focus-visible {
  outline:2px solid var(--bk-accent);
  outline-offset:4px
}
.bk-sr-only,.bk-skip:not(:focus) {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0
}
.bk-skip:focus {
  position:fixed;
  z-index:100;
  top:8px;
  left:8px;
  background:var(--bk-surface);
  padding:15px
}
.bk-header {
  height:86px;
  border-bottom:1px solid var(--bk-line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(22px,5vw,84px);
  gap:16px;
  background:var(--bk-surface)
}
.bk-brand {
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none
}
.bk-brand>svg {
  width:39px;
  height:39px
}
.bk-brand>span {
  font-size:25px;
  font-weight:650;
  letter-spacing:-1.1px
}
.dv-brand-dot {
  color:var(--ws-orange)
}
.bk-header-end,.header-actions {
  display:flex;
  align-items:center;
  gap:20px
}
.bk-header-caption {
  color:var(--bk-muted);
  font-size:12px
}
.header-actions {
  gap:8px
}
.bk-icon-button,.theme-toggle {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  min-width:40px;
  height:40px;
  padding:0 9px;
  background:transparent;
  border:1px solid var(--bk-line);
  border-radius:8px;
  color:var(--bk-ink);
  font-size:11px;
  font-weight:600
}
.bk-icon-button:hover,.theme-toggle:hover {
  background:var(--bk-soft)
}
.lang-switcher {
  position:relative
}
.lang-switcher svg {
  width:13px;
  height:13px;
  transform:rotate(90deg)
}
.lang-menu {
  position:absolute;
  right:0;
  top:46px;
  z-index:10;
  min-width:150px;
  padding:5px;
  border:1px solid var(--bk-line);
  border-radius:9px;
  background:var(--bk-surface);
  box-shadow:0 10px 30px #00000012
}
.lang-menu button {
  display:block;
  width:100%;
  text-align:left;
  color:var(--bk-ink);
  border:0;
  background:transparent;
  padding:11px;
  border-radius:5px
}
.lang-menu button:hover,.lang-menu button.is-active {
  background:var(--bk-soft)
}
.bk-main {
  max-width:1250px;
  margin:auto;
  padding:48px 32px 20px
}
.bk-intro {
  margin-bottom:34px
}
.bk-eyebrow {
  display:flex;
  align-items:center;
  gap:9px;
  font-size:10px;
  letter-spacing:1.65px;
  font-weight:650;
  color:var(--bk-muted);
  margin:0 0 13px
}
.bk-eyebrow>span {
  width:6px;
  height:6px;
  background:var(--ws-orange);
  border-radius:50%
}
h1,h2,h3,p {
  overflow-wrap:anywhere
}
h1 {
  font-size:clamp(32px,3.6vw,44px);
  font-weight:550;
  line-height:1.15;
  letter-spacing:-1.65px;
  margin:0 0 13px
}
.bk-intro>p:last-child {
  color:var(--bk-muted);
  margin:0;
  font-size:14px
}
.bk-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) 276px;
  align-items:start;
  gap:28px
}
.bk-workspace {
  min-width:0;
  background:var(--bk-surface);
  border:1px solid var(--bk-line);
  border-radius:14px;
  overflow:hidden
}
.bk-progress {
  display:none;
  grid-template-columns:repeat(4,minmax(0,1fr));
  padding:22px 26px;
  border-bottom:1px solid var(--bk-line);
  gap:10px
}
.bk-enhanced .bk-progress {
  display:grid
}
.bk-progress button {
  display:flex;
  align-items:center;
  gap:8px;
  text-align:left;
  background:transparent;
  border:0;
  color:var(--bk-muted);
  padding:4px 0;
  font-size:11px;
  line-height:1.35
}
.bk-step-number {
  display:grid;
  place-items:center;
  flex-shrink:0;
  width:28px;
  height:28px;
  border:1px solid var(--bk-line);
  border-radius:50%;
  font-size:10px
}
.bk-progress button[aria-current] {
  color:var(--bk-accent);
  font-weight:650
}
.bk-progress button[aria-current] .bk-step-number {
  background:var(--bk-peach);
  border-color:var(--bk-accent)
}
.bk-progress button>svg {
  display:none;
  width:14px;
  height:14px
}
.bk-progress button.is-complete .bk-step-number {
  background:var(--bk-soft);
  color:var(--bk-ink)
}
.bk-progress button:disabled {
  opacity:.75
}
.bk-stage {
  padding:30px 34px 34px
}
.bk-stage+.bk-stage {
  border-top:1px solid var(--bk-line)
}
.bk-enhanced .bk-stage+.bk-stage {
  border-top:0
}
.bk-stage-heading {
  margin-bottom:26px
}
.bk-stage-heading .bk-eyebrow {
  margin-bottom:8px
}
.bk-stage-heading h2 {
  font-size:24px;
  letter-spacing:-.65px;
  line-height:1.25;
  font-weight:550;
  margin:0 0 9px
}
.bk-stage-heading h2:focus {
  outline:none
}
.bk-stage-heading>p:last-child {
  font-size:13px;
  line-height:1.65;
  color:var(--bk-muted);
  margin:0;
  max-width:540px
}
.bk-service-fieldset {
  border:0;
  padding:0;
  margin:0;
  min-width:0
}
.bk-service-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:13px
}
.bk-service {
  position:relative;
  cursor:pointer
}
.bk-service>input,.bk-chip>input {
  position:absolute;
  opacity:0;
  width:1px;
  height:1px;
  left:15px;
  top:15px
}
.bk-service-content {
  display:flex;
  flex-direction:column;
  min-height:173px;
  border:1px solid var(--bk-line);
  border-radius:10px;
  padding:19px;
  transition:border-color .15s,background .15s
}
.bk-service:hover .bk-service-content {
  border-color:var(--bk-muted)
}
.bk-service>input:checked+.bk-service-content {
  border-color:var(--bk-accent);
  background:var(--bk-peach)
}
.bk-service>input:focus-visible+.bk-service-content,.bk-chip>input:focus-visible+span {
  outline:2px solid var(--bk-accent);
  outline-offset:3px
}
.bk-service-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px
}
.bk-service-icon {
  color:var(--bk-muted)
}
.bk-service>input:checked+.bk-service-content .bk-service-icon {
  color:var(--bk-accent)
}
.bk-radio-mark {
  width:17px;
  height:17px;
  border:1px solid var(--bk-line);
  border-radius:50%;
  display:grid;
  place-items:center
}
.bk-service>input:checked+.bk-service-content .bk-radio-mark {
  border-color:var(--bk-accent)
}
.bk-service>input:checked+.bk-service-content .bk-radio-mark:after {
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--bk-accent)
}
.bk-service-content>strong {
  font-size:14px;
  font-weight:600;
  margin-bottom:6px
}
.bk-service-desc {
  font-size:12px;
  line-height:1.6;
  color:var(--bk-muted)
}
.bk-notice {
  display:flex;
  gap:10px;
  padding:15px 17px;
  background:var(--bk-soft);
  border:1px solid var(--bk-line);
  border-radius:8px;
  font-size:12px;
  line-height:1.7;
  color:var(--bk-muted);
  margin:20px 0 0
}
.bk-notice>svg {
  width:18px;
  height:18px;
  margin-top:2px
}
.bk-error {
  display:block;
  color:var(--bk-error);
  background:var(--bk-peach);
  margin:20px 25px;
  border-color:var(--bk-error)
}
.bk-error ul {
  margin:7px 0 0;
  padding-left:18px
}
.bk-fields {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:19px 16px
}
.bk-wide {
  grid-column:1/-1
}
.bk-field {
  min-width:0
}
.bk-field label,.bk-symptoms legend {
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:600
}
.bk-field label>span,.bk-symptoms legend>span {
  color:var(--bk-muted);
  font-size:11px;
  font-weight:400
}
.bk-field input,.bk-field select,.bk-field textarea {
  width:100%;
  min-height:45px;
  padding:11px 12px;
  border:1px solid var(--bk-line);
  border-radius:7px;
  background:var(--bk-surface);
  color:var(--bk-ink);
  font-size:13px;
  outline:none
}
.bk-field input:focus,.bk-field select:focus,.bk-field textarea:focus {
  border-color:var(--bk-accent);
  box-shadow:0 0 0 2px var(--bk-peach)
}
.bk-field input[aria-invalid=true],.bk-field textarea[aria-invalid=true],.bk-field select[aria-invalid=true] {
  border-color:var(--bk-error)
}
.bk-field textarea {
  resize:vertical;
  min-height:126px;
  line-height:1.65
}
.bk-field input::placeholder,.bk-field textarea::placeholder {
  color:var(--bk-muted);
  opacity:1
}
.bk-help {
  font-size:12px;
  color:var(--bk-muted);
  line-height:1.7;
  margin:8px 0 0
}
.bk-field-error {
  font-size:12px;
  color:var(--bk-error);
  margin:7px 0 0
}
.bk-details {
  border:1px solid var(--bk-line);
  border-radius:8px;
  margin-top:20px
}
.bk-details summary {
  display:flex;
  align-items:center;
  gap:8px;
  padding:13px 15px;
  cursor:pointer;
  list-style:none;
  font-size:12px
}
.bk-details summary::-webkit-details-marker {
  display:none
}
.bk-details summary>svg {
  width:15px;
  height:15px;
  color:var(--bk-muted)
}
.bk-details[open] summary>svg {
  transform:rotate(45deg)
}
.bk-details summary>span {
  margin-left:auto;
  color:var(--bk-muted);
  font-size:11px
}
.bk-details-body {
  padding:0 15px 17px
}
.bk-details-body>.bk-help {
  margin:0 0 15px
}
.bk-symptoms {
  border:0;
  padding:0;
  margin:26px 0;
  min-width:0
}
.bk-symptoms .bk-help {
  margin:0 0 12px
}
.bk-chips {
  display:flex;
  flex-wrap:wrap;
  gap:8px
}
.bk-chip {
  position:relative;
  cursor:pointer
}
.bk-chip>span {
  display:block;
  padding:9px 13px;
  border:1px solid var(--bk-line);
  border-radius:6px;
  font-size:12px;
  color:var(--bk-muted)
}
.bk-chip>input:checked+span {
  color:var(--bk-accent);
  border-color:var(--bk-accent);
  background:var(--bk-peach)
}
.bk-form-footer {
  display:flex;
  align-items:center;
  gap:15px;
  min-height:86px;
  padding:19px 34px;
  border-top:1px solid var(--bk-line);
  background:var(--bk-surface)
}
.bk-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:44px;
  padding:11px 19px;
  border:1px solid var(--bk-line);
  border-radius:7px;
  background:transparent;
  color:var(--bk-ink);
  font-size:12px;
  font-weight:550;
  text-decoration:none
}
.bk-button svg {
  width:16px;
  height:16px
}
.bk-primary {
  background:var(--bk-button);
  color:var(--bk-button-ink);
  border-color:var(--bk-button)
}
.bk-primary:hover {
  opacity:.88
}
.bk-primary:disabled {
  opacity:.55
}
.bk-form-footer .bk-primary {
  margin-left:auto
}
.bk-back svg {
  transform:rotate(180deg)
}
.bk-form-footer .bk-help {
  margin:0;
  font-size:11px
}
.bk-aside {
  position:sticky;
  top:26px
}
.bk-summary {
  background:var(--bk-soft);
  padding:26px;
  border:1px solid var(--bk-line);
  border-radius:12px
}
.bk-aside-icon {
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border:1px solid var(--bk-line);
  border-radius:9px;
  margin-bottom:22px;
  background:var(--bk-surface)
}
.bk-summary h2 {
  font-size:17px;
  font-weight:550;
  letter-spacing:-.3px;
  margin:0 0 23px
}
.bk-summary dl,.bk-final-review dl {
  margin:0
}
.bk-summary dl>div+div {
  margin-top:18px
}
.bk-summary dt,.bk-final-review dt {
  font-size:11px;
  color:var(--bk-muted);
  margin-bottom:4px
}
.bk-summary dd,.bk-final-review dd {
  font-size:12px;
  line-height:1.65;
  margin:0;
  overflow-wrap:anywhere;
  white-space:pre-line
}
.bk-status-dot {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:11px;
  color:var(--bk-muted);
  border-top:1px solid var(--bk-line);
  margin:24px 0 0;
  padding-top:18px
}
.bk-status-dot:before {
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--ws-orange);
  flex-shrink:0
}
.bk-aside-note {
  padding:24px 8px
}
.bk-aside h3 {
  font-size:12px;
  font-weight:600;
  margin:0 0 7px
}
.bk-aside-note p,.bk-aside-hours p {
  font-size:12px;
  line-height:1.8;
  color:var(--bk-muted);
  margin:0
}
.bk-aside-hours {
  display:flex;
  gap:12px;
  margin:0 8px;
  padding-top:20px;
  border-top:1px solid var(--bk-line)
}
.bk-aside-hours>svg {
  width:17px;
  height:17px;
  color:var(--bk-muted)
}
.bk-page-footer {
  display:flex;
  justify-content:space-between;
  gap:15px;
  color:var(--bk-muted);
  font-size:11px;
  padding:35px 0 5px
}
.bk-address,.bk-company {
  border-top:1px solid var(--bk-line);
  padding-top:22px;
  margin-top:24px
}
.bk-address h3,.bk-final-review h3 {
  font-size:14px;
  font-weight:600;
  margin:0 0 10px
}
.bk-address>.bk-help {
  margin:0 0 14px
}
.bk-checkbox {
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:30px;
  font-size:13px;
  cursor:pointer
}
.bk-checkbox input {
  width:17px;
  height:17px;
  accent-color:var(--bk-accent);
  margin:0
}
.bk-company .bk-fields {
  margin-top:16px
}
.bk-final-review {
  padding:19px;
  background:var(--bk-soft);
  border:1px solid var(--bk-line);
  border-radius:8px;
  margin-top:24px
}
.bk-final-review dl {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px
}
.bk-final-review dl>div:last-child {
  grid-column:1/-1
}
.bk-scheduler {
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);
  gap:26px;
  align-items:start
}
.bk-calendar {
  min-width:0
}
.bk-calendar-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:16px
}
.bk-calendar-header strong {
  font-size:13px;
  text-transform:capitalize
}
.bk-calendar-header .bk-icon-button {
  border:0;
  min-width:32px;
  height:32px;
  padding:5px
}
.bk-calendar-header button[data-bk-month="-1"] svg {
  transform:rotate(180deg)
}
.bk-calendar-header button:disabled {
  opacity:.3
}
.bk-weekdays,.bk-calendar-grid {
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:3px;
  text-align:center
}
.bk-weekdays {
  font-size:10px;
  color:var(--bk-muted);
  margin-bottom:10px
}
.bk-calendar-grid button {
  aspect-ratio:1;
  min-height:32px;
  padding:0;
  border:1px solid transparent;
  background:transparent;
  color:var(--bk-ink);
  border-radius:6px;
  font-size:12px
}
.bk-calendar-grid button:hover:enabled {
  background:var(--bk-soft)
}
.bk-calendar-grid button:disabled {
  color:var(--bk-muted);
  opacity:.38
}
.bk-calendar-grid button[aria-pressed=true] {
  background:var(--bk-peach);
  border-color:var(--bk-accent);
  color:var(--bk-accent);
  font-weight:650
}
.bk-calendar-grid button.is-today:not([aria-pressed=true]) {
  border-color:var(--bk-line)
}
.bk-times {
  border-left:1px solid var(--bk-line);
  padding-left:24px;
  min-height:285px
}
.bk-times h3 {
  font-size:13px;
  margin:6px 0 0;
  font-weight:600
}
.bk-time-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin-top:16px
}
.bk-time-grid button {
  height:40px;
  min-width:0;
  padding:7px;
  border:1px solid var(--bk-line);
  border-radius:6px;
  background:var(--bk-surface);
  color:var(--bk-ink);
  font-size:12px
}
.bk-time-grid button[aria-pressed=true] {
  border-color:var(--bk-accent);
  background:var(--bk-peach);
  color:var(--bk-accent);
  font-weight:600
}
.bk-text-button {
  padding:8px 0;
  border:0;
  color:var(--bk-accent);
  background:transparent;
  font-size:12px;
  text-decoration:underline
}
.bk-success {
  max-width:640px;
  margin:65px auto 100px;
  padding:48px;
  border:1px solid var(--bk-line);
  background:var(--bk-surface);
  border-radius:14px;
  text-align:center
}
.bk-success-icon {
  display:grid;
  place-items:center;
  width:64px;
  height:64px;
  margin:0 auto 25px;
  border-radius:50%;
  background:var(--bk-soft);
  color:var(--bk-accent)
}
.bk-success-icon svg {
  width:28px;
  height:28px
}
.bk-success>.bk-eyebrow {
  justify-content:center
}
.bk-success>p:not(.bk-eyebrow) {
  color:var(--bk-muted);
  font-size:14px;
  line-height:1.8;
  margin:20px 0 30px
}
.bk-success h1 {
  font-size:34px
}
@media(min-width:1500px) {
  .bk-main {
    padding-top:60px
  }
  .bk-intro {
    margin-bottom:40px
  }
  .bk-stage {
    padding:35px 38px 40px
  }
  .bk-service-content {
    min-height:182px
  }
}
@media(max-width:1050px) {
  .bk-layout {
    grid-template-columns:minmax(0,1fr) 238px;
    gap:20px
  }
  .bk-main {
    padding:34px 24px 20px
  }
  .bk-stage {
    padding:28px 24px
  }
  .bk-progress {
    padding:19px 20px;
    gap:6px
  }
  .bk-progress button {
    gap:6px;
    font-size:10px
  }
  .bk-step-number {
    width:24px;
    height:24px
  }
  .bk-summary {
    padding:20px
  }
  .bk-scheduler {
    gap:16px
  }
  .bk-times {
    padding-left:16px
  }
  .bk-form-footer {
    padding:18px 24px
  }
}
@media(max-width:800px) {
  .bk-layout {
    grid-template-columns:1fr
  }
  .bk-aside {
    position:static;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px
  }
  .bk-summary {
    display:none
  }
  .bk-aside-note {
    padding:0 4px
  }
  .bk-aside-hours {
    border-top:0;
    border-left:1px solid var(--bk-line);
    padding:0 0 0 20px;
    margin:0
  }
  .bk-progress button {
    font-size:11px;
    gap:8px
  }
  .bk-stage {
    padding:30px
  }
  .bk-progress {
    padding:20px 25px
  }
  .bk-header-caption {
    display:none
  }
}
@media(max-width:480px) {
  .bk-header {
    height:72px;
    padding:0 18px
  }
  .bk-brand>span {
    font-size:22px
  }
  .bk-brand>svg {
    width:33px;
    height:33px
  }
  .bk-header-end {
    gap:0
  }
  .bk-main {
    padding:30px 16px 16px
  }
  .bk-intro {
    margin-bottom:26px
  }
  h1 {
    font-size:32px;
    letter-spacing:-1.2px
  }
  .bk-intro>p:last-child {
    font-size:13px
  }
  .bk-progress {
    padding:17px 14px;
    gap:5px
  }
  .bk-progress button {
    flex-direction:column;
    align-items:flex-start;
    gap:7px;
    font-size:10px
  }
  .bk-step-number {
    width:25px;
    height:25px
  }
  .bk-stage {
    padding:25px 19px
  }
  .bk-stage-heading h2 {
    font-size:22px
  }
  .bk-service-grid {
    gap:10px
  }
  .bk-service-content {
    padding:15px 13px;
    min-height:194px
  }
  .bk-service-content>strong {
    font-size:13px
  }
  .bk-service-desc {
    font-size:11px
  }
  .bk-service-top {
    margin-bottom:15px
  }
  .bk-form-footer {
    padding:16px 19px;
    gap:10px;
    flex-wrap:wrap
  }
  .bk-form-footer .bk-help {
    display:none
  }
  .bk-button {
    padding:11px 14px;
    gap:8px
  }
  .bk-fields {
    grid-template-columns:1fr;
    gap:16px
  }
  .bk-scheduler {
    grid-template-columns:1fr;
    gap:25px
  }
  .bk-times {
    border-left:0;
    border-top:1px solid var(--bk-line);
    padding:20px 0 0;
    min-height:0
  }
  .bk-time-grid {
    grid-template-columns:repeat(3,minmax(0,1fr))
  }
  .bk-calendar-grid button {
    font-size:13px
  }
  .bk-aside {
    gap:14px
  }
  .bk-aside-note p,.bk-aside-hours p {
    font-size:11px
  }
  .bk-aside-hours {
    padding-left:14px;
    gap:8px
  }
  .bk-page-footer {
    font-size:10px;
    flex-wrap:wrap;
    padding-top:28px
  }
  .bk-details summary {
    font-size:11px;
    gap:5px
  }
  .bk-details summary>span {
    font-size:10px
  }
  .bk-success {
    margin:25px auto 45px;
    padding:32px 22px
  }
  .bk-success h1 {
    font-size:28px
  }
  .bk-final-review dl {
    grid-template-columns:1fr
  }
  .bk-error {
    margin:16px
  }
  .bk-service-content {
    height:100%
  }
}
@media(prefers-reduced-motion:reduce) {
  * {
    scroll-behavior:auto!important;
    transition:none!important
  }
}

/* Canonical Digivriend logo, including the wordmark from assets/logo.svg. */
img.dv-brand-logo { display: block; width: 132px; height: 70px; max-width: 100%; object-fit: contain; padding: 5px 7px; background: transparent; border-radius: 0; flex: 0 0 auto; }
@media (max-width: 600px) { img.dv-brand-logo { width: 104px; height: 55px; padding: 4px 6px; } }
