@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*:before, *:after {
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
}
h1, p {
    color: black;
}

.bg-lightgrey {
  background-color: #d8dcdf;
}


@-webkit-keyframes content-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


@keyframes content-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes content-slide-top {
  from {
    top: -20px;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}
@keyframes content-slide-top {
  from {
    top: -20px;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}

.tabs-wrapper {
  margin: 0;
}
.tabs-wrapper input[type="radio"] {
  display: none;
}
.tabs-wrapper label {
  transition: background 0.4s ease-in-out, height 0.2s linear;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  width: 20%;
  height: 3em;
  border-radius: 3px;
  background: #212529;
  text-align: center;
  line-height: 3em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.tabs-wrapper label:last-of-type {
  border-bottom: none;
}
.tabs-wrapper label:hover {
  background: #024873;
}
@media screen and (max-width: 1600px) {
  .tabs-wrapper label {
    width: 15%;
  }
}
@media screen and (max-width: 900px) {
  .tabs-wrapper label {
    width: 20%;
  }
}
@media screen and (max-width: 600px) {
  .tabs-wrapper label {
    width: 100%;
    display: block;
    border-bottom: 2px solid #024873;
    border-radius: 0;
  }
}
@media screen and (max-width: 600px) {
  .tabs-wrapper {
    margin: 0;
  }
}



#tab1:checked + label,
#tab2:checked + label {
  background: #f5c20c;
  color: #000000;
}

.tab-body {
  position: absolute;
  top: -9999px;
  opacity: 0;
  padding: 1rem 0;
}

.tab-wrapper {
  
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-name: show;
    animation-name: show;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@media screen and (max-width: 600px) {
  .tab-wrapper {
    border: none;
    border-radius: 0;
  }
}

#tab1:checked ~ .tab-wrapper #tab-1,
#tab2:checked ~ .tab-wrapper #tab-2 {
  position: relative;
  top: 0px;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-name: content-slide-top;
          animation-name: content-slide-top;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}





.tabcontainer {
  padding: 0;
  margin-inline: auto;
  width: 100%;
  /* max-width: 40rem; */
}

summary {
    min-width: 100px;
    text-align: center;
    margin-bottom: 8px;
}

/* @media screen and (min-width: 696px) {
  summary {
    max-width: 150px;
  }
}
@media screen and (min-width: 769px) {
  summary {
    min-width: 180px;
  }
}
@media screen and (min-width: 992px) {
  summary {
    max-width: 100px;
    width: 100px !important;
  }
} */

.details {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: none;
  border-radius: 2px;
  overflow: clip;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

@media screen and (max-width: 600px) {
  .details {
    display: flex;
    justify-content: space-evenly;
    padding-left: 1rem;
  }
}

.details__item {
    display: contents;

    &[open]{
      --details-link-bg: #f5c20c;
      --details-pointer-events: none;
      --details-link-border-radius: 2px;

      &::details-content {
        display: contents;
      }
    }
}

.details__link {
    display: block;
    padding: .5rem .5rem;
    margin-right: 1rem;
    background-color: var(--details-link-bg);;
    border: 1px solid rgba(33, 37, 41,.1); 
    border-radius: 1rem;
    list-style: none;
    order: 0;
    color: #000000;
    cursor: pointer;
    font-weight: 300;
    /* pointer-events: var(--details-pointer-events); */
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;       
}


.details__body {
    order: 1;
    padding: 2rem 0 2rem 0;
    width: 100%;
    background-color: none;
}






.img-fluid {
    width: 100%;
    height: auto;
}

