/* ==========================================================================
   Boabat Alnoor — theme v2
   --------------------------------------------------------------------------
   Loaded AFTER bn-theme.css and overrides it, so v1 stays intact and the two
   are one config line apart. This layer matches the reference site's layout
   system closely:

     nav        fixed, 68px, translucent white, 14px/500 links
     hero       full viewport height, video behind a dark gradient,
                content centred, oversized pill buttons
     headings   48px / 800 Montserrat, centred, with a 96x4 pill bar beneath
     sections   64-80px vertical padding
     cards      white, 12px radius, generous shadow, 32px padding,
                64px circular icon tinted from the brand colour
     stats      30px / 900, centred, alternating brand and grey

   Only the layout system is reproduced. Colours stay Boabat Alnoor's, and all
   copy, imagery and structure below the layout are this company's own.
   ========================================================================== */

:root {
  /* v2 rhythm */
  --v2-heading:      clamp(2rem, 3.6vw, 3rem);   /* 48px at desktop */
  --v2-section-y:    5rem;                        /* 80px */
  --v2-card-radius:  .75rem;                      /* 12px */
  --v2-btn-radius:   1rem;                        /* 16px */
  --v2-grey:         #939598;
  --v2-muted-line:   #f4f4f4;
  --v2-nav-h:        4.25rem;                     /* 68px */
}

/* ----------------------------------------------------------- background -- */

/* The reference paints one gradient across the whole document and leaves every
   section transparent on top of it. Sections that need a solid ground get a
   translucent white so the gradient still reads through. */
body {
  padding-top: var(--v2-nav-h);
  background: linear-gradient(to bottom right, #3387aa 0%, #ffffff 50%, #a9abac 100%);
  background-attachment: fixed;
}

.bn-section--soft { background: rgba(255, 255, 255, .55); }
.bn-section--mute { background: rgba(255, 255, 255, .7); }

/* ------------------------------------------------------------------ nav -- */

.bn-topbar { display: none; }

/* Edge to edge, with the logo flush to the left margin - no centred container. */
.bn-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--v2-nav-h);
  background: rgba(255, 255, 255, .6);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 0;
  box-shadow: 0 1px 0 rgba(9, 33, 63, .05);
}
.bn-nav > .bn-container {
  max-width: none;
  width: 100%;
  padding-inline: 1rem;
}
.bn-nav__inner { min-height: var(--v2-nav-h); gap: 1rem; }
.bn-nav__logo { margin-right: auto; }
.bn-nav__logo img { max-height: 3.25rem; width: auto; }

.bn-nav__link {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  color: #6f7173;
  padding: .55rem .85rem;
}
.bn-nav__link:hover { color: var(--brand); background: transparent; }
.bn-nav__link.is-active { color: var(--brand); font-weight: 600; }
.bn-nav__link.is-active::after { display: none; }

.bn-nav__menu a { font-size: .875rem; }

/* --------------------------------------------------------------- hero --- */

.bn-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* The nav is fixed and translucent, so the hero starts underneath it. */
  margin-top: calc(var(--v2-nav-h) * -1);
  padding-top: var(--v2-nav-h);
}

.bn-hero__media::after,
.bn-hero--flagship .bn-hero__media::after,
.bn-hero--video .bn-hero__media::after {
  background:
    linear-gradient(160deg,
      rgba(15, 23, 42, .92) 0%,
      rgba(15, 23, 42, .80) 45%,
      rgba(2, 6, 12, .88) 100%);
}

.bn-hero__inner { width: 100%; }

.bn-hero__content {
  max-width: 60rem;
  margin-inline: auto;
  text-align: center;
}

.bn-hero .bn-kicker {
  justify-content: center;
  font-size: .8125rem;
  letter-spacing: .2em;
  color: #cbd5e1;
}
.bn-hero .bn-kicker::before { display: none; }

.bn-hero h1 {
  font-size: clamp(2.25rem, 5.4vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.bn-hero p {
  font-size: clamp(1.0625rem, 1.7vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, .9);
  max-width: 52rem;
  margin-inline: auto;
}

.bn-hero__actions { justify-content: center; gap: 1.25rem; margin-top: 2.75rem; }

/* Oversized pill buttons, as on the reference: 20px/700 in a 24x56 box. */
.bn-hero__actions .bn-btn {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-weight: 700;
  padding: 1.5rem 3.5rem;
  border-radius: var(--v2-btn-radius);
  line-height: 1;
}
@media (max-width: 36rem) {
  .bn-hero__actions { flex-direction: column; align-items: stretch; gap: .875rem; }
  .bn-hero__actions .bn-btn { padding: 1.15rem 2rem; }
}
.bn-hero__actions .bn-btn--primary {
  background: var(--brand);
  box-shadow: 0 10px 30px -10px rgba(0, 150, 77, .7);
}
.bn-hero__actions .bn-btn--on-dark {
  background: rgba(255, 255, 255, .08);
  border-width: 1.6px;
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}
.bn-hero__actions .bn-btn--on-dark:hover { background: rgba(255, 255, 255, .16); }

.bn-hero__dots { display: none; }

/* ---------------------------------------------------- section headings -- */

.bn-section { padding-block: var(--v2-section-y); }
.bn-section--tight { padding-block: 4rem; }

/* Every section head is centred, with the accent bar beneath the title. */
.bn-head,
.bn-head--center {
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 4rem;
  text-align: center;
}

.bn-head .bn-kicker {
  justify-content: center;
  font-size: .75rem;
  letter-spacing: .18em;
}
.bn-head .bn-kicker::before { display: none; }

.bn-title {
  font-size: var(--v2-heading);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 0;
}

/* The pill bar under the heading. */
.bn-head .bn-title::after {
  content: "";
  display: block;
  width: 6rem;
  height: .25rem;
  margin: .5rem auto 0;
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 2px 8px -2px var(--brand);
}

.bn-lede { margin-top: 1.25rem; font-size: 1.0625rem; }

/* Section heads that carry a side link stay centred; the link drops below. */
.bn-head[style*="justify-content:space-between"],
.bn-head[style*="justify-content: space-between"] {
  display: block !important;
  text-align: center;
}
.bn-head[style*="space-between"] > div { max-width: none !important; }
.bn-head[style*="space-between"] .bn-link-arrow { margin-top: 1.25rem; }

/* --------------------------------------------------------------- cards -- */

.bn-card {
  border-radius: var(--v2-card-radius);
  border: .8px solid var(--v2-muted-line);
  box-shadow: 0 10px 15px -3px rgba(9, 33, 63, .08), 0 4px 6px -4px rgba(9, 33, 63, .06);
}
.bn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -14px rgba(9, 33, 63, .26);
}

.bn-service { padding: 2rem; text-align: center; }
.bn-service .bn-card__title,
.bn-service .bn-card__text { text-align: center; }

.bn-service__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  color: var(--brand);
  font-size: 1.5rem;
}
/* Fallback for engines without color-mix. */
@supports not (background: color-mix(in srgb, red 10%, transparent)) {
  .bn-service__icon { background: var(--brand-050); }
}

.bn-service ul { text-align: left; display: inline-block; }

/* --------------------------------------------------------------- stats -- */

.bn-stats {
  border: 0;
  background: transparent;
  gap: 1.5rem;
  border-radius: 0;
}
.bn-stat {
  background: transparent;
  text-align: center;
  padding: 1.25rem 1rem;
}
.bn-stat__num {
  font-family: var(--font-body);
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--brand);
}
/* Alternate brand and grey down the row, as the reference does. */
.bn-stat:nth-child(even) .bn-stat__num { color: var(--v2-grey); }

.bn-stat__label {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
  margin-top: .5rem;
}
.bn-stat__caption { font-size: .8125rem; }

/* ------------------------------------------------------------ who we are */

.bn-section--who {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.bn-section--who .bn-prose { text-align: center; max-width: 54rem; margin-inline: auto; }

/* ------------------------------------------------------------- flagship -- */

.bn-flagship__text { text-align: center; }
.bn-flagship__text .bn-kicker { justify-content: center; }
.bn-flagship__text .bn-kicker::before { display: none; }
.bn-flagship__facts { justify-items: center; }
.bn-flagship__text > div:last-child { justify-content: center; }

@media (min-width: 62rem) {
  .bn-flagship__text { text-align: left; }
  .bn-flagship__text .bn-kicker { justify-content: flex-start; }
  .bn-flagship__facts { justify-items: start; }
  .bn-flagship__text > div:last-child { justify-content: flex-start; }
}

/* --------------------------------------------------- portfolio blocks --- */

/* The portfolio is one tall section broken into labelled blocks, each with its
   own centred sub-heading — the reference's treatment. */
.bn-portfolio-block { margin-bottom: 5rem; }
.bn-portfolio-block:last-of-type { margin-bottom: 2rem; }

.bn-portfolio-block__head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.5rem;
}
.bn-portfolio-block__head h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  margin-bottom: .35rem;
}
.bn-portfolio-block__head h3::after {
  content: "";
  display: block;
  width: 4rem;
  height: .1875rem;
  margin: .5rem auto .9rem;
  background: var(--brand);
  border-radius: 999px;
  opacity: .85;
}
.bn-portfolio-block__head p {
  color: var(--text-soft);
  font-size: .9375rem;
  margin: 0;
}

/* -------------------------------------------------------- client logos -- */

/* Each client sits in its own white rounded tile with a deep shadow, laid out
   on a tight grid rather than a scrolling strip. */
.bn-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 8.5rem));
  justify-content: center;
  gap: 1rem;
  background: transparent;
  border: 0;
  max-width: 72rem;
  margin-inline: auto;
}

.bn-logo {
  aspect-ratio: 1;
  min-height: 0;
  padding: 1.25rem;
  background: #fff;
  border: 0;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(9, 33, 63, .25);
  transition: transform .3s ease, box-shadow .3s ease;
}
.bn-logo:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 32px 60px -12px rgba(9, 33, 63, .32);
}
.bn-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, .1));
  opacity: 1;
}
.bn-logo:hover img { transform: none; }
.bn-logo span { font-size: .8125rem; text-align: center; line-height: 1.3; }

/* --------------------------------------------------------- page loader -- */

.bn-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: linear-gradient(to bottom right, #0f172a, #1e293b, #020610);
  /* Belt and braces: if the script never runs, the animation still clears it. */
  animation: bn-loader-out .5s ease 2.2s forwards;
}
.bn-loader.is-done { animation: none; opacity: 0; visibility: hidden; transition: opacity .5s ease, visibility .5s; }

.bn-loader__mark { display: grid; justify-items: center; gap: 2.5rem; }

/* The loader is the mark with the company name set beneath it, and nothing
   else - no rule, no progress bar. It shows for a moment and then hands over
   to the page. */
.bn-loader__initials {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(3.5rem, 11vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.03em;
}

.bn-loader__name {
  display: block;
  margin-top: .9rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(.8125rem, 1.8vw, 1rem);
  letter-spacing: .36em;
  text-indent: .36em;      /* balances the space letter-spacing adds at the end */
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

/* The progress rule, set beneath the company name. It is the one thing on the
   loader that moves, so it is the one thing that reads as "loading". */
.bn-loader__rule {
  display: block;
  width: min(14rem, 46vw);
  height: 3px;
  margin: 1.25rem auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  overflow: hidden;
}
.bn-loader__rule i {
  display: block;
  height: 100%;
  width: 45%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bn-blue), var(--bn-green));
  animation: bn-loader-slide 1.2s ease-in-out infinite;
}

@keyframes bn-loader-slide {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(340%); }
}

@keyframes bn-loader-out {
  to { opacity: 0; visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .bn-loader { display: none; }
}

/* ------------------------------------------------------ motion on entry -- */

/* Sections lift into place as they arrive, and cards within a grid stagger. */
.bn-reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1),
              transform .7s cubic-bezier(.4, 0, .2, 1);
}
.bn-reveal.is-in { opacity: 1; transform: none; }

.bn-grid > .bn-card,
.bn-grid > .bn-syscard {
  opacity: 0;
  transform: translateY(2.5rem) scale(.96);
  transition: opacity .6s cubic-bezier(.4, 0, .2, 1),
              transform .6s cubic-bezier(.4, 0, .2, 1);
}
.bn-grid.is-in > .bn-card,
.bn-grid.is-in > .bn-syscard { opacity: 1; transform: none; }

/* Stagger by position so a row assembles rather than snapping in. */
.bn-grid.is-in > *:nth-child(1) { transition-delay: 0s; }
.bn-grid.is-in > *:nth-child(2) { transition-delay: .08s; }
.bn-grid.is-in > *:nth-child(3) { transition-delay: .16s; }
.bn-grid.is-in > *:nth-child(4) { transition-delay: .24s; }
.bn-grid.is-in > *:nth-child(5) { transition-delay: .32s; }
.bn-grid.is-in > *:nth-child(6) { transition-delay: .4s; }

/* Hero copy arrives in sequence once the loader clears. */
.bn-hero__content > * {
  opacity: 0;
  transform: translateY(1.25rem);
  animation: bn-rise .8s cubic-bezier(.4, 0, .2, 1) forwards;
}
.bn-hero__content > *:nth-child(1) { animation-delay: .15s; }
.bn-hero__content > *:nth-child(2) { animation-delay: .3s; }
.bn-hero__content > *:nth-child(3) { animation-delay: .45s; }
.bn-hero__content > *:nth-child(4) { animation-delay: .6s; }

@keyframes bn-rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .bn-reveal,
  .bn-grid > .bn-card,
  .bn-grid > .bn-syscard,
  .bn-hero__content > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ---------------------------------------------------------------- misc -- */

.bn-btn { border-radius: .625rem; }
.bn-btn--primary { box-shadow: 0 8px 20px -8px rgba(0, 150, 77, .55); }

.bn-banner { padding-block: clamp(4rem, 8vw, 6rem); text-align: center; }
.bn-banner .bn-crumbs { justify-content: center; }
.bn-banner p { margin-inline: auto; }

.bn-footer { background: var(--ink); }

@media (max-width: 61.9375rem) {
  /* backdrop-filter makes an element the containing block for its
     position:fixed descendants. The base stylesheet already drops it here so
     the slide-in drawer can fill the viewport, but the rule above re-applies
     it for this theme and wins on load order - so drop it again. Without this
     the closed drawer is parked relative to the header instead of the screen
     and the page can be swiped sideways to reveal it. */
  .bn-nav {
    position: sticky;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
  }
  body { padding-top: 0; }
  .bn-hero { margin-top: 0; padding-top: 0; }
}

/* ==========================================================================
   Hero palette, matched to the supplied reference
   --------------------------------------------------------------------------
   The mark is set in vivid brand blue and green rather than the muted values
   sampled off the low-resolution JPEG, and blue becomes the hero's accent:
   the eyebrow and the primary action both carry it, so the section reads as
   one colour idea instead of a blue mark sitting above a green button.

   Scoped to the hero. The rest of the site keeps the green accent, so this
   does not quietly re-brand every page.
   ========================================================================== */

:root {
  --bn-blue:        #1e88f0;   /* the B, the eyebrow, the primary action */
  --bn-blue-deep:   #1573d4;   /* its pressed / hover step */
  --bn-green:       #2fb344;   /* the N */
  --hero-body:      #d8e3ee;   /* supporting copy under the headline */
}

/* ---- the mark ---- */

.bn-wordmark__b { color: var(--bn-blue); }
.bn-wordmark__n { color: var(--bn-green); }

.bn-wordmark__name {
  color: #ffffff;
  opacity: .96;
}
.bn-wordmark__name::after {
  background: linear-gradient(90deg,
    transparent, var(--bn-blue), var(--bn-green), transparent);
}

/* ---- the ramp ---- */

.bn-hero .bn-kicker {
  color: var(--bn-blue);
  opacity: 1;
  font-weight: 700;
  letter-spacing: .16em;
}

/* Flat white, as in the reference - the earlier wash is dropped here. */
.bn-hero h1 {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #ffffff;
}

.bn-hero p { color: var(--hero-body); }

/* ---- the actions ---- */

.bn-hero__actions .bn-btn--primary {
  background: var(--bn-blue);
  border-color: var(--bn-blue);
  color: #fff;
  box-shadow: 0 10px 30px -12px rgba(30, 136, 240, .8);
}
.bn-hero__actions .bn-btn--primary:hover {
  background: var(--bn-blue-deep);
  border-color: var(--bn-blue-deep);
}

.bn-hero__actions .bn-btn--on-dark {
  background: transparent;
  border-color: rgba(30, 136, 240, .55);
  color: #fff;
}
.bn-hero__actions .bn-btn--on-dark:hover {
  background: rgba(30, 136, 240, .12);
  border-color: var(--bn-blue);
}

/* The drifting light field picks up the same two hues. */
.bn-hero__aura {
  background:
    radial-gradient(38% 42% at 22% 30%, rgba(30, 136, 240, .30), transparent 62%),
    radial-gradient(34% 38% at 78% 68%, rgba(47, 179, 68, .22), transparent 62%),
    radial-gradient(30% 34% at 62% 18%, rgba(30, 136, 240, .16), transparent 60%);
}

/* The loader shares the hero's mark, so it shares its colours too. */

/* A transparent mark needs no white plate behind it anywhere. */
.bn-footer__about img,
.bn-loader img { background: none; padding: 0; }

/* ---------------------------------------------- general manager message -- */

/* A signed statement rather than another content block: reading measure, a
   rule down the leading edge, and the signature closing it off. */

.bn-gm__quote {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 0 0 2rem;
  border-left: 3px solid var(--bn-blue, var(--brand));
  background: none;
  quotes: none;
}

.bn-gm__quote p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 1.35rem;
}
.bn-gm__quote p:first-of-type {
  font-size: 1.1875rem;
  color: var(--text);
}

.bn-gm__sign {
  display: grid;
  gap: .15rem;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}
.bn-gm__name {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
}
.bn-gm__role {
  font-size: .8125rem;
  color: var(--text-faint);
  letter-spacing: .02em;
}

@media (max-width: 36rem) {
  .bn-gm__quote { padding-left: 1.25rem; }
  .bn-gm__quote p:first-of-type { font-size: 1.0625rem; }
}

/* The system cards open bnesp.com, so they have to look and behave like links:
   a pointer, a visible affordance, and a keyboard focus ring. */
a.bn-syscard { display: block; color: inherit; text-decoration: none; }
a.bn-syscard:hover { color: inherit; }
a.bn-syscard:focus-visible { outline: 2px solid var(--bn-blue, var(--brand)); outline-offset: 4px; }

.bn-syscard__go {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.1rem;
  font-family: var(--font-head);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--brand-600);
  opacity: .75;
  transition: opacity .2s ease, gap .2s ease;
}
a.bn-syscard:hover .bn-syscard__go { opacity: 1; gap: .6rem; }

/* ==========================================================================
   Finish, part four — the last pass before launch
   --------------------------------------------------------------------------
   Three details that are only noticed when they are missing:

     12. section edges that meet instead of butting
     13. images that arrive rather than pop
     14. a heading that stays put while its cards scroll past

   As with everything above: decoration only, and all of it off under
   prefers-reduced-motion.
   ========================================================================== */

/* ---- 12. seams between sections --------------------------------------- */

/* Where a tinted band meets the page ground, a hairline of the brand colour
   fading out from the centre softens the join. Without it the two flat fills
   collide on a hard edge, which is the thing that makes a long page feel
   assembled from blocks. */
.bn-section--soft,
.bn-section--dark { position: relative; }
.bn-section--soft::before,
.bn-section--dark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent, rgba(30, 136, 240, .28), rgba(47, 179, 68, .28), transparent);
}
.bn-section--soft::before { top: 0; z-index: 2; }
.bn-section--dark::after  { bottom: 0; z-index: 2; }

/* ---- 13. photographs fade up as they decode --------------------------- */

/* A lazily-loaded photograph normally snaps in the instant it decodes. Held at
   zero opacity until `load` fires and then eased in, the grid fills rather
   than flickers. The class is added by JS, so images still show if it fails. */
.bn-card__media img,
.bn-lightgrid img,
.bn-flagship__shot img {
  opacity: 0;
  transition: opacity .5s ease;
}
.bn-card__media img.is-loaded,
.bn-lightgrid img.is-loaded,
.bn-flagship__shot img.is-loaded { opacity: 1; }

/* ---- 14. the portfolio heading holds ---------------------------------- */

@media (min-width: 62rem) {
  .bn-portfolio-block__head {
    position: sticky;
    top: calc(var(--v2-nav-h) + 1.5rem);
    z-index: 3;
    /* A soft plate so the heading stays readable over cards passing behind. */
    background: linear-gradient(rgba(255, 255, 255, .92), rgba(255, 255, 255, 0));
    padding-top: 1rem;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bn-card__media img,
  .bn-lightgrid img,
  .bn-flagship__shot img { opacity: 1; transition: none; }
  .bn-portfolio-block__head { position: static; }
}
