main h1 {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  position: relative;
  z-index: 1;
  padding: 0;
}

@media (min-width: 0) {
  main h1 {
    font-size: calc(0.25vw + 32px);
  }
}

@media (min-width: 1200px) {
  main h1 {
    font-size: 35px;
  }
}

main h2 {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 12px;
}

main .btn {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: white;
  padding: 8px 35px;
  display: inline-block;
  border-radius: 10px;
  background: linear-gradient(#ffa949 0%, #ffc079 100%);
  box-shadow: 0px 9px 14px rgba(250, 144, 20, 0.45);
  border: 0;
  margin-top: 10px;
  font-size: 16px;
  transition: 0.25s ease-in-out;
}

@media (min-width: 0) {
  main .btn {
    font-size: calc(0.0833333333vw + 16px);
  }
}

@media (min-width: 1200px) {
  main .btn {
    font-size: 17px;
  }
}

main .btn:hover {
  color: white;
  box-shadow: 0px 6px 8px rgba(250, 144, 20, 0.45);
}

main .btn-green {
  background: #7BD385;
  box-shadow: none;
}

main .btn-green:hover {
  color: white;
  box-shadow: none;
}

main .btn.btn-sm {
  font-size: 80%;
  padding: 8px 25px;
}

section {
  padding: 50px 0;
}

@media (min-width: 768px) {
  section {
    padding: 80px 0;
  }
}

@media (min-width: 1200px) {
  section {
    padding: 100px 0;
  }
}

section h1 {
  font-size: 32px;
}

@media (min-width: 0) {
  section h1 {
    font-size: calc(-0.3333333333vw + 32px);
  }
}

@media (min-width: 1200px) {
  section h1 {
    font-size: 28px;
  }
}

section.album {
  padding-top: 0;
}

@media (min-width: 1200px) {
  section.album {
    padding-left: 50px;
    padding-right: 50px;
  }
}

section.filter-wrap {
  padding-bottom: 50px;
}

section ul.filters {
  display: flex;
  padding: 20px 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

section ul.filters > li {
  margin: 0 15px 15px 0;
  flex-shrink: 0;
}

section ul.filters > li a {
  display: block;
  color: #B6BDBD;
  background: white;
  font-weight: 600;
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.07);
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 15px;
}

section ul.filters > li a.active {
  background: #C1D287;
  color: white;
}

section .encart {
  cursor: pointer;
  position: relative;
  margin-bottom: 15px;
}

section .encart .caption {
  padding: 15px;
  background: #FFF;
  box-shadow: 4px 4px 29px rgba(49, 49, 49, 0.1);
}

section .encart h3 {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
}

@media (min-width: 0) {
  section .encart h3 {
    font-size: calc(-0.1666666667vw + 18px);
  }
}

@media (min-width: 1200px) {
  section .encart h3 {
    font-size: 16px;
  }
}

section .encart .label {
  display: inline-block;
  background: #7BD385;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin: 0;
}

section .encart .them {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #C1D287;
  color: white;
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.07);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

@media (min-width: 992px) {
  section .encart {
    margin-bottom: 30px;
  }

  section .encart .caption {
    position: absolute;
    bottom: 0;
    width: 80%;
  }
}

.touch section ul.filters {
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

