/* Root Elements */

:root {
  --Fb: 1rem;
  --black: #000000;
  --white: #ffffff;
  --fg: var(--black);
  --bg: var(--white);

  --sTransition: 250ms cubic-bezier(0, 0.55, 0.13, 0.98);
  --mTransition: 400ms cubic-bezier(0, 0.55, 0.13, 0.98);
  --lTransition: 700ms cubic-bezier(0, 0.55, 0.13, 0.98);
  --xlTransition: 1000ms cubic-bezier(0, 0.55, 0.13, 0.98);

  --light: #ebebeb;
  --dark: var(--black);
  --Pm: 1.25rem;
  --Pg: 1.25rem;
  --Ph: calc(0.5 * var(--Pg));
  --Pd: calc(2 * var(--Pg));
  --Hh: 2.5rem;
  --Hs: calc(100vh - var(--Hh));
  --Wf: calc(100% + (2 * var(--Pg)));
  --Wg: calc(100% + var(--Pg));
  --Ml: calc(-1 * var(--Pg));

  --bgColor: #141414;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.hidden {
  display: none !important;
}

textarea,
input,
button,
select {
  font-family: inherit;
  font-size: inherit;
  text-align: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  background: inherit;
  color: inherit;
  border: none;
  padding: 0;
  outline: inherit;
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  background: inherit;
  color: inherit;
  border: none;
  padding: 0;
  outline: inherit;
  opacity: 1;
}

input,
textarea,
input::placeholder,
textarea::placeholder {
  background: inherit;
  color: inherit;
  border: none;
  padding: 0;
  outline: inherit;
  opacity: 1;
}

textarea {
  resize: none;
}

input:not([type="submit"]),
textarea {
  display: block;
  width: 100%;
  border-radius: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  background: none;
  width: 100%;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 0;
  color: var(--fg);
  margin: 0;
  padding: 0;
}

select option {
  color: var(--fg);
  margin: 0;
  padding: 0;
  background: var(--bg);
}

select:focus {
  outline: none;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

/* Input Elements */

button,
input[type="submit"],
input[type="reset"],
div[role="button"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="button"],
input[type="button"]:focus {
  outline: none;
}

a:link,
a:visited,
a:link span,
a:visited span {
  color: var(--dark);
  cursor: pointer;
  text-decoration: none;
}

/* Details Elements */

summary,
summary:focus {
  outline: none;
  list-style-type: none;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

details summary::marker,
details summary::-webkit-details-marker {
  content: "";
  visibility: hidden;
  position: absolute;
  z-index: -10;
  list-style-type: none;
  display: none;
}

summary > * {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

summary > *::after {
  content: "+";
  margin-left: var(--Pm);
}

@media (hover: hover) and (pointer: fine) {
  details summary:hover {
    opacity: 0.5;
  }
}

details[open] summary > *::after {
  content: "-";
}

details[open] summary ~ * {
  animation: appear 0.4s ease-in;
  -webkit-animation: appear 0.4s ease-in;
}

details.closing summary ~ * {
  -webkit-animation: close 0.4s ease-out;
  animation: close 0.4s ease-out;
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
    max-height: 0;
  }

  100% {
    opacity: 1;
    max-height: 100vh;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
    max-height: 0;
  }

  100% {
    opacity: 1;
    max-height: 100vh;
  }
}

@-webkit-keyframes close {
  0% {
    opacity: 1;
    max-height: 100vh;
  }

  100% {
    opacity: 0;
    max-height: 0;
  }
}

@keyframes close {
  0% {
    opacity: 1;
    max-height: 100vh;
  }

  100% {
    opacity: 0;
    max-height: 0;
  }
}

/* typography */

@font-face {
  font-family: "NB International";
  src: url("../fonts/NBInternationalRegularWebfont.woff2") format("woff2"),
    url("../fonts/NBInternationalRegularWebfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "NB International";
  font-size: 14px;
}

p,
a,
h1,
h2,
h3,
span {
  color: var(--dark);
}

.text-lg {
  font-size: 30px;
}

/* colors */

body {
  background-color: var(--light);
  transition: background-color 450ms ease-in;
}

/* Image/Video Elements */

.aspectholder > * {
  display: block;
}

.vsc-controller {
  height: 0 !important;
  width: 0 !important;
  -o-object-fit: unset !important;
  object-fit: unset !important;
}

/* btns */

.primary-btn.inverse {
  color: #000000;
  background: rgba(0, 0, 0, 0.2);
}

.primary-btn.inverse::after {
  content: url("../icons/arrow-black.svg");
}

.btn,
.nav-btn,
.primary-btn {
  color: var(--dark);
  padding: 7px 12px 6px;
  border-radius: 3px;
  mix-blend-mode: normal;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.2);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.primary-title {
  color: var(--dark);
  padding: 7px 12px 6px;
  border-radius: 3px;
  mix-blend-mode: normal;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.2);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn,
.nav-btn,
.primary-btn {
  cursor: pointer;
}

.primary-btn.transition {
  transition: padding-right var(--mTransition) 200ms;
}

.primary-btn:hover,
.work-gallery-item:hover .primary-btn,
.gallery-carousel-block:hover .primary-btn {
  padding-right: 22px;
}

.work-gallery-item .primary-btn {
  color: white;
}
.work-gallery-item .primary-btn.inverse {
  color: black;
}

.work-gallery-item .primary-btn::after {
  content: url("../icons/arrow-white.svg");
}

.primary-btn::after {
  content: url("../icons/arrow.svg");
  position: absolute;
  z-index: 2;
  fill: white;
  margin-left: 6px;
  opacity: 0;
  transition: opacity var(--sTransition) 100ms;
}

.dropdown.transition {
  transition: padding-right var(--mTransition) 200ms;
}
.dropdown.open {
  padding-right: 22px;
  transition: padding-right var(--mTransition) 0ms;
  border-color: rgba(255, 255, 255, 0.3);
}

.dropdown::after {
  content: url("../icons/cross.svg");
  position: absolute;
  z-index: 2;
  margin-left: 6px;
  opacity: 0;
  transition: opacity var(--sTransition) 100ms;
  width: 10px;
}
.dropdown.open::after {
  opacity: 1;
  transition: opacity var(--sTransition) 200ms;
}

.footer-dropdown {
  cursor: pointer;
  transition: -webkit-text-decoration var(--mTransition);
  transition: text-decoration var(--mTransition);
  transition: text-decoration var(--mTransition), -webkit-text-decoration var(--mTransition);
  text-underline-offset: 4px;
  -webkit-text-decoration: underline transparent;
  text-decoration: underline transparent;
}

.footer-dropdown:hover {
  text-decoration-color: var(--light);
}

.footer-dropdown.open {
  text-decoration-color: var(--light);
}

.dropdown-contact {
  margin: 40px 0;
}

.dropdown-item {
  display: flex;
}

.dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.dropdown-item > p {
  min-width: 90px;
}

.information-copy {
  margin-bottom: 40px;
}

.selected-clients {
  margin-left: 3px;
}

/* Contact form in dropdown */

.dropdown-content form div {
  display: flex;
  margin-bottom: 20px;
}

.dropdown-content form label {
  min-width: 90px;
}

.dropdown-content form input,
.dropdown-content form textarea {
  width: 100%;
  color: #000000;
  padding: 7px 12px 6px;
  border-radius: 3px;
  background-color: #cccccc;
}

.dropdown-content form input::-webkit-input-placeholder, .dropdown-content form textarea::-webkit-input-placeholder {
  opacity: 0.2;
}

.dropdown-content form input::-moz-placeholder, .dropdown-content form textarea::-moz-placeholder {
  opacity: 0.2;
}

.dropdown-content form input::placeholder,
.dropdown-content form textarea::placeholder {
  opacity: 0.2;
}

.dropdown-content form .primary-btn {
  margin-left: 90px;
}

.dropdown-content .representation_group__item p {
  min-width: 100px;
}

.dropdown-content .representation_country {
  margin-right: 20px;
}

/* dropdown content */

.mobile_navigation-backdrop {
  display: none;
}
.dropdown_close {
  position: fixed;
  z-index: 99;
  display: none;
  top: 0;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
}

.dropdown_close.open {
  display: block;
}

.dropdown-content {
  position: fixed;
  z-index: 999;
  background-color: white;
  padding: 20px;
  width: 415px;
  opacity: 0;
  border-radius: 3px;
  transition: opacity var(--sTransition) 0ms;
  visibility: hidden;
}

.dropdown-content a:not(.primary-btn) {
  color: black;
  -webkit-text-decoration: underline transparent;
  text-decoration: underline transparent;
  transition: -webkit-text-decoration var(--mTransition);
  transition: text-decoration var(--mTransition);
  transition: text-decoration var(--mTransition), -webkit-text-decoration var(--mTransition);
}
.dropdown-content a:hover {
  text-decoration-color: var(--dark);
}

.dropdown-content.navigation {
  top: 60px;
  right: 20px;
}

.dropdown-content.active {
  visibility: visible;
}

.dropdown-content.footer {
  bottom: 60px;
  left: 20px;
}

.dropdown-content.active {
  transition: opacity var(--lTransition) 0ms;
  opacity: 1;
}

.dropdown-content p {
  color: black;
}

.dropdown-content .primary-btn {
  background-color: rgba(0, 0, 0, 0.2);
  color: black;
}

.dropdown-content .primary-btn::after {
  content: url("../icons/arrow-black.svg");
}

/* Navigation*/

header {
  display: flex;
  position: fixed;
  top: 0;
  justify-content: flex-end;
  padding-top: 20px;
  padding-inline: 20px;
  width: calc(100vw - 14px);
  z-index: 100;
}

.header-nav {
  display: flex;
}

header.scrolled .nav-btn {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

header.scrolled .hamburger .bar {
  background: white;
}

header .hamburger .bar {
  background: black;
}

.mobile-navigation-inner .nav-btn {
  color: white;
}

.overview-hero-container .primary-btn {
  color: white;
}

.nav-btn:not(:last-child) {
  margin-right: 20px;
}

.nav-btn {
  border: 1px solid transparent;
}
.nav-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.hamburger,
.mobile-navigation-container {
  display: none;
}

#hero_logo {
  margin: 0;
  position: absolute;
  left: 20px;
  top: 20px;
  -webkit-transform: unset;
  transform: unset;
  z-index: 999;
  opacity: 1;
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.2);
}
#animation_bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  background-color: black;
  opacity: 0;
  overflow: hidden;
}

.desktop nav {
  opacity: 1;
}

.hidden-nav .desktop {
  -webkit-transform: translateY(-60px);
  transform: translateY(-60px);
  transition: -webkit-transform 250ms ease-in;
  transition: transform 250ms ease-in;
  transition: transform 250ms ease-in, -webkit-transform 250ms ease-in;
}

.hidden-nav .desktop.hide {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding-inline: 20px;
}
.grid-row {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  row-gap: 20px;
  padding-inline: 20px;
}

.grid-1 {
  grid-column-start: 1;
}

.grid-9 {
  grid-column-start: 9;
}

.sticky {
  top: 120px;
  position: -webkit-sticky;
  position: sticky;
}

/* flex */

.col {
  flex-direction: column;
}

.mr-20 {
  margin-right: 20px;
}
.mr-30 {
  margin-right: 30px;
}

.mt-120 {
  margin-top: 120px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-20 {
  margin-top: 20px;
}
.align-start {
  align-items: start;
}

.y-gap-20 {
  row-gap: 20px;
}

/* Homepage Hero */

.overview-hero-container {
  position: -webkit-sticky;
  position: sticky;
  max-width: 100%;
  width: 100vw;
  top: 0;
}

.overview-hero-container:not(:first-child) {
  height: 100vh;
  top: -46px;
}

.overview-hero-container:first-child {
  height: calc(100vh - 46px);
}

.overview-hero-container:last-child .hero-btn {
  position: absolute;
}
.desktop-overview {
  height: 100%;
}

.overview-hero-inner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-btn {
  position: -webkit-sticky;
  position: sticky;
  bottom: 20px;
  left: 20px;
  margin-top: 20px;
}

.hero-btn-top {
  display: inline-block;
  position: -webkit-sticky;
  position: sticky;
  left: 20px;
  margin-bottom: 20px;
}

.aspectholder {
  width: 100%;
  height: 100%;
}

.aspectholder img,
.aspectholder video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mobile-overview {
  display: none;
}
.mobile-overview .aspectholder {
  height: 100vh;
}

.mobile-overview .aspectholder img {
  width: auto;
}

.hero-item__wrapper:nth-child(2) {
  top: 100vh;
  z-index: 12;
}

.hero-item__wrapper:nth-child(3) {
  top: 200vh;
  z-index: 13;
}

.hero-item__wrapper:nth-child(4) {
  top: 300vh;
  z-index: 14;
}

.hero-item__wrapper:nth-child(5) {
  top: 400vh;
  z-index: 14;
  height: 100vh;
}

/* galleries marquee section */

.galleries-title {
  margin-bottom: 120px;
}

.galleries-title .block-copy-container {
  grid-column: 3 / span 4;
  display: flex;
  flex-direction: column;
}

.block-copy-container .primary-btn {
  margin-top: 17px;
}

.galleries-title .btn-container {
  grid-column: 10 / span 3;
  display: flex;
  justify-content: flex-end;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.galleries-title .btn-container .primary-btn {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.galleries-title .btn-container .primary-btn:not(:first-child) {
  margin-left: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.carousel-block-title {
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 3px;
  mix-blend-mode: normal;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 20px;
  left: 20px;
}

.galleries-carousel__wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  background-color: #ebebeb !important;
  margin-top: 150px;
  padding-top: 10px;
}

.galleries-carousel__container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  min-width: 100%;
  animation-delay: 0ms;
  -webkit-animation-delay: 0ms;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.galleries-carousel__container:first-child {
  margin-right: 20px;
}

.galleries-carousel__wrapper:hover .galleries-carousel__container {
  animation-play-state: paused !important;
  -o-animation-play-state: paused !important;
  -moz-animation-play-state: paused !important;
  -webkit-animation-play-state: paused !important;
}

.gallery-carousel-block {
  position: relative;
  height: 100%;
  grid-column: auto / span 3;
}

.gallery-carousel-block img {
  border-radius: 3px;
}

@keyframes run {
  from {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes run {
  from {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.tags-archive {
  -webkit-column-count: 6;
  -moz-column-count: 6;
  column-count: 6;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-inline: 20px;
}

/* Work page Grid */

.work-gallery-item {
  grid-column: auto / span 3;
  position: relative;
}

.work-gallery-item .aspectholder > * {
  border-radius: 3px;
}

.work-gallery-item .aspectholder {
  overflow: hidden;
  aspect-ratio: 3/4;
}

.work-gallery-tag-letter-container {
  margin-bottom: 20px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

.work-gallery-tag-letter {
  display: flex;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.work-section-title:first-child {
  margin-top: 120px;
}

.work-section-title {
  margin: 70px 0 20px 20px;
}

.work-gallery-tag-letter-container .primary-btn:not(:last-child),
.list-letter {
  margin-bottom: 5px;
}

/* gallery page slider */

.gallery-swiper {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: white;
  transition: background-color 500ms ease-in;
  padding-top: 64px;
}
.gallery-swiper .swiper-slide {
  height: 100%;
  width: auto;
}
.gallery-swiper .swiper-wrapper {
  height: 100%;
}

.gallery-swiper .aspectholder img,
.gallery-swiper .aspectholder video {
  height: 100%;
  width: auto;
  margin-inline: auto;
}

.gallery-swiper-thumbs {
  height: 104px;
  overflow: hidden;
}

.gallery-swiper-thumbs .swiper-slide {
  height: 100%;
  width: auto;
  opacity: 0.4;
  transition: opacity var(--mTransition);
  cursor: pointer;
}

.gallery-pagination {
  width: 100%;
  height: 4px;
  position: relative;
  margin: 1px 0;
}

.swiper-pagination-progressbar {
  background: transparent;
}

.swiper-pagination-progressbar-fill {
  background-color: #444444 !important;
}

.gallery-swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.gallery-swiper .primary-title {
  position: fixed;
  top: 21px;
  left: 160px;
  z-index: 1;
  border-radius: 2px;
}

.gallery-navigation {
  position: absolute;
  height: calc(100vh - 160px);
  width: 100%;
  top: 50px;
  left: 0px;
  display: flex;
  justify-content: space-between;
}

.gallery-navigation button {
  height: calc(100% - 80px);
  width: calc(50% - 100px);
  z-index: 9999999;
}

.gallery-navigation .gallery-navigation-prev:hover {
  cursor: url("../icons/arrow-prev.svg"), auto;
}
.gallery-navigation .gallery-navigation-next:hover {
  cursor: url("../icons/arrow-next.svg"), auto;
}

.gallery-swiper-thumbs .swiper-wrapper {
  height: 100%;
}

.gallery-swiper-thumbs .aspectholder img,
.gallery-swiper-thumbs .aspectholder video {
  height: 100%;
  width: auto;
}

.mobile-swiper {
  display: none;
}

/* Footer */

footer {
  height: 333px;
  margin-top: 160px;
  width: 100%;
}

footer .nav-btn,
footer .primary-btn {
  color: black;
  background: rgba(0, 0, 0, 0.2);
}

.footer-menu {
  display: flex;
  grid-column: 1 / span 3;
}

.footer-menu__item:not(:last-child) {
  margin-bottom: 11px;
}

.footer-menu__item {
  display: flex;
  align-items: center;
}

.footer-menu__item-title {
  min-width: 120px;
}
.representation__menu {
  display: flex;
  grid-column: 9 / span 4;
}

.representation__menu .footer-menu__item {
  width: 100%;
}

.representation_group {
  display: flex;
  width: 100%;
}

.representation_group__item {
  display: flex;
  align-items: center;
}

.representation_group__item p {
  min-width: 120px;
}

.representation_group__item:not(:last-child) {
  margin-bottom: 11px;
}

.representation_group:not(:last-child) {
  margin-bottom: 17px;
}

.footer__lower {
  /* margin-top: 120px; */
  grid-column: 1 / -1;
  display: flex;
  align-self: end;
  margin-bottom: 20px;
}

.footer-menu__title {
  margin-top: 6px;
}

.representation_country {
  margin-top: 6px;
}

@media all and (min-width: 1024px) {
  .work-gallery-item * {
    transition: scale var(--lTransition);
  }

  .work-gallery-item:hover .aspectholder > * {
    scale: 1.05;
  }

  .primary-btn:hover::after,
  .work-gallery-item:hover .primary-btn::after,
  .gallery-carousel-block:hover .primary-btn::after {
    opacity: 1;
    transition: opacity var(--sTransition) 400ms;
  }
}
