@charset "UTF-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	transition: all 0.3s ease;
	overflow-x: hidden;
}

::selection {
  	color: #fff;
  	background: var(--blau);
	text-shadow: 0.1em 0.1em var(--pink);
}

:root {
	--mint: #b7dab9;
	--blau: #b3e0f7;
	--pink: #e7b8d5;
	--lila: #c5bfd3;
	--orange: #fab600;
	--gelb: #fbe400;
	--grau: #eef1f3;
}

a {
	text-decoration: none;
	color: #fff;
	cursor: url("img/pedro_cursor_orange.svg"), auto;
}


@font-face {
  font-family: 'Pedro';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/Pedro-Regular.woff') format('woff'),
       url('../fonts/Pedro-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Pedro';
  font-style: italic;
  font-weight: 400;
  src: local(''),
       url('../fonts/Pedro-Slanted.woff') format('woff'),
       url('../fonts/Pedro-Slanted.woff2') format('woff2');
}

h1, h2, h3, h4, p {
	font-weight: normal;
}

body {
	font-family: 'Pedro', sans-serif;
	font-weight: 400!important;
	cursor: url("img/pedro_cursor.svg"), auto;
}



navi {
	position: fixed;
	font-size: 2.5vh;
	line-height: 5vh;
	background: #000;
	color: #fff;
	border-bottom: 2px solid #fff;
	width: 95%;
	z-index: 10000;
	padding: 0 2.5%;
	display: flex;
    flex-direction: row;
    justify-content: space-between!important;
}

navi a {
	cursor: url("img/pedro_cursor_orange.svg"), url("img/pedro");
	display: inline-flex;
}

navi a:hover {
	cursor: url("img/pedro_cursor_orange.svg");
	color: var(--blau);
}
navi a:nth-child(2):hover {
	color: var(--pink);
}
navi a:nth-child(3):hover {
	color: var(--mint);
}
navi a:nth-child(4):hover {
	color: var(--gelb);
}

header {
	background: #000;
	color: #fff;
	text-align: center;
	height: calc(100vh - 5.5vh);
	width: 100%;
	display: table;
}

.header_content {
	display: table-cell;
	vertical-align: middle;
	background: url("img/portugal_KAR1564_karsten-rohrbeck_kl1200.jpg");
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}

header h1 {
	font-size: 20vw;
	display: block;
	text-shadow: 0 0 20px #000;
}

header h2 {
	display: inline-block;
	width: auto;
	font-size: 3.5vw;
	padding: 0.3em 0.5em;
	border-radius: 2em;
	color: #fff;
  	background: #000;
	box-shadow: 0 0 30px #333;
}



.anleser {
	width: 95%;
	padding: 20vh 0;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 2em;
	grid-template-areas:
		"pts . anl anl anl anl anl anl anl anl anl .";
}

.anlesertext {
	font-size: 30px;
	line-height: 45px;
	grid-area: anl;
}

.pointsize {
	grid-area: pts;
	font-size: 10px;
}

.de_pt {
	display: grid;
	background: #f3f3f3;
	text-align: center;
	font-size: 2.5vw;
	line-height: 9vw;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 0;
	grid-template-areas:
		"de de de de de de pt pt pt pt pt pt";
}


.de_words {
	grid-area: de;
}

.de_words h2:nth-child(odd) {
	background: #000;
	color: #fff;
}

.pt_words {
	grid-area: pt;
}

.pt_words h2:nth-child(even) {
	background: #000;
	color: #fff;
}

.reg_cap {
	font-style: normal;
	text-transform: uppercase;
}

.reg_mix {
	font-style: normal;
	text-transform: none;
}

.sla_cap {
	font-style: italic;
	text-transform: uppercase;
}

.sla_mix {
	font-style: italic;
	text-transform: none;
}

.de_pt h2:nth-child(1):hover {
	background: var(--pink);
}
.de_pt h2:nth-child(2):hover {
	background: var(--blau);
}
.de_pt h2:nth-child(3):hover {
	background: var(--mint);
}
.de_pt h2:nth-child(4):hover {
	background: var(--lila);
}


.checkerboard {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.checkerboard p {
	width: 25%;
	line-height: 25vw;
	font-size: 15vw;
	text-align: center;
}

.reg_black {
	color: #000;
	background: #f3f3f3;
	font-style: normal;
}


.sla_white {
	color: #fff;
	background: #000;
	font-style: italic;
}


.checkerboard p:first-child:hover {
	background-color: #b7dab9;
}
.checkerboard p:nth-child(2):hover {
	background: #e7b8d5;
}

.checkerboard p:nth-child(3):hover {
	background: #b3e0f7;
}
.checkerboard p:nth-child(4):hover {
	background: #c5bfd3;
}
.checkerboard p:nth-child(8):hover {
	background-color: #e7b8d5;
}
.checkerboard p:nth-child(7):hover {
	background: #b7dab9;
}
.checkerboard p:nth-child(6):hover {
	background: #c5bfd3;
}
.checkerboard p:nth-child(5):hover {
	background: #b3e0f7;
}


.waterfall {
	width: 100%;
	padding-top: 10vh;
    padding-left: 2.5vw;
	margin: 0 auto 10vh auto;
	list-style: none;
	display: flex;
}

.waterfall s {
	text-decoration-color: var(--gelb);
	text-decoration-thickness: 0.2em;
}

.waterfall ul {
	width: 100%;
}

.waterfall ul li {
	list-style-type: none;
	width: 100%;
	white-space: nowrap;
		overflow-x: hidden;
}

.waterfall ul li:first-child {
	font-size: 288px;
	line-height: 288px;
	margin-bottom: -100px;
}

.waterfall ul li:nth-child(2) {
	font-size: 144px;
	line-height: 144px;
	margin-bottom: -40px;
}

.waterfall ul li:nth-child(3) {
	font-size: 96px;
	line-height: 96px;
	margin-bottom: -20px;
}

.waterfall ul li:nth-child(4) {
	font-size: 72px;
	line-height: 72px;
	margin-bottom: -10px;
	
}

.waterfall ul li:nth-child(5) {
	font-size: 48px;
	line-height: 48px;
}


.waterfall ul li:nth-child(6) {
	font-size: 32px;
	line-height: 32px;
		margin-bottom: 5px;
}

.waterfall ul li:nth-child(7) {
	font-size: 24px;
	line-height: 24px;
	margin-bottom: 10px;
}

.waterfall ul li:nth-child(8) {
	font-size: 16px;
	line-height: 16px;
}



.waterfall ul li::before {
	font-size: 10px;
	display: inline-block;
	width: 5%;
}

.waterfall ul li:nth-child(1)::before {
		content: '288px';
	line-height: 288px;
}

.waterfall ul li:nth-child(2)::before {
		content: '144px';
	line-height: 144px;
}

.waterfall ul li:nth-child(3)::before {
		content: '96px';
	line-height: 96px;
}

.waterfall ul li:nth-child(4)::before {
		content: '72px';
	line-height: 72px;
}

.waterfall ul li:nth-child(5)::before {
		content: '48px';
	line-height: 48px;
	
}

.waterfall ul li:nth-child(6)::before {
		content: '32px';
	line-height: 32px;
}

.waterfall ul li:nth-child(7)::before {
		content: '24px';
	line-height: 24px;
}

.waterfall ul li:nth-child(8)::before {
		content: '16px';
	line-height: 16px;
}


.langs {
	width: 95%;
	margin: 10vh auto;
	display: grid;
	text-align: left;
	font-feature-settings: "ss01","ss03","ss06";
	font-size: 2vh;
	line-height: 3.3vh;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 2em;
	grid-template-areas:
		"por por por por eng eng eng eng deu deu deu deu";
}

.langs h2 {
	margin-bottom: 0.5em;
	overflow-y: hidden;
}

.langs div p:nth-child(3) {
	width: 80%;
	margin-top: 1em;
	font-size: 1.5vh;
	line-height: 2.3vh;
	
}

.langs div:hover h2, .langs div:hover p:nth-child(3) {
		color: var(--orange);
}

.de_quote {
	grid-area: deu;
}

.en_quote {
	grid-area: eng;
}
.pt_quote {
	grid-area: por;
}

.ronaldo {
	width: 100%;
	display: flex;
	text-align: center;
	font-size: 2.5vw;
	line-height: 7vw;
}

.ronaldo div {
	width: 50%;
	padding: 10vh 0;
	font-size: 30px;
	border: 1px solid #000;
	box-sizing: border-box;
}

.ronaldo div h2 {
	font-size: 35vw;
	line-height: 36vw;
	overflow: hidden;
}

.ronaldo div:first-child {
	border-right: none;
}

.ronaldo div:first-child:hover {
	color: var(--mint);
	border-right: none;
}
.ronaldo div:nth-child(2):hover {
	color: var(--pink);
}



.marquee_small {
	font-feature-settings: "ss01", "ss02";
    width: 100%;
			border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	background: #000;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
	line-height: 1vh;
}
.marquee_small p {
	background: #000;
	color: #fff;
		font-size: 3vh;
	line-height: 5.5vh;
	font-variant-numeric: tabular-nums;

    display: inline-block;
    padding-left: 100%;
    animation: marquee 180s linear infinite;
}
@keyframes marquee {
    0%   { transform: translate(-99vw, 0); }
    100% { transform: translate(-100%, 0); }
}

.marquee {
	
	font-feature-settings: "ss01", "ss02";
    width: 100%;
	background-color: #000;
	color: white;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.marquee p {
	font-size: 20vh;
	line-height: 25vh;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 180s linear infinite;
}
@keyframes marquee {
    0%   { transform: translate(-100vw, 0); }
    100% { transform: translate(-100%, 0); }
}

.marquee_right {
	font-feature-settings: "ss01", "ss02";
    width: 100%;
	background-color: #fff;
	color: #000;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.marquee_right p {
	font-size: 20vh;
	line-height: 25vh;
    display: inline-block;
    padding-left: 100%;
    animation: marquee_right 180s linear infinite;
}
@keyframes marquee_right {
    0%   { transform: translate(calc(-100% + 100vw), 0); }
    100% { transform: translate(0, 0); }
}


.img_marquee_por {
	height: 50vh;
	max-height: 600px;	
	font-feature-settings: "ss01", "ss02";
    width: 100%;
	background-color: #000;
	color: white;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.img_marquee_por img {
	filter: grayscale(100);
	height: 100%;
	max-height: 50vh;
}

.img_marquee_por img:hover {
	filter: grayscale(0);
}

.img_marquee_por p {
    display: inline-block;
	margin: 0;
    padding-left: 100%;
    animation: marquee_por 180s linear infinite;
}


@keyframes marquee_por {
    0%   { transform: translate(-100vw, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Base */

.slider {
	background: #000;
	padding: 1em 1em;
  display: flex;
	width: 100vw;
	margin: 0 auto;
  align-items: center;
  position: relative;
}

.slider figure {
	color: #fff;
	text-align: left;
	display: flex;
	flex-direction: column;
}
}

.first {
  margin-left: 10vw;
}
.slider__slides {
  max-height: 40vh;
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
}

.slider__slide {
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: ;
  margin-right: 20px;
}

.slider__slide > img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}



/* Modifiers */
.slider--fullscreen {
  height: 40vh;
}

.slider--fullscreen .slider__slides {
  max-height: 100vh;
  gap: 0;
}

.slider--fullscreen .slider__slide {
  height: 40vh;
}

.slider--fullscreen .slider__slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}



.img_marquee_inuse {
	font-feature-settings: "ss01", "ss02";
    width: 100%;
	background-color: #000;
	color: white;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
	/*overflow-x: scroll;*/
}

.img_marquee_inuse .marquee_element {
	margin: 0 3vw 4em 0;
	display: inline-block;
}

.img_marquee_inuse img {
	height: calc(100% - 2em);
	max-height: 60vh;
}

.img_marquee_inuse p {
	margin-top: 0.5em;
}



.img_marquee_inuse .marquee_line {
    display: inline-block;
	margin: 0;
    animation: marquee_inuse 90s linear infinite;
}

.img_marquee_inuse h2 {
	margin: 1em 0% 1em 3%;
	white-space: normal;
}


@keyframes marquee_inuse {
    0%   { transform: translate(8vw, 0); }
    100% { transform: translate(-100%, 0); }
}


.glyphs {
	display: flex;
	width: 95%;
	margin: 10vh auto;
	justify-content: space-between;
}

.glyphs div {
	width: 48%;
	display: flex;
	justify-content: space-between;
}

.glyphs div:nth-child(2) {
	display: flex;
	justify-content: space-between;
	font-style: italic;
}

.glyphs p {
	width: 15%;
}

.glyphs ul {
	width: 85%;
}

.glyphs li {
	margin: 0;
    width: 4vw;
    font-size: 3vw;
    line-height: 5vw;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	border: 0.5px solid #aaa;
}

.alt {
	font-feature-settings: "ss01", "ss02", "ss03", "ss04", "ss05", "ss06";
}

.img_marquee_zine h2 {
	margin: 1em 0% 0 3%;
	white-space: normal;
}

.img_marquee_zine {
	font-feature-settings: "ss01", "ss02";
    width: 100%;
	background-color: #000;
	color: white;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.img_marquee_zine img {
	filter: grayscale(100);
	height: 100%;
	max-height: 50vh;
}

.img_marquee_zine img:hover {
	filter: grayscale(0);
}

.img_marquee_zine p {
    display: inline-block;
	margin: 0;
    padding-left: 100%;
    animation: marquee_zine 180s linear infinite;
}


@keyframes marquee_zine {
    0%   { transform: translate(-50vw, 0); }
    100% { transform: translate(-100%, 0); }
}



#get {
	padding: 10vh 2.5vw; 
}

#get a {
	width: calc(75% - 10rem);
	display: block;
	border-radius: 10rem;
	padding: 4.5rem;
	margin: 5vh auto;
	background: #000;
	color: #fff;
	overflow-y: hidden;
	text-align: center!important;
	transition: all 0.3s ease;
}

#get a p {
	font-size: 3.85vw;
	overflow-y: hidden;
	line-height: 4.5vw;
}

#get a p span {
	font-size: 2em;
	line-height: 0.5em;
}

#get mark {
	background: #000;
	color: #fff;
}

#get a:hover {
	transition: all 0.3s ease;
	animation: shiny 3s linear infinite;
	background: var(--mint);
	box-shadow: 1rem 1rem 0 0 var(--orange);
	transform: translateY(-20px) translateX(-20px);
}

#get a:hover mark {
	background: #fab600;
	color: #000;
}

@keyframes shiny {
	0%   {background-color: var(--mint);}
	20%  {background-color: var(--blau);}
  	40%  {background-color: var(--pink);}
	60%  {background-color: var(--blau);}
	80%  {background-color: var(--lila);}
	100% {background-color: var(--mint);}
}

#get .get-intro {
	display: flex;
	justify-content: space-between;
	width: 75%;
	margin: 0 auto;
	align-items: flex-start;
}

#get .get-text {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#get .get-reel {
	width: 50%;
	display: FLEX;
	justify-content: flex-end;
}

.get-reel video {
	max-width: 75%;
	max-height: 75vh;
}

#get h1 {
	font-size: 48px;
	margin-bottom: 0.25em;
}


#get h2 {
	font-size: 28px;
	line-height: 1.6em;
}

#get h2 a {
	display: inline;
	border-radius: 0px;
	width: auto;
	padding: 0;
	margin: 0;
	background: none;
	color: #000;
}

#get h2 a:hover {
	background: var(--mint);
	box-shadow: none;
}


.product-container {
	display: flex;
	justify-content: space-between;
	padding: 10vh 0vw 2vh 2.5vw;
	flex-wrap: wrap;
}

.product-container a {
	display: inline!important;
	padding: 0!important;
	color: inherit!important;
	background: inherit!important;
}

.product-container a:hover {
	box-shadow: 0 0 0!important;
	background: var(--mint)!important;
}

.productcard {
	display: flex;
	flex-direction: column;
	width: 30%;
	font-feature-settings: "ss04"
}

.productimg {
	width: 100%;
	aspect-ratio: 4 / 5;
	background-size: cover; 
	margin-bottom: 0.5rem;
}

.productimg:hover::after{ 
  animation: shake 200ms 5;
  animation-timing-function: ease-in-out;   
}

@keyframes shake {
  0% { transform: rotate(346deg); }
  50% { transform: rotate(340deg); }
  100% { transform: rotate(346deg); }
}

.kleingedrucktes {
	font-size: 12px;
	margin-top: 3em;
}

.shirt {
	background: url("img/get/bg_pedro-shirt-produktkachel1_beautyshot_1.jpg");
	background-size: cover; 
}

.shirt:hover {
	background: url("img/get/bg_pedro-shirt-produktkachel1_beautyshot.gif");
	background-size: cover; 
}

.shirt::after {
 	content: '35 €';
    font-size: 3vw;
    padding: 0.2em 0.6em;
    background: var(--mint);
    color: #000;
    position: absolute;
    margin-top: -20px;
    margin-left: -30px;
    border-radius: 2em;
    transform: rotate(346deg);
}

.zine {
	background: url("img/get/bg_pedro-zine-produktkachel2_newspapermockup_1.jpg");
	background-size: contain; 
}

.zine:hover {
	background: url("img/get/bg_pedro-zine-produktkachel2_newspapermockup.gif");
	background-size: contain; 
}

.zine::after {
 	content: '10 €';
    font-size: 3vw;
    padding: 0.2em 0.6em;
    background: var(--mint);
    color: #000;
    position: absolute;
    margin-top: -20px;
    margin-left: -30px;
    border-radius: 2em;
    transform: rotate(346deg);
}

.product-container span {
	font-feature-settings: "ss02";	
}

.font {
	background: url("img/get/bg_pedro-font-produktkachel3_typespecimen_1.jpg");
	background-size: contain; 
}

.font:hover {
	background: url("img/get/bg_pedro-font-produktkachel3_typespecimen.gif");
	background-size: contain; 
}

.font::after {
 	content: '25 €';
    font-size: 3vw;
    padding: 0.2em 0.6em;
    background: var(--mint);
    color: #000;
    position: absolute;
    margin-top: -20px;
    margin-left: -30px;
    border-radius: 2em;
    transform: rotate(346deg);
}




/*********** slider ************/


  main {
	  padding: 0px;
	  padding-bottom: 0;
    color: #fff;
    background-color: #000;
	  overflow: hidden;
    overflow-x: scroll; 
	  font-size: 0;
	}

	main h2 {
		font-size: 1.5rem;
		margin: 1em 0 1em 2.5vw;
	}
	
  .items {
	  font-size: 16px;
	  padding-bottom: 2em;
    position: relative;
	  background: #000;
    overflow-x: scroll;
    overflow-y: hidden;
	  transform: scale(1);
    white-space: nowrap;
    transition: all 0.2s;
    cursor: grab; }

  .items.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;}

  .item {
	  font-size: 1rem;
    display: inline-block;
    margin-left: 1em;}

.item:nth-of-type(1){
	margin-left: 2.5vw;
}
.item:last-of-type{
	margin-right: 2.5vw;
}

.item img {
	height: 60vh;
	min-height: 300px;
	max-height: 60vh;
}

.item a {
  display: block;
}

.example::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.example {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
	-webkit-scrollbar-width: none;  /* Firefox */
}




/************* typetester***********/
hr {
	width: 95%;
	margin: 0 auto;
	color: #000;
	border: 1px solid #000;
}

#tools {
  width: 95%;
  padding: 10vh 2.5% 1.5vh 2.5%;
	margin: 0 auto;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  font-family: "Pedro", Arial;
}

input {
  border: 0px;
  background: #eee;
}



#tools button, #sample-text-input, #font-sizer {
	cursor: url("img/pedro_cursor_ice.svg"), auto;
}

#btn_random {
	transition: all 1s ease;
}

#btn_random:active {
	color: #fff;
	background: #000;
	transition: all 1s ease;
}

#test_note {
	margin: 10vh 0 0 2.5vw; 
}


#sample-text-input, #font-sizer {
	padding: 0.5em;
  font-family: inherit;
  font-size: 16px;
	background: #fff;
	border: 2px solid #000;
}

#font-sizer {
	display: flex;
	column-gap: 1em;
	justify-content: space-between;
}

#font-sizer label {
	flex-grow: 1;
}

#font-sizer input {
	flex-grow: 5;
}

#sample-text-input {
	display: none;
}

#text-input-field {
  min-width: 200px;
	font-size: 16px;
	background: #ddd;
	font-family: 'Pedro', Arial;
}

#text-input-field:focus {
	outline: none;
}

.font-label {
  margin-top: 1rem;
  padding-left: 2rem;
  color: #2045FA;
}

.typetester {
	padding-bottom: 10vh;
}

button {
	padding: 0.5em;
  font-family: inherit;
  font-size: inherit;
	background: #fff;
	border: 2px solid #000;
}

#text-output {
  font-family: 'Pedro', Arial;
  font-size: 70px;
  margin: 2rem auto 0 auto;
  line-height: 1.2;
  width: 95%;
  box-sizing: border-box;
  color: #000;
	overflow: visible;
}

#text-output:focus {
	outline: none;
}

#text-output::selection {
	background: var(--mint);
}

.stylistics {
	font-feature-settings: "ss01","ss02","ss03","ss04","ss05","ss06";
}


footer {
	border-top: 1px solid #fff;
	text-align: center;
	color: #fff;
	background: #000;
	padding: 1.5vh;
}

footer span {
	font-family: Arial, sans-serif;
}

footer a {
	text-decoration: underline;
}


@media screen and (max-width:550px) {
	.anleser {
		padding: 10vh 0;
	}
	
	.anlesertext {
		grid-column: 1 / 13;
		font-size: 20px;
		line-height: 26px;
	}
	
	.de_pt {
		font-size: 5vw;
		line-height: 11vw;
		grid-template-areas:
		"de de de de de de de de de de de de"
		"pt pt pt pt pt pt pt pt pt pt pt pt";
	}
	
	.checkerboard {
		flex-direction: column;
		height: 200vw;
	}
	
	.checkerboard p {
		width: 50%;
		line-height: 50vw;
		font-size: 30vw;
	}
	
	.langs {
		grid-template-areas:
		'. por por por por por por por por por por .'
		'. deu deu deu deu deu deu deu deu deu deu .'
		'. eng eng eng eng eng eng eng eng eng eng .';
	}
	
	.langs div {
		margin-bottom: 3em;
	}
	
	.langs h2 {
		overflow-y: hidden;
	}
	
	.ronaldo div {
		padding: 5vh 0;
		font-size: 16px;
	}
	
	#tools {
		flex-wrap: wrap;
	}
	
	#tools div {
		flex-grow: 1;
		margin-top: -1px;
    	margin-left: -1px;
	}
	
	#tools button {
		width: 100%;
	}
	
	#sample-text-input {
		display: none;
	}
	#font-sizer {
		min-width: 40%;
		width: 100%;
	}
	
	#test_note {
		width: 93%;
	}
	
	.img_marquee_zine h2 {
		font-size: 16px;
	}
	
	.img_marquee_inuse img {
	height: calc(100% - 2em);
	max-height: 30vh;
}
	
	.glyphs {
		margin-top: 5vh;
		margin-bottom: 15vh;
		flex-wrap: wrap;
	}
	
	.glyphs div {
		width: 100%;
		flex-direction: column;
	}
	
	.glyphs ul {
		width: 100%;
	}
	.glyphs p {
		margin-top: 2em;
		margin-bottom: 0.5em;
		width: 100%;
	}
	.glyphs li {
		width: 8vw;
		font-size: 6vw;
		line-height: 10vw;
	}
	
	#get a {
		padding: 2em 4.5em;
	}
	
	#get h1 {
		grid-column: 1 / 13;
		font-size: 30px;
	}
	#get h2 {
		grid-column: 1 / 13;
		font-size: 20px;
		line-height: 26px;
	}
	
	.get_size {
		display: none;
	}
	
	
	.item img {
	height: 40vh;
	min-height: 300px;
	max-height: 40vh;
}
	

	
	
}



@media screen and (max-width:960px) {
	#get .get-intro {
		width: 100%;
	}
	
	.productcard {
		width: 48%;
		margin-bottom: 5em;
	}
	
}

@media screen and (max-width:650px) {
		#get .get-intro {
		width: 100%;
		flex-direction: column;
	}
	
	#get .get-reel, #get .get-text, #get .get-reel video {
		width: 100%;
		max-width: 100%;
		max-height: 100%;
	}
	
	.get-text {
		margin-bottom: 2em;
	}
	
	.productcard {
		width: 100%;
		margin-bottom: 5em;
	}
	
	.productcard:last-of-type {
		margin-bottom: 2em;
	}
	
	.productimg::after {
		font-size: 40px;
	}
	
	.kleingedrucktes {
		margin-top: 0;
	}
	
	#get a {
		width: calc(100% - 10rem);
	}
	
}
@supports (-webkit-touch-callout: none) {
	.header_content {
		background-attachment: scroll;
	}
}


