body {
  font-family: 'Montserrat', sans-serif;
  background: #f0f0f0;
}

a {
  transition: all 0.2s;
  color: #ea5e20;
}

a:hover {
  color: #c54913;
  text-decoration: none;
}

p {
  margin-bottom: 0;
}

ul {
  padding-inline-start: 1.5rem;
}

h6 {
  font-weight: bolder;
}

#cookie-info {
  position: fixed;
  display: block;
  max-width: 20rem;
  right: 1rem;
  margin-left: 1rem;
  bottom: 0.5rem;
}

.btn-outline-kycia {
  color: #ea5e20;
  border-color: #ea5e20;
}

.btn-outline-kycia:hover {
  color: #fff;
  background-color: #ea5e20;
}

.container:first-child {
  margin-top: 1rem!important;
}

.card {
  margin-bottom: 1rem;
  padding: 1rem;
  background: linear-gradient( #ebebeb, #dddddd);
  border: 1px solid #d6d6d6;
}

.button-gallery {
  height: 5rem;
  justify-content: center;
  align-items: center;
  background-image: url('../img/gallery.jpg');
  background-size: cover;
  background-position: 50% 45%;
  background-repeat: no-repeat;
  padding: 0;
}

@media (min-width:992px) {
  .button-gallery {
    height: 29.70rem;
    background-position: 40% 50%;
  }
}

.button-gallery-text {
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #e7e7e7;
  border: 1px solid;
  width: fit-content;
  padding: 0.5rem;
  margin: 0 0.5rem;
  transition: all 0.5s;
}

.button-gallery:hover .button-gallery-text {
  font-size: 1.6rem;
  padding: 0.75rem;
}

.gallery .row {
  margin: 0rem;
}

.gallery .col-sm-6 {
  padding: 0.1rem;
}

.gallery img {
  height: 12rem;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.5s;
}

.gallery img:hover {
  opacity: 0.6;
}

.sidebar {
  top: 30%;
  position: sticky;
  padding: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.sidebar ul {
  margin: 0;
  padding-inline-start: 0rem;
  list-style-type: none;
  columns: 2;
}

@media (min-width:768px) {
  .sidebar ul {
    columns: 1;
  }
}

.sidebar .list-group-item {
  padding: 0.25rem 0 0.25rem 0.2rem;
  margin-bottom: 0.5rem;
  background: none;
  border: none;
  border-radius: 0;
  border-left: 2px solid rgb(199, 199, 199);
  padding-left: 0.5rem;
  transition: all 0.4s;
}

.sidebar .list-group-item:hover, .sidebar .list-group-item.active {
  color: #c54913;
  border-left: 4px solid #ea5e20;
}

/*
ANIMATIONS
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}