.pgh-sticky-buttons {
	position: fixed;
	right: 0;
	top:45%;
	z-index: 999;
}

.pgh-sticky-buttons a {
	display: block;
    background-color: #123E53;
	width: 40px;
	height: 40px;
	margin-bottom: 5px;
	background-repeat: no-repeat;
	background-size: 25px 25px;
	background-position: center center;
	border:2px solid #ff8c00;
}

.pgh-sticky-buttons a:Hover {
	background-color: #ff8c00;
	border:2px solid #123E53;
}

.pgh-sticky-buttons a.sticky-phone { 
	background-image: url('../wp-content/uploads/2024/11/phone-invert.svg');
}

.pgh-sticky-buttons a.sticky-email {
	background-image: url('../wp-content/uploads/2024/11/email-invert.svg');
}


.wpcf7 p {
		font-size: 14px;
}

.wpcf7-form input[type="text"], 
.wpcf7-form input[type="email"], 
.wpcf7-form input[type="url"], 
.wpcf7-form input[type="password"], 
.wpcf7-form input[type="search"], 
.wpcf7-form input[type="number"], 
.wpcf7-form input[type="tel"], 
.wpcf7-form textarea {
    color: #1B3D53;
    width: 100%;
    padding: 10px 10px;
    border-radius: 0;
    border: 1;
	  border-color: #1B3D53; 
	  font-size: 14px;
}

.wpcf7-form input[type="checkbox"]{
	
} 

.wpcf7-textarea {
	max-height: 100px;
  min-height: 100px;
}

.wpcf7-list-item a{
	text-decoration: none;
}

.wpcf7-list-item a:hover {
    color: #1B3D53;
}

.wpcf7-list-item a::after {
	font-family: "FontAwesome";
  content: " \f08e";
	color: orange;
	font-size: 12px;
  font-weight: 200;
}

.wpcf7-text:focus, 
.wpcf7-textarea:focus {
    outline: 1px solid rgba(84, 222, 197, 0.9);
    outline-offset: 0;
}

div.wpcf7-mail-sent-ok {
    border: 0;
    background: #5471de;
    color: #fff;
    padding: 18px;
}

div.wpcf7-acceptance-missing,
div.wpcf7-validation-errors {
    border: 0;
    background: #f9443b;
    color: #fff;
    padding: 18px;
}

span.wpcf7-not-valid-tip {
    color: #f9443b;
}

.wpcf7-form-control .button {
    background-color: #14e2ae;
    border: 0;
    color: #fff;
    border-radius: 1px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    width: auto;
    padding: 20px 42px;
    letter-spacing: 2px;
    font-size: 14px;
}

.wpcf7-form-control .button:hover {
    cursor: pointer;
    box-shadow: 0px 7px 16px -7px rgba(0, 0, 0, 0.4);
    border: 0;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; 
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ 
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; 
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); 
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); 
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; 
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%; 
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none; 
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; 
}
.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; 
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; 
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; 
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; 
}


.pgh-hero-fade-wrapper{
	position: relative;
	overflow: hidden;
}

.pgh-hero-fade{
	position: absolute;
	content: '';
	width: 100%;
/* height: 100%; */
	inset: 0;
	background-size: cover;
	background-position: center center;
	opacity: 0;
	animation-name: pgh-hero-fade-zoom;
	animation-duration: 24s;
	animation-iteration-count: infinite;
}


.pgh-hero span{
  	background-color: rgb(255, 255, 255, 0.7);
 	background-repeat: no-repeat;
  	background-size: 80px 80px;
  	background-position: center center;
	padding: 30px 30px;
	color: #1B3D53;
  	display: inline-block;
	position: relative;
	z-index: 100;
}


/* Stop fade on Hover */
/*
.pgh-hero-fade-wrapper:hover .pgh-hero-fade{
	animation-play-state: paused;
}
*/

/* 4 Projektbilder für Projekt Header */
.pgh-hero-img-01{
	background-image: url("../wp-content/uploads/2024/12/1_Slider_BV1835_STO_I.png");
}

.pgh-hero-img-02{
	background-image: url("../wp-content/uploads/2024/11/Fortuna_Luftbild_1104x622.jpg");
}

.pgh-hero-img-03{
	background-image: url("../wp-content/uploads/2024/12/1_Slider_BV1915_Premier_Inn_1800x1000.jpg");
}

.pgh-hero-img-04{
	background-image: url("../wp-content/uploads/2024/12/1_Screenshot_2019-11-20_Enter__Berlin_Townscape_2_.png");
}

.pgh-hero-img-05{
	background-image: url("../wp-content/uploads/2024/11/Bild_UeberUns_neu-e1733168165243.jpg");
}

.pgh-hero-img-06{
	background-image: url("../wp-content/uploads/2024/11/Bild_Home.jpg");
}

.pgh-hero-img-07{
	background-image: url("../wp-content/uploads/2024/11/Bild_Karriere.jpg");
}

/*
.pgh-hero-fade:after{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
}
*/

.pgh-hero-fade:nth-child(2){
	animation-delay: 0s;
}

.pgh-hero-fade:nth-child(3){
	animation-delay: 8s;
}

.pgh-hero-fade:nth-child(4){
	animation-delay: 16s;
}


@keyframes pgh-hero-fade-zoom {
	0%{
		opacity: 0;
		transform: scale(100%);
	}
	16.66%{
		opacity: 1;
	}
	33.33%{
		opacity: 1;
	}
	48.66%{
		opacity: 0;
	}
	100%{
		opacity: 0;
		transform: scale(110%);
	}
}


.gb-dynamic-read-more{
	text-decoration: none;
}

.gb-dynamic-read-more::after{
	font-family: "FontAwesome";
    content: '\f08e';
	color: orange;
	display: inline-block;
    font-weight: 200;
}

.prev a{
	text-decoration: none;
}

.next a{
	text-decoration: none;
}

.prev::after{
	font-family: "FontAwesome";
	white-space: pre;
    content: ' \f08e';
	color: orange;
	display: inline-block;
    font-weight: 200;
}

.next::after{
	font-family: "FontAwesome";
	white-space: pre;
    content: ' \f08e';
	color: orange;
	display: inline-block;
    font-weight: 200;
}

/* prompt-100 - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 100;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-100italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: italic;
  font-weight: 100;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-100italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-200 - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 200;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-200italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: italic;
  font-weight: 200;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 300;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-300italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: italic;
  font-weight: 300;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 400;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: italic;
  font-weight: 400;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 500;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-500italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: italic;
  font-weight: 500;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 600;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-600italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: italic;
  font-weight: 600;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 700;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-700italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: italic;
  font-weight: 700;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-800 - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 800;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-800italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: italic;
  font-weight: 800;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-900 - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 900;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* prompt-900italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Prompt';
  font-style: italic;
  font-weight: 900;
  src: url('../wp-content/uploads/2024/12/prompt-v10-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-300 - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-300italic - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-italic - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500italic - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600italic - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700italic - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800 - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800italic - latin_latin-ext_math_symbols */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  src: url('../wp-content/uploads/2024/12/open-sans-v40-latin_latin-ext_math_symbols-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Änderungen für PGH */
/* PGH Listen */
/* Listen ohne Einzug */



.pgh-list-block-square {
	list-style-type: square;
	padding-left: 1em;
  padding-bottom: 1em;
	margin:0; 
}

.pgh-list-block {
	padding-left: 1em;
	padding-bottom: 1em;
	margin:0; 
	text-decoration: none;
}

.pgh-link {
	/* text-decoration: none; */
}

.pgh-link a::after {
	font-family: "FontAwesome";
  content: " \f08e";
	color: orange;
  font-weight: 200;
}

/* Footer List Navigation */

.pgh-list-footer-nav{
	list-style-type: square;
	text-decoration: none;
}

.pgh-list-footer-nav a{
	list-style-type: square;
	text-decoration: none;
}

.pgh-list-footer-nav li::before {
	content: ">";
	/* color: red; */
  display: inline-block; 
	width: 1em;
  margin-left: -1em}

/* ------------*/

/* FIX System CSS */

/* Menu Fixer */
/* Höhe des Menüs anpassen*/

.main-navigation .navigation-branding img {
    min-height: 70px;
    padding: 4;
}

/* ------------*/

.pgh-projekt-table table{
	border-style: none;
	padding: 5px;
}

.pgh-projekt-table tr td{
	padding: 10px;
}

.pgh-projekt-table tr{
	vertical-align: top;
	height: 22px;
}

.pgh-projekt-table td:first-of-type{
	width: 11em;
}
