@font-face {
  	font-family: "AkzidenzGroteskPro";
  	src: url("/fonts/akzidenzgroteskpro_lightex.ttf") format("truetype");
  	font-weight: 300;
  	font-style: normal;
}

@font-face {
  	font-family: "AkzidenzGroteskPro";
  	src: url("/fonts/akzidenzgroteskpro_regular.ttf") format("truetype");
  	font-weight: 400;
  	font-style: normal;
}

@font-face {
  	font-family: "AkzidenzGroteskPro";
  	src: url("/fonts/akzidenzgroteskpro_boldex.ttf") format("truetype");
  	font-weight: 700;
  	font-style: normal;
}

:root {
	--black-color: #000000;
	--white-color: #ffffff;
}

.light {
	--black-color: #ffffff;
	--white-color: #000000;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	cursor: default;
}

a {
	cursor: pointer !important;
}

body {
	background: var(--black-color);
	font-family: "AkzidenzGroteskPro", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 18px;
	color: var(--white-color);
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
  	text-rendering: optimizeLegibility;
  	transition: background .35s;
}

.header__section {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header__container {
	max-width: 1560px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 75px 25px;
}

.marquee__block {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
}

.marquee__inner {
    display: inline-block;
    white-space: nowrap;
}

.marquee__text {
    display: inline-block;
    color: var(--black-color);
	font-size: 32px;
	font-weight: 700;
	text-shadow: 
	-1px -1px 0 var(--white-color),
	1px -1px 0 var(--white-color),
	-1px 1px 0 var(--white-color),
	1px 1px 0 var(--white-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
    transition: .35s;
}

.header__block {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header__logo {
	width: 185px;
	height: auto;
	margin-bottom: 25px;
}

.header__logo path {
	fill: var(--white-color);
}

.header__heading {
	max-width: 50%;
	text-align: center;
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 2.5rem;
	margin-bottom: 50px;
}

.header__button {
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--white-color);
	text-decoration: none;
	padding: 10px;
	transition: .35s;
	transform: scale(1);
}

.header__button:hover {
	transform: scale(1.75);
}

.header__bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 5px;
	padding-bottom: 75px;
}

.header__bottom-link {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--black-color);
	text-decoration: none;
	text-shadow: 
	-1px -1px 0 var(--white-color),
	1px -1px 0 var(--white-color),
	-1px 1px 0 var(--white-color),
	1px 1px 0 var(--white-color);
	cursor: pointer;
	transition: .35s;
}

.header__bottom-link:hover {
	color: var(--white-color);
	text-shadow: none;
}

.header__bottom-icons {
	display: flex;
	column-gap: 5px;
	align-items: center;
}

.header__bottom-icons svg {
	width: 20px;
	height: auto;
}

.header__bottom-icons svg path {
	stroke: var(--white-color);
}

.cases__section {
	padding-top: 200px;
}

.cases__container {
	max-width: 1500px;
	width: 100%;
	display: flex;
	flex-direction: column;
	row-gap: 15px;
	margin: 0 auto;
}

.case__block {
	position: relative;
	width: 100%;
	height: 520px;
}

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

.slick-track {
	display: flex !important;
	gap: 15px;
}

.case__gallery-item {
	width: 920px !important;
	height: 520px !important;
	outline: none;
}

.light .case__gallery-item {
	box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, .5);
}

.case__gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case__overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	padding: 50px 125px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	z-index: 10;
}

.case__overlay-header {
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

.case__sidebar {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 520px;
	height: 100%;
	background: var(--black-color);
	top: 0;
	right: -999px;
	padding: 20px 50px;
	transition: right .5s ease-in-out;
	z-index: 99;
}

.case__sidebar.active {
	right: 0;
}

.case__sidebar-inner {
	display: flex;
	flex-direction: column;
	row-gap: 35px;
}

.case__sidebar-content {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
}

.case__sidebar-text {
	font-size: 1rem;
	line-height: 1.25rem;
}

.case__sidebar-button {
	position: relative;
	width: 140px;
	height: 40px;
	font-family: "AkzidenzGroteskPro";
	font-weight: 300;
	font-size: 1.2rem;
	background: var(--white-color);
	color: var(--black-color);
	border: none;
	cursor: pointer;
	overflow: hidden;
	transition: color .35s;
	pointer-events: auto !important;
	z-index: 1;
}

.case__sidebar-button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: var(--black-color);
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.3s;
	z-index: -1;
}

.case__sidebar-button:hover::before {
	transform: translate(-50%, -50%) scale(1.5);
}

.case__sidebar-button:hover {
	color: var(--white-color);
}

.header__overlay-inner {
	display: flex;
	column-gap: 35px;
	pointer-events: none;
	color: #fff;
}

.case__overlay-heading {
	max-width: 700px;
	font-size: 6rem;
	line-height: 5.5rem;
	letter-spacing: -2px;
	pointer-events: none;
}

.case__overlay-subheading {
	font-size: 1.25rem;
	font-weight: 300;
	margin-top: 15px;
	pointer-events: none;
}

.case__overlay-button {
	position: relative;
	width: 140px;
	height: 40px;
	font-family: "AkzidenzGroteskPro";
	font-weight: 300;
	font-size: 1.2rem;
	background: var(--black-color);
	color: var(--white-color);
	border: none;
	cursor: pointer;
	overflow: hidden;
	transition: color .35s;
	pointer-events: auto !important;
	z-index: 1;
}

.case__overlay-button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: var(--white-color);
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.3s;
	z-index: -1;
}

.case__overlay-button:hover::before {
	transform: translate(-50%, -50%) scale(1.5);
}

.case__overlay-button:hover {
	color: var(--black-color);
}

.portfolio__section {
	padding-top: 150px;
}

.portfolio__container {
	max-width: 1500px;
	width: 100%;
	display: flex;
	flex-direction: column;
	row-gap: 100px;
	margin: 0 auto;
}

.portfolio__block {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	padding-left: 100px;
}

.portfolio__heading {
	font-size: 5.5rem;
	line-height: 5rem;
}

.portfolio__subheading {
	font-weight: 300;
}

.portfolio__grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	width: 100%;
}

.portfolio__grid-item {
	display: flex;
	border-radius: 10px;
}

.portfolio__grid-item.invert {
	filter: unset;
}

body.light .portfolio__grid-item.invert {
	filter: invert(100%) hue-rotate(180deg);
}

.portfolio__grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.portfolio__grid-item.sm {
	aspect-ratio: 1 / 1;
}

.portfolio__grid-item.md {
  	grid-column: span 2;
  	aspect-ratio: 2 / 1;
}

.portfolio__grid-item.lg {
  	grid-column: span 2;
  	grid-row: span 2;
  	aspect-ratio: 1 / 1;
}

.portfolio__grid-item.brand {
	border: 1px solid var(--white-color);
}

.footer__section {
	padding-top: 75px;
	padding-bottom: 50px;
}

.footer__container {
	max-width: 1500px;
	width: 100%;
	display: flex;
	flex-direction: column;
	row-gap: 100px;
	margin: 0 auto;
}

.footer__block {
	padding-left: 100px;
}

.footer__logo {
	width: 50px;
	height: auto;
	margin-bottom: 25px;
}

.footer__logo path {
	fill: var(--white-color);
}

.footer__block-text {
	font-size: .85rem;
}

.navbar__container {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	opacity: 0;
	transition: opacity .35s, background .35s;
	background: var(--black-color);
	pointer-events: none;
}

.navbar__container.active {
	opacity: 1;
	pointer-events: auto;
}

.navbar__wrapper {
	max-width: 1500px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 25px;
	margin: 0 auto;
}

.navbar__inner {
	width: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.navbar__inner:first-child {
	justify-content: flex-start;
}

.navbar__inner:last-child {
	justify-content: flex-end;
}

.navbar__burger {
	width: 40px;
	height: auto;
	cursor: pointer !important;
}

.navbar__burger-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 100%;
	transform: rotate(0);
	transition: .5s ease;
	cursor: pointer !important;
}

.navbar__burger.active .navbar__burger-icon {
	width: 15px;
	gap: 8px;
	transform: rotate(90deg);
}

.navbar__icon-inner {
	width: 100%;
	height: 1px;
	background: var(--white-color);
	transition: .35s ease;
	cursor: pointer !important;
}

.navbar__burger-icon path {
	fill: var(--white-color);
}

.navbar__menu {
	position: absolute;
	padding: 15px 35px;
	top: 60px;
	background: var(--black-color);
	opacity: 0;
	transform: scale(0);
    transform-origin: top left;
    transition: .35s;
}

.navbar__burger.active .navbar__menu {
	transform: scale(1);
	opacity: 1;
}

.navbar__menu-list {
	display: flex;
	flex-direction: column;
	row-gap: 3px;
}

.navbar__menu-link {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--black-color);
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: 
	-1px -1px 0 var(--white-color),
	1px -1px 0 var(--white-color),
	-1px 1px 0 var(--white-color),
	1px 1px 0 var(--white-color);
	white-space: nowrap;
	transition: .35s;
}

.navbar__menu-link:hover {
	color: var(--white-color);
	text-shadow: none;
}

.navbar__logo {
	width: 48px;
	height: auto;
	cursor: pointer;
	transition: transform .2s ease;
	transform: scale(1);
}

.navbar__logo:hover {
	transform: scale(.75);
}

.navbar__logo path {
	fill: var(--white-color);
	cursor: pointer;
}

.navbar__selector {
	display: flex;
	flex-direction: row;
	gap: 10px;
	padding: 5px;
	background: var(--white-color);
	border-radius: 2em;
	transition: flex-direction 0.5s ease-in-out;
	cursor: pointer;
}

.navbar__selector-figure {
	width: 25px;
	height: 25px;
	background: var(--black-color);
	border-radius: 50%;
	cursor: pointer;
	transition: transform 0.5s ease-in-out;
}

.navbar__selector-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 25px;
	height: 25px;
	padding: 5px;
	cursor: pointer;
	transition: transform 0.5s ease-in-out;
}

.navbar__selector-icon svg {
	width: 100%;
	height: auto;
	cursor: pointer;
}

.navbar__selector-icon svg path {
	cursor: pointer;
}

.navbar__selector.active {
	flex-direction: row-reverse;
}
