/* ----------------------------------------------------------------- Toggle Mobile Menu ---------------------------------------------------------------- */
.mobileMenuWrapper{
	position: fixed;
	top: 0px;
	left: 0px;
	z-Index: 10;
	display: none;
	width: calc(100% - 25px - 25px);
	min-width: 880px;
	background: rgba(8,9,37,0.85);
	box-shadow: 0px 3px 10px #7d7d7f;
	padding-left: 25px;
	padding-right: 25px;
}
.mobileMenuLogoLink{
	width: calc(6vh * 3.6);
	height: 6vh;
	background-image: url(../images/dc_logo2.png);
	background-repeat: no-repeat;
	background-position: center left;
	background-size: calc(5vh * 3.6) 5vh;
}
.mobileToggleLink{
	-webkit-appearance: checkbox;
	display: none;
}
.toggleMenuLabel{
	display: none;
	position: relative;
	z-index: 25;
	color: #b28d14;
	font-family: 'remixicon', sans-serif;
	font-size: 30px;
	line-height: 30px;
	cursor: pointer;
}
.toggleMenuLabel:after{ content: attr(data-toggleText1); color: #b28d14; }
.mobileToggleLink:checked + div{ display: inline-block; }
.mobileToggleLink:checked ~ .toggleMenuLabel:after{ content: attr(data-toggleText2); color: #b28d14; font-size: 45px; }

.openMobileMenuWrapper{
	position: fixed;
	top: 0px;
	left: 0px;
	z-Index: 20;
	display: none;
	width: 100%;
	height: calc(100% - 50px);
	padding-bottom: 50px;
	background-color: #fff8e6;
	font-size: 2.5vh;
	line-height: 3vh;
	text-align: center;
}
.mobileMenuLogo{
	display: inline-block;
	height: 12vh;
	margin-top: 50px;
	margin-bottom: 100px;
}
.mobileMenuLink{
	font-family: 'Urbanist-Medium', sans-serif;
	font-size: 2.5vh;
	line-height: 3vh;
	color: #5b0088;
}
.mobileMenuEntry{
	font-family: 'Urbanist-Medium', sans-serif;
	font-size: 2.5vh;
	line-height: 3vh;
	color: #b38d14;
}
body:has(.mobileToggleLink:checked){ overflow: hidden; }



/* ---------------------------------------------------------------- Orientation Portrait --------------------------------------------------------------- */
@media screen and (max-width: 1024px){
	.menuWrapperFlex{ display: none; }
	.mobileMenuWrapper{ display: inline-block; }
	.toggleMenuLabel{ display: inline-block; }
	
	.pageWrapper{ padding-top: 0px; }
	
	.imgSliderContainer{ width: 80vw; height: calc(80vw / 1.5); }
	.controlPrevImg{ width: 50px; height: calc(80vw / 1.5); line-height: calc(80vw / 1.5); }
	.controlNextImg{ width: 50px; height: calc(80vw / 1.5); line-height: calc(80vw / 1.5); }
	.bigImg{ height: width: 80vw; height: calc(80vw / 1.5); }
}

@media only screen and (hover: none) and (pointer: coarse) and (max-width: 1024px) and (orientation: portrait){
	.menuWrapperFlex{ display: none; }
	.mobileMenuWrapper{ display: inline-block; }
	.toggleMenuLabel{ display: inline-block; }
	.menuLogo{ width: 40vw; height: calc(40vw / 5.8); }
	.toggleMenuLabel{ font-size: calc(40vw / 5.8); line-height: calc(40vw / 5.8); }
	.mobileToggleLink:checked ~ .toggleMenuLabel:after{ position: fixed; right: 25px; font-size: calc(40vw / 5.8); }
	.mobileSubCatLink, mobileSubCatEntry{ font-size: 2vh; line-height: 2vh; }
	
	.pageWrapper{ padding-top: 0px; }
	.flexThree{ flex-wrap: wrap; }
	.flexTwo{ flex-wrap: wrap; }
	.flexThree div, .flexTwo div{ flex-basis: 80%;  }
	.flexThree div .contentContainerTopImage, .flexTwo div .contentContainerTopImage{ height: 25vh; }
	
	.contentWrapperFlexFull{ flex-wrap: wrap; }
	.contentWrapperFlexFull div{ flex-basis: 100%; }
	.sideImgs{ width: calc(45vw - 5px); height: calc((45vw - 5px) / 1.33); }
	.contentWrapperFlexFull .pdfViewerContainer{ flex-basis: auto; }
	
	.imgSliderContainer{ width: 80vw; height: calc(80vw / 1.5); }
	.controlPrevImg{ width: 50px; height: calc(80vw / 1.5); line-height: calc(80vw / 1.5); }
	.controlNextImg{ width: 50px; height: calc(80vw / 1.5); line-height: calc(80vw / 1.5); }
	.bigImg{ height: width: 80vw; height: calc(80vw / 1.5); }
	
	.footerMiddleContainer{ font-size: 12px; }
	.footerRightContainer{ font-size: 12px; }
	.footerLink{ font-size: 12px; }
	.footerEntry{ font-size: 12px; }
}

/* --------------------------------------------------------------- Orientation Landscape --------------------------------------------------------------- */
@media only screen and (hover: none) and (pointer: coarse) and (max-width: 1024px) and (orientation: landscape){
	.menuWrapperFlex{ display: flex; }
	.mobileMenuWrapper{ display: none; }
	.toggleMenuLabel{ display: none; }
	
	.menuMainLinkCat{ font-size: 18px; }
	.menuEntrySmallMainCat{ font-size: 18px; }
	
	.pageWrapper{ padding-top: 0px; }
	
	.footerMiddleContainer{ font-size: 12px; }
	.footerRightContainer{ font-size: 12px; }
	.footerLink{ font-size: 12px; }
	.footerEntry{ font-size: 12px; }
}