@font-face {
  font-display: swap;
  font-family: 'Lato400';
  src: url('../fonts/lato-v24-latin-regular.woff2') format('woff');
}

@font-face {
  font-display: swap;
  font-family: 'Lato700';
  src: url('../fonts/lato-v24-latin-700.woff2') format('woff');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font: 1.2rem Lato400, sans-serif;
  color: #444;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font: 2rem Montserrat, sans-serif;
  font-variation-settings: 'wght' 400;
  color: #872050;
}

h3 {
  font-size: 1.5rem;
}

body {
  background: #DDD;
}

aside h2, aside p {
  color: #DDD;
}

article a {
  color: #872050;
  text-decoration: underline;
}

article a:hover {
  font-weight: bold;
  text-decoration: none;
}

/* Datenschutz Schriften & Abstände */
#ds h2 {
  font-size: 1.7rem;
  padding: 0.7rem 0 0;
}

#ds h3 {
  font-size: 1.3rem;
  padding-top: 0.7rem;
}

#ds h4 {
  font-size: 1.1rem;
  padding-top: 0.5rem;
}

#ds p {
  margin-bottom: 0.5rem;
}

#ds a {
  color: #444;
}

#ds a:hover {
  color: #872050;
}

#ds ul {
  padding: 0 0 0.5rem 1rem;
}

#ds li {
  padding-bottom: 0.5rem;
}

/* von 320px bis 849px */
@media (min-width:320px) and (max-width:849px) {

h2 { font-size: 1.5rem; }

#container { 
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

aside {
  flex-basis: 100%;
  background: #872050;
  padding: 1rem 2rem;
}

aside img {
  max-height: 80px;
  max-width: auto;
}

#flex_cont {
  flex-basis: 100%;
}

#pagenavi {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(135, 32, 80,0.8);
    transform: translateX(100%);
    transition: 0.5s;
  }

#navclick:checked ~ #pagenavi {
  transform: translateX(0);
}

#pagenavi ul {
  list-style: none;
  padding-top: 30%;
}

#pagenavi a::before {
  content: "#";
  padding-right: 0.3rem;
}

#pagenavi a {
  color: #DDD;
  text-decoration: none;
  text-align: center;
  display: block;
  line-height: 48px;
  font-size: 1.6rem;
  transition: 0.3s;
}

#pagenavi a:hover {
  transform: scale(1.1);
}

/* Burger-Button */
#burger {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  z-index: 110;
  width: 48px;
  height: 48px;
  border: 2px solid #DDD;
  background: #872050;
}

#navclick:checked ~ #burger .line:nth-of-type(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

#navclick:checked ~ #burger .line:nth-of-type(2) {
  opacity: 0;
}

#navclick:checked ~ #burger .line:nth-of-type(3) {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}
  
.line {
  width: 60%;
  height: 2px;
  position: absolute;
  left: 20%;
  background: #DDD;
  transition: 0.3s;
}

.line:nth-of-type(1) {top: calc(25% - 1px);}
.line:nth-of-type(2) {top: calc(50% - 1px);}
.line:nth-of-type(3) {top: calc(75% - 1px);}


main {
  min-height: 800px;
  padding: 2rem 1rem 2rem 2rem;
}

#portrait {
  max-height: 300px;
  max-width: auto;
  border: 4px solid #872050;
}

#backTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #666;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

#backTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Footer */
#pagefooter {
  min-height: 50px;
  padding: 0.5rem 2rem;
  background: #DDD;
  border-left: none;
  border-right: none;
  flex-basis: 70%;
  display: block;
}

#pagefooter ul {
  display: block;
  list-style: none;
}

#pagefooter li { margin-bottom: 0.3rem; }

#pagefooter a {
  color: #444;
  text-decoration: none;
}

#pagefooter a:hover {
  color: #872050;
  text-decoration: underline;
}

#social i {
  font-size: 1.3rem;
  margin: 1rem 0.3rem;
  transform: scale(1);
  transition: 0.3s;
}

#social i:hover {
  transform: scale(1.5);
}

#form_kontakt > * {
  display: block;
  width: 100%;
  max-width: 400px;
}

#form_kontakt label {
  margin-bottom: 0.3rem;
}

#form_kontakt input {
  line-height: 1.5rem;
  margin-bottom: 0.7rem;
}

#form_kontakt textarea {
  height: 250px;
  font: 1rem Lato400, sans-serif;
  color: #444;
}

#form_kontakt input[type="submit"]{
  margin-top: 0.7rem;
  font: 1.2rem Lato400, sans-serif;
  color: #DDD;
  padding: 0.3rem 0;
  background: #872050;
  border: 0px;
}

#form_kontakt input[type="submit"]:hover {
  text-decoration: underline;
}

#cap_code {
  font-size: 1.1rem;
}

#ds h2 {
  font-size: 1.5rem;
  padding: 0.7rem 0 0;
}


/* Klassen */

.scale {
  transform: scale(1);
  transition: 0.4s;
}

.nomobile { display: none; }


/* Skills */
.progress {
  height: 1rem;
  border: 1px solid #444;
  position: relative;
  margin: 2px 0 10px 0;	
  padding: 2px;
  }

.progress::before {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
}


/* Code Snippets*/
.codesnippet {
  position: relative;
  background: #666;
  color: #DDD;
  transition: 0.4s;
}

.codesnippet img { margin: auto; }

.codesnippet a {
  color: #DDD;
  text-decoration: none;
}

.codesnippet:hover {
  transform: scale(1.1);
}

.codesnippet:hover figcaption {
  color: #872050;
  text-decoration: underline;
}

/* Flex */
.superspalter { display: flex; }
.superspalter > * { flex: 1 0 0; }
.zweispalter60_40 { display: flex; flex-direction: column-reverse;}
.zweispalter60_40 > *:first-child { flex-basis: 60%; }
.zweispalter60_40 > *:last-child { flex-basis: 40%; }
.zweispalter50_50 { display: flex; flex-direction: column}
.zweispalter50_50 > *:first-child { flex-basis: 50%; }
.zweispalter50_50 > *:last-child { flex-basis: 50%; }
.gap { gap: 5px; }
.wrap { flex-wrap: wrap; }
.align-items { align-items: flex-start; }


/* SKILLBARS */
/* Onlineshopbetreuung */
.null::before{background: #872050;}
.go.null::before { animation: skill_0 2s forwards; }
@keyframes skill_0 {
  0%  { width: 0%; }
  100%{ width: 30%; } 			/*!!! Prozent !!!*/
}

.eins::before{background: #872050;}
.go.eins::before { animation: skill_1 2s forwards; }
@keyframes skill_1 {
  0%  { width: 0%; }
  100%{ width: 100%; } 			/*!!! Prozent !!!*/
}

/* Datenpflege */
.zwei::before{background: #872050;}
.go.zwei::before { animation: skill_2 2s forwards; }
@keyframes skill_2 {
  0%  { width: 0%; }
  100%{ width: 100%; }
}

/* HTML */
.drei::before{background: #872050;}
.go.drei::before { animation: skill_3 3s forwards; }
@keyframes skill_3 {
  0%  { width: 0%; }
  100%{ width: 70%; }
}

/* CSS */
.vier::before{background: #872050;}
.go.vier::before { animation: skill_4 3s forwards; }
@keyframes skill_4 {
  0%  { width: 0%; }
  100%{ width: 60%; }
}

/* JavaScript */
.fuenf::before{background: #872050;}
.go.fuenf::before { animation: skill_5 3s forwards; }
@keyframes skill_5 {
  0%  { width: 0%; }
  100%{ width: 25%; }
}

/* SQL */
.sechs::before{background: #872050;}
.go.sechs::before { animation: skill_6 3s forwards; }
@keyframes skill_6 {
  0%  { width: 0%; }
  100%{ width: 30%; }
}

/* UX/UI Design */
.sieben::before{background: #872050;}
.go.sieben::before { animation: skill_7 3s forwards; }
@keyframes skill_7 {
  0%  { width: 0%; }
  100%{ width: 30%; }
}

/* Salesforce */
.acht::before{background: #872050;}
.go.acht::before { animation: skill_8 3s forwards; }
@keyframes skill_8 {
  0%  { width: 0%; }
  100%{ width: 70%; }
}

/* Pim */
.neun::before{background: #872050;}
.go.neun::before { animation: skill_9 3s forwards; }
@keyframes skill_9 {
  0%  { width: 0%; }
  100%{ width: 100%; }
}

/* Adobe Photoshop */
.zehn::before{background: #872050;}
.go.zehn::before { animation: skill_10 3s forwards; }
@keyframes skill_10 {
  0%  { width: 0%; }
  100%{ width: 40%; }
}

/* Affinity Photo */
.elf::before{background: #872050;}
.go.elf::before { animation: skill_11 3s forwards; }
@keyframes skill_11 {
  0%  { width: 0%; }
  100%{ width: 60%; }
}
}


/* von 850px bis 1049px */
@media (min-width:850px) and (max-width:1049px) {

#container { 
  max-width: 1200px;
  margin: auto;
  display: flex;
}

aside {
  flex-basis: 30%;
  background: #872050;
  padding: 2rem;
}

#skills {
  margin-top: 2rem;
}

#flex_cont {
  flex-basis: 70%;
  padding-right: 2rem;
}

#pagenavi {
  height: 75px;
  border-left: none;
  margin-top: 3rem;
}

#pagenavi ul {
  display: flex;
  gap: 3rem;
  list-style-type: none;
  margin-left: 2rem;
}

#pagenavi a {
  color: #444;
  font: 1.4rem Montserrat, sans-serif;
  font-variation-settings: 'wght' 400;
  text-decoration: none;
  display: block;
  line-height: 75px;
  transition: 0.4s;
}

#pagenavi a:hover {
  color: #872050;
  transform: scale(1.1);
}

main {
  min-height: 800px;
  padding: 3.9rem 0 3rem 2rem;
}

#portrait {
  max-height: 375px;
  max-width: auto;
  border: 4px solid #872050;
}

#backTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #666;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

#backTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Footer */
#pagefooter {
  min-height: 50px;
  padding: 0.5rem 2rem;
  background: #DDD;
  border-left: none;
  flex-basis: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#pagefooter ul {
  display: block;
  list-style: none;
}

#pagefooter li { margin-bottom: 0.3rem; }

#pagefooter a {
  color: #444;
  text-decoration: none;
}

#pagefooter a:hover {
  color: #872050;
  text-decoration: underline;
}

#social i {
  font-size: 1.3rem;
  margin: 0 0.3rem;
  transform: scale(1);
  transition: 0.3s;
}

#social i:hover {
  transform: scale(1.5);
}

#form_kontakt > * {
  display: block;
  width: 400px;
  max-width: 400px;
}

#form_kontakt label {
  margin-bottom: 0.3rem;
}

#form_kontakt input {
  line-height: 1.5rem;
  margin-bottom: 0.7rem;
}

#form_kontakt textarea {
  height: 250px;
  font: 1rem Lato400, sans-serif;
  color: #444;
}

#form_kontakt input[type="submit"]{
  margin-top: 0.7rem;
  font: 1.2rem Lato400, sans-serif;
  color: #DDD;
  padding: 0.3rem 0;
  background: #872050;
  border: 0px;
}

#form_kontakt input[type="submit"]:hover {
  text-decoration: underline;
}

#cap_code {
  font-size: 1.1rem;
}


/* Klassen */

.scale {
  transform: scale(1);
  transition: 0.4s;
}

.nodesk { display: none; }


/* Skills */
.progress {
  height: 1rem;
  border: 1px solid #DDD;
  position: relative;
  margin: 2px 0 10px 0;	
  padding: 2px;
  }

.progress::before {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
}


/* Code Snippets*/
.codesnippet {
  position: relative;
  background: #666;
  color: #DDD;
  transition: 0.4s;
}

.codesnippet a {
  color: #DDD;
  text-decoration: none;
}

.codesnippet:hover {
  transform: scale(1.1);
}

.codesnippet:hover figcaption {
  color: #872050;
  text-decoration: underline;
}

/* Flex */
.superspalter { display: flex; }
.superspalter > * { flex: 1 0 0; }
.zweispalter60_40 { display: flex;}
.zweispalter60_40 > *:first-child { flex-basis: 60%; }
.zweispalter60_40 > *:last-child { flex-basis: 40%; }
.zweispalter50_50 { display: flex;}
.zweispalter50_50 > *:first-child { flex-basis: 50%; }
.zweispalter50_50 > *:last-child { flex-basis: 50%; }
.gap { gap: 1rem; }
.wrap { flex-wrap: wrap; }
.align-items { align-items: flex-start; }


/* SKILLBARS */
/* Onlineshopbetreuung */
.null::before{background: #DDD;}
.go.null::before { animation: skill_0 2s forwards; }
@keyframes skill_0 {
  0%  { width: 0%; }
  100%{ width: 30%; } 			/*!!! Prozent !!!*/
}

.eins::before{background: #DDD;}
.go.eins::before { animation: skill_1 2s forwards; }
@keyframes skill_1 {
  0%  { width: 0%; }
  100%{ width: 100%; } 			/*!!! Prozent !!!*/
}

/* Datenpflege */
.zwei::before{background: #DDD;}
.go.zwei::before { animation: skill_2 2s forwards; }
@keyframes skill_2 {
  0%  { width: 0%; }
  100%{ width: 100%; }
}

/* HTML */
.drei::before{background: #DDD;}
.go.drei::before { animation: skill_3 3s forwards; }
@keyframes skill_3 {
  0%  { width: 0%; }
  100%{ width: 70%; }
}

/* CSS */
.vier::before{background: #DDD;}
.go.vier::before { animation: skill_4 3s forwards; }
@keyframes skill_4 {
  0%  { width: 0%; }
  100%{ width: 60%; }
}

/* JavaScript */
.fuenf::before{background: #DDD;}
.go.fuenf::before { animation: skill_5 3s forwards; }
@keyframes skill_5 {
  0%  { width: 0%; }
  100%{ width: 25%; }
}

/* SQL */
.sechs::before{background: #DDD;}
.go.sechs::before { animation: skill_6 3s forwards; }
@keyframes skill_6 {
  0%  { width: 0%; }
  100%{ width: 30%; }
}

/* UX/UI Design */
.sieben::before{background: #DDD;}
.go.sieben::before { animation: skill_7 3s forwards; }
@keyframes skill_7 {
  0%  { width: 0%; }
  100%{ width: 30%; }
}

/* Salesforce */
.acht::before{background: #DDD;}
.go.acht::before { animation: skill_8 3s forwards; }
@keyframes skill_8 {
  0%  { width: 0%; }
  100%{ width: 70%; }
}

/* Pim */
.neun::before{background: #DDD;}
.go.neun::before { animation: skill_9 3s forwards; }
@keyframes skill_9 {
  0%  { width: 0%; }
  100%{ width: 100%; }
}

/* Adobe Photoshop */
.zehn::before{background: #DDD;}
.go.zehn::before { animation: skill_10 3s forwards; }
@keyframes skill_10 {
  0%  { width: 0%; }
  100%{ width: 40%; }
}

/* Affinity Photo */
.elf::before{background: #DDD;}
.go.elf::before { animation: skill_11 3s forwards; }
@keyframes skill_11 {
  0%  { width: 0%; }
  100%{ width: 60%; }
}
}


/* DESKTOP */
@media (min-width:1050px) {

#container { 
  max-width: 1200px;
  margin: auto;
  display: flex;
}

aside {
  flex-basis: 30%;
  background: #872050;
  padding: 2rem;
}

#skills {
  margin-top: 2rem;
}

#flex_cont {
  flex-basis: 70%;
  padding-right: 2rem;
}

#pagenavi {
  height: 75px;
  border-left: none;
  margin-top: 3rem;
}

#pagenavi ul {
  display: flex;
  gap: 3rem;
  list-style-type: none;
  margin-left: 2rem;
}

#pagenavi a {
  color: #444;
  font: 1.4rem Montserrat, sans-serif;
  font-variation-settings: 'wght' 400;
  text-decoration: none;
  display: block;
  line-height: 75px;
  transition: 0.4s;
}

#pagenavi a:hover {
  color: #872050;
  transform: scale(1.1);
}

main {
  min-height: 800px;
  padding: 3.9rem 0 3rem 2rem;
}

#portrait {
  max-height: 525px;
  max-width: auto;
  border: 4px solid #872050;
}

#backTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #666;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

#backTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Footer */
#pagefooter {
  min-height: 50px;
  background: #DDD;
  border-left: none;
  flex-basis: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#pagefooter ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

#pagefooter a {
  color: #444;
  text-decoration: none;
}

#pagefooter a:hover {
  color: #872050;
  text-decoration: underline;
}

#social i {
  font-size: 1.3rem;
  margin: 0 0.5rem;
  transform: scale(1);
  transition: 0.3s;
}

#social i:hover {
  transform: scale(1.5);
}

#form_kontakt > * {
  display: block;
  width: 400px;
  max-width: 400px;
}

#form_kontakt label {
  margin-bottom: 0.3rem;
}

#form_kontakt input {
  line-height: 1.5rem;
  margin-bottom: 0.7rem;
}

#form_kontakt textarea {
  height: 250px;
  font: 1rem Lato400, sans-serif;
  color: #444;
}

#form_kontakt input[type="submit"]{
  margin-top: 0.7rem;
  font: 1.2rem Lato400, sans-serif;
  color: #DDD;
  padding: 0.3rem 0;
  background: #872050;
  border: 0px;
}

#form_kontakt input[type="submit"]:hover {
  text-decoration: underline;
}

#cap_code {
  font-size: 1.1rem;
}


/* Klassen */

.scale {
  transform: scale(1);
  transition: 0.4s;
}

.nodesk { display: none; }


/* Skills */
.progress {
  height: 1rem;
  border: 1px solid #DDD;
  position: relative;
  margin: 2px 0 10px 0;	
  padding: 2px;
  }

.progress::before {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
}


/* Code Snippets*/
.codesnippet {
  position: relative;
  background: #666;
  color: #DDD;
  transition: 0.4s;
}

.codesnippet a {
  color: #DDD;
  text-decoration: none;
}

.codesnippet:hover {
  transform: scale(1.1);
}

.codesnippet:hover figcaption {
  color: #872050;
  text-decoration: underline;
}

/* Flex */
.superspalter { display: flex; }
.superspalter > * { flex: 1 0 0; }
.zweispalter60_40 { display: flex;}
.zweispalter60_40 > *:first-child { flex-basis: 60%; }
.zweispalter60_40 > *:last-child { flex-basis: 40%; }
.zweispalter50_50 { display: flex;}
.zweispalter50_50 > *:first-child { flex-basis: 50%; }
.zweispalter50_50 > *:last-child { flex-basis: 50%; }
.gap { gap: 1rem; }
.wrap { flex-wrap: wrap; }
.align-items { align-items: flex-start; }


/* SKILLBARS */
/* Onlineshopbetreuung */
.null::before{background: #DDD;}
.go.null::before { animation: skill_0 2s forwards; }
@keyframes skill_0 {
  0%  { width: 0%; }
  100%{ width: 30%; } 			/*!!! Prozent !!!*/
}

.eins::before{background: #DDD;}
.go.eins::before { animation: skill_1 2s forwards; }
@keyframes skill_1 {
  0%  { width: 0%; }
  100%{ width: 100%; } 			/*!!! Prozent !!!*/
}

/* Datenpflege */
.zwei::before{background: #DDD;}
.go.zwei::before { animation: skill_2 2s forwards; }
@keyframes skill_2 {
  0%  { width: 0%; }
  100%{ width: 100%; }
}

/* HTML */
.drei::before{background: #DDD;}
.go.drei::before { animation: skill_3 3s forwards; }
@keyframes skill_3 {
  0%  { width: 0%; }
  100%{ width: 70%; }
}

/* CSS */
.vier::before{background: #DDD;}
.go.vier::before { animation: skill_4 3s forwards; }
@keyframes skill_4 {
  0%  { width: 0%; }
  100%{ width: 60%; }
}

/* JavaScript */
.fuenf::before{background: #DDD;}
.go.fuenf::before { animation: skill_5 3s forwards; }
@keyframes skill_5 {
  0%  { width: 0%; }
  100%{ width: 25%; }
}

/* SQL */
.sechs::before{background: #DDD;}
.go.sechs::before { animation: skill_6 3s forwards; }
@keyframes skill_6 {
  0%  { width: 0%; }
  100%{ width: 30%; }
}

/* UX/UI Design */
.sieben::before{background: #DDD;}
.go.sieben::before { animation: skill_7 3s forwards; }
@keyframes skill_7 {
  0%  { width: 0%; }
  100%{ width: 30%; }
}

/* Salesforce */
.acht::before{background: #DDD;}
.go.acht::before { animation: skill_8 3s forwards; }
@keyframes skill_8 {
  0%  { width: 0%; }
  100%{ width: 70%; }
}

/* Pim */
.neun::before{background: #DDD;}
.go.neun::before { animation: skill_9 3s forwards; }
@keyframes skill_9 {
  0%  { width: 0%; }
  100%{ width: 100%; }
}

/* Adobe Photoshop */
.zehn::before{background: #DDD;}
.go.zehn::before { animation: skill_10 3s forwards; }
@keyframes skill_10 {
  0%  { width: 0%; }
  100%{ width: 40%; }
}

/* Affinity Photo */
.elf::before{background: #DDD;}
.go.elf::before { animation: skill_11 3s forwards; }
@keyframes skill_11 {
  0%  { width: 0%; }
  100%{ width: 60%; }
}
}


/* Icon Klick mich */
.pointer { 
  position: absolute;
  z-index: 10;
  top: 3%;
  left: 3%;
}

.pointer p {
  color: #DDD;
  font-size: 0.9rem;
}

.fa-solid {
  color: #DDD;
  padding:3px;
  font-size: 1.4rem;
  margin-left: 25%;
}

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, -30deg)); }

#snippet2 .pointer {
  background: rgba(102, 102, 102, 0.75);
  padding: 5px;
}

#slider .pointer {
  background: rgba(102, 102, 102, 0.75);
  padding: 5px;
}


/* Slider */
#slider {
  position: relative;
}

.sy-box { 
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  
}

.sy-slides-wrap {
  border: 3px solid #872050;
}

.sy-slide > a > img {
  object-fit: cover;
}


/* Slider-Dots */
.sy-pager {margin: 0.5rem 0 0;}

.sy-pager li {
  width: 0.8rem;
  height: 0.8rem;
}

.sy-pager li.sy-active a { background-color: #872050; }

/* Slider-Caption */
.sy-caption {
  bottom: -20px;
}


/* Lightbox */
.lb-outerContainer {
  background: #666;
}

.lightbox .lb-image {
  border: 4px solid #872050;
}

.lb-nav a.lb-prev {
  opacity: 1;
}

.lb-nav a.lb-next {
  opacity: 1;
}


/* Sontige Klassen */
.acc input[type="radio"] { display: none; }
input[id*="click"] {
  display: none;
}

.pad02 { padding: 0 2%; }
.pad20 { padding: 2% 0; }
.pad52 { padding: 0 5% 0 2%; }
.padt2 { padding-top: 2%;}
.mar50p { margin: 5px 0; }
.mar2 { margin-top: 2%; }
.mar5 { margin-top: 5%; }
.textalign_center { text-align: center;}
.border3p { border: 3px solid #872050; }