@charset "UTF-8";

/* ----- GLOBAL & WRAPPER ----- */

* {
	box-sizing: border-box;
	font-family: 'DR Publik', 'DRPublik', 'Publik', 'Barlow', sans-serif;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
	overflow-y: scroll;
}

::-webkit-scrollbar {
	background: rgba(0,0,0,.2);
	width: .5rem;
}

::-webkit-scrollbar-thumb {background: rgba(0,0,0,.2);}

::-webkit-scrollbar-thumb:hover {background: rgba(0,0,0,.3);}

#DR-wrapper {
	width: 100vw;
	height: 100vh;
}

/* ----- GLOBAL TYPOGRAPHY ----- */

h2 {
	font-size: 2rem;
	font-weight: 600;
}

.bold {font-weight: bold;}

.link {
	border-bottom: 1px solid transparent;
	color: black;
	padding: 0.25rem 0;
	text-decoration: none;
	transition: all 0.25s ease-in-out;
}

.link:hover {
	border-color: black;
}

/* ----- GLOBAL BUTTON STYLING ----- */

.backToWork {
	align-items: center;
	border: 1px solid black;
	display: flex;
	column-gap: .5rem;
	padding: .75rem 1rem;
	height: max-content;
	width: max-content;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.backToWork:hover {background: black;}
.backToWork:hover svg path {fill: white;}
.backToWork:hover p {color: white;}

.backToWork svg {height: 1.5rem;}
.backToWork svg path {transition: all 0.2s ease-in-out;}

.backToWork p {
	color: black;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.5rem;
	transition: all 0.2s ease-in-out;
}

.bannerBtn {
	background-color: #ff001e;
	color: white;
	column-gap: .5rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	padding: .75rem 1.25rem;
	text-decoration: none;
	transition: 0.2s ease-in-out;
}

.bannerBtn.disabled {
	background-color: rgb(200,200,200);
	cursor: not-allowed;
}

.bannerBtn svg {height: 1rem;}
.bannerBtn svg path {fill: white;}

.bannerBtn p {
	line-height: 1rem;
	white-space: nowrap;
}

.bannerBtn:hover:not(.disabled) {background-color: #4d4d4d;}

.btnIcon {
	fill: white;
	margin-right: 10px;
}

.bannerBtn > p {
	font-weight: 600;
	text-transform: uppercase;
}

/* ----- GLOBAL LANGUAGE VIEWABILITY ----- */

.en {display: none !important;}

.languageSelector {
	align-items: center;
	display: flex;
	column-gap: .75rem;
	height: 2rem;
}

.languageSelector p {
	color: rgba(0,0,0,0.2);
	font-size: 1.8rem;
}

.languageSelector img {
	height: 2rem;
	transition: all 0.2s ease-in-out;
}

.languageSelector img:not(.active) {cursor:pointer; opacity: .25;}

.languageSelector img:hover {opacity: 1;}

/* ----- HEADER STYLING ----- */

header {
	align-items: center;
	background: white;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	display: flex;
	justify-content: space-between;
	height: 90px;
	padding: 0 3rem;
	position: fixed;
	width: 100%;
	z-index: 100;
}

header > a, header > p {line-height: 1rem;}

header .logoSpan {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

header .logoSpan a {
	display: flex;
	justify-content: center;
	text-align: center;
	transition: all 0.2s ease-in-out;
}

header .logoSpan a:hover {opacity: .75;}

header .logoSpan .logo {
	display: block;
	height: 2rem;
}

header .logoSpan p {
	display: block;
	font-size: 1.2rem;
	text-align: center;
	text-transform: uppercase;
}

/* ----- SECTION STYLING ----- */

#DR #DR-content {
	box-sizing: border-box;
	display: flex;
	position: relative;
	top: 90px;
	width: 100%;
	height: calc(100% - 90px);
}

#DR #DR-content .workSelection {
	color: inherit;
	cursor: pointer;
	width: 50%;
	height: 100%;
	text-decoration: none;
}

#DR #DR-content .workSelection:hover div span button {
	background: black;
	color: white;
}

#DR #DR-content .workSelection div {
	align-items: flex-end;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	padding: 3rem;
	position: relative;
	width: 100%;
	height: inherit;
}

#DR #DR-content .workSelection #bannerBG {background-image: url("Resources/imgs/BannerThumb.png");}
#DR #DR-content .workSelection #fokusspotBG {background-image: url("Resources/imgs/FokusspotThumb_V2.jpg");}

#DR #DR-content .workSelection #bannerBG::before,
#DR #DR-content .workSelection #fokusspotBG::before {
	background-image: linear-gradient(to bottom, rgba(255,255,255,0) 25%, rgba(255,255,255,1) 85%);
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	transform: translateY(3rem);
}

#DR #DR-content .workSelection div span {
	text-align: center;
	z-index: 100;
}

#DR #DR-content .workSelection div span button {
	background: transparent;
	border: 1px solid black;
	color: black;
	font-size: 1rem;
	margin-top: 1rem;
	padding: 0.8rem 1.5rem;
	transition: all 0.2s ease-in-out;
}

/* ----- BANNER PAGE STYLING ----- */

#banners #DR-content {
	box-sizing: border-box;
	padding: 3rem;
	position: relative;
	top: 90px;
	width: 100%;
	min-height: calc(100% - 90px);
	height: auto;
}

#banners #DR-content > .moreWork {
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
}

#banners #DR-content section {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 1.5rem;
	width: 100%;
}

#banners #DR-content section div {
	/*background: #faf5eb;*/
	border: 1px solid rgba(0,0,0,.2);
	height: auto;
	padding: 1.5rem;
	width: calc((100% / 3) - 1rem);
}

#banners #DR-content section div .mediebrand {
	align-items: center;
	display: flex;
	column-gap: .75rem;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

#banners #DR-content section div .mediebrand .logo {height: 3rem;}

#banners #DR-content section div p span {font-weight: 600;}

#banners #DR-content section div .banner {
	display: block;
	height: max-content;
	margin-bottom: 1.5rem;
	text-align: right;
	width: 100%;
}

#banners #DR-content section div .banner:last-of-type {margin-bottom: 0;}

#banners #DR-content section div .banner .mobile {display: none;}

#banners #DR-content section div .banner aside img {
	background: rgb(200,200,200);
	display: block;
	width: 100%;
}

#banners #DR-content section div .banner .desktop img {aspect-ratio: 1200 / 226;}
#banners #DR-content section div .banner .mobile img {aspect-ratio: 640 / 360;}

#banners #DR-content section div .comingSoon {font-size: 1.2rem; opacity: .25;}

/* ----- FOKUSSPOT PAGE STYLING ----- */

#fokusspots #DR-content {
	box-sizing: border-box;
	padding: 3rem;
	position: relative;
	top: 90px;
	width: 100%;
	min-height: calc(100% - 90px);
	height: auto;
}

#fokusspots #DR-content > .moreWork {
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
}

#fokusspots #DR-content section {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: .75rem;
	margin: 1.5rem 0;
	width: 100%;
}

.fokusspot {
	background: rgb(200,200,200);
}

/* ----- MEDIA QUERIES ----- */

@media screen and (max-width: 2500px) {
	#banners #DR-content section div {width: calc(50% - .75rem);}
}

@media screen and (max-width: 1400px) {
	#banners #DR-content section div {width: 100%;}
}

@media screen and (max-width: 768px) {
	header > .link {display: none;}
}

@media screen and (max-width: 700px) {
	.desktop {display: none;}
	.mobile {display: block !important;}
}

@media screen and (max-width: 540px) {
	.backToWork {padding: .5rem .75rem;}
	.backToWork p {font-size: 1rem;}
	.backToWork svg {height: 1rem;}
	
	#banners #DR-content,
	#fokusspots #DR-content {padding: 1.5rem;}
	
	#banners #DR-content section div {padding: .75rem;}
}

@media screen and (max-width: 480px) {
	#banners .backToWork {
		margin-left: 1rem;
		position: relative;
		top: 1rem;
	}
	
	.bannerBtn {padding: .65rem 1rem;}
	.bannerBtn svg {height: .9rem;}
	.bannerBtn p {font-size: .9rem;}
	
	header .logoSpan p {font-size: 1rem;}
	
	#DR #DR-content {flex-direction: column;}
	
	#DR #DR-content .workSelection {width: 100%;}
	
	#DR #DR-content .workSelection #bannerBG::before,
	#DR #DR-content .workSelection #fokusspotBG::before {
		background-image: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 70%);
	}
	
	#DR #DR-content .workSelection div {padding: 1.5rem;}
	
	#banners #DR-content, #fokusspot #DR-content {padding: 0;}
	
	#banners #DR-content > .moreWork {
		font-size: 1.5rem;
		margin-top: 1.5rem;
	}
	
	#banners #DR-content section div .mediebrand .logo {height: 2rem;}
	#banners #DR-content section div .mediebrand {font-size: 1.25rem;}
	
	#banners #DR-content section div {padding: 1rem;}
	
	#fokusspots #DR-content {padding: 1rem;}
	
	#fokusspots #DR-content section {gap: calc(0.75rem / 2);}
}

@media screen and (max-width: 375px) {
	.bannerBtn {padding: .5rem .9rem;}
	.bannerBtn svg {height: .8rem;}
	.bannerBtn p {font-size: .8rem;}
}