@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --brand-color: #C2570D;
  --second-color: #6A763F;
  --dark-color: #322C2C;
  --light-color: #E6E6E6;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  -webkit-hyphens: auto;
  hyphens: auto;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  margin: 0px;
  padding: 0px;
  background-color: var(--light-color);
  color: var(--dark-color);
  min-height: 100vh;
}

::-moz-selection {
  color: var(--light-color);
  background-color: var(--brand-color);
}

::selection {
  color: var(--light-color);
  background-color: var(--brand-color);
}

h1, h2, h3 {
  margin-block: 2%;
}

p, h4 {
  margin-block: 0;
  font-weight: 400;
}
@media (width >= 52em) {
  p, h4 {
    width: 84%;
  }
}
@media (width >= 58em) {
  p, h4 {
    width: 100%;
  }
}

a {
  color: inherit;
  text-decoration: inherit;
}

ul {
  list-style: inherit;
  padding: 0;
  margin: 0;
}

header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-inline: 6%;
  background-color: var(--second-color);
  list-style: none;
  z-index: 1000;
}
@media (width >= 72em) {
  header {
    padding-inline: 16%;
  }
}

nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

nav button {
  background-color: var(--second-color);
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (width >= 52em) {
  nav button {
    display: none;
  }
}

.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding-block: 1.5rem;*/
}
.topnav__open[aria-expanded=true] + .topnav__menu {
  translate: 0;
}
.topnav__close {
  display: block;
  margin-inline-start: auto;
  margin-block-end: 8rem;
  padding-inline: 6%;
  padding-block: 6%;
}
@media (width >= 52em) {
  .topnav__close {
    display: none;
  }
}
.topnav__menu {
  background-color: var(--second-color);
  position: fixed;
  inset: 0;
  /*padding: 1.5rem;*/
  color: var(--light-color);
  font-size: 120%;
  translate: 100vw 0;
  transition: translate 0.5s ease-in-out;
}
@media (width >= 52em) {
  .topnav__menu {
    background-color: transparent;
    translate: 0;
    position: relative;
    font-size: 100%;
  }
}
.topnav__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media (width >= 52em) {
  .topnav__links {
    flex-direction: row;
    justify-content: flex-end;
    gap: 2.5rem;
  }
}
.topnav__item {
  list-style-type: none;
}

nav a {
  width: 6rem;
}
@media (width >= 52em) {
  nav a {
    width: 10rem;
  }
}

#logo {
  padding-block: 0.8rem;
}

.slidershow {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-block: 3%;
}

.slides-navigation {
  display: flex;
  justify-content: center;
  margin: 4px 0 16px 0;
}

.bar {
  width: 12px;
  height: 12px;
  border: 1px solid var(--dark-color);
  border-radius: 12px;
  margin: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bar:hover {
  background: var(--dark-color);
}

input[name=r] {
  position: absolute;
  visibility: hidden;
}

.slides input {
  width: 10%;
}

.slides {
  width: 800%;
  height: 100%;
  display: flex;
}

.slide {
  width: 12.5%;
  height: 80%;
  transition: all 0.6s ease;
}

.slide img {
  width: 100%;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  height: 30%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

#r1:checked ~ .s1 {
  margin-left: 0;
}

#r2:checked ~ .s1 {
  margin-left: -12.5%;
}

#r3:checked ~ .s1 {
  margin-left: -25%;
}

#r4:checked ~ .s1 {
  margin-left: -37.5%;
}

#r5:checked ~ .s1 {
  margin-left: -50%;
}

#r6:checked ~ .s1 {
  margin-left: -62.5%;
}

#r7:checked ~ .s1 {
  margin-left: 0;
}

#r8:checked ~ .s1 {
  margin-left: -12.5%;
}

#r9:checked ~ .s1 {
  margin-left: -25%;
}

#r10:checked ~ .s1 {
  margin-left: -37.5%;
}

#r11:checked ~ .s1 {
  margin-left: -50%;
}

#r12:checked ~ .s1 {
  margin-left: -62.5%;
}

.wrapperCategories {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  color: var(--dark-color);
  gap: 1.2rem;
  margin-block-end: 2rem;
}

.category {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (width >= 52em) {
  .category {
    width: 48.5%;
  }
}

.categoryText {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-block: 4px;
  gap: 0.8rem;
}

.categoryText img {
  width: 1.4rem;
  height: 1.4rem;
}

.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (width >= 52em) {
  .galleryItem {
    width: 48.5%;
  }
}

footer {
  position: relative;
  top: 10vh;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--dark-color);
  color: var(--light-color);
  list-style: none;
  margin-block-start: 4rem;
  padding-inline: 6%;
  padding-block: 1.5rem;
  font-size: 100%;
}
footer li img {
  width: 2.4rem;
  height: auto;
}
@media (width >= 72em) {
  footer {
    padding-inline: 16%;
  }
}

.wrapperLeft {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
}

.wrapperRight {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media (width >= 52em) {
  .wrapperRight {
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.6rem;
  }
}

.open-sans-font {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/*
@font-face {
	font-family: "Open Sans"; 
	src: 	local("Open Sans"), 
			url("http://corvus.uberspace.de./var/www/virtual/humbert/html/font/Open_Sans/static/OpenSans/OpenSans-Regular.ttf")
			format("TrueType");
	font-weight: 300;
	font-style: normal;

}*/
body img {
  width: 100%;
  height: 100%;
}

main.wrapper {
  display: flex;
  flex-direction: column;
  padding-inline: 6%;
  margin-inline: auto;
  margin-block-end: 2%;
}
@media (width >= 72em) {
  main.wrapper {
    padding-inline: 16%;
  }
}

section {
  padding-block-start: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
@media (width >= 20em) {
  section {
    padding-block-start: 5.6rem;
  }
}
@media (width >= 52em) {
  section {
    padding-block-start: 7.4rem;
  }
}

section.sectionStart {
  padding-block-start: 2rem;
}

details {
  width: 100%;
}

details[open] {
  list-style: none;
}

details[open] summary {
  margin-bottom: 0.3em;
}

summary::-webkit-details-marker,
summary::marker {
  content: "☉  ";
  font-weight: bold;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

details[open] > summary::-webkit-details-marker,
details[open] > summary::marker {
  content: "●  ";
}

@media (width >= 58em) {
  .textColumn {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.6rem;
  }
}
.textColumn a {
  font-weight: 600;
}

.textItem {
  width: 80%;
}

.dataItem {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.dataItem .icon {
  width: 20%;
}
.dataItem p {
  width: 100%;
}/*# sourceMappingURL=style.css.map */