:root {
  --white: white;
  --black: black;
}

.collection-list-wrapper {
  column-count: 3;
  column-gap: 25px;
  width: 90vw;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.img {
  border-radius: 10px;
  background-color: #dfe8e9;
  display: block;
  will-change: opacity;
  transition: opacity .2s ease;
  width: 100%;
}

.collection-item {
  margin-bottom: 25px;
}

.heading {
  text-align: center;
  margin-top: 10vh;
  margin-bottom: 10vh;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.container {
  max-width: 1400px;
  padding-left: 40px;
  padding-right: 40px;
}

.columns {
  column-count: 2;
  column-rule-style: none;
  column-rule-width: 0px;
  direction: ltr;
  column-gap: 12px;
}

.thumb {
  margin-top: 6px;
  margin-bottom: 6px;
}

.heading-3 {
  color: #5d5e5d;
  text-align: center;
  margin-top: 128px;
  margin-bottom: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 200;
}

.container-2 {
  max-width: 1350px;
}

.body {
  background-color: #eaf2f3;
}

.link {
  color: #5d5e5d;
  text-align: center;
  margin-bottom: 131px;
  margin-left: auto;
  margin-right: auto;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 200;
  display: block;
}

.heading2 {
  color: #5d5e5d;
  text-align: center;
  margin-top: 92px;
  margin-bottom: 64px;
  font-family: Montserrat, sans-serif;
  font-size: 64px;
  font-weight: 200;
}

@media screen and (max-width: 991px) {
  .collection-list-wrapper {
    column-count: 2;
  }

  .collection-item {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .columns {
    column-count: 2;
  }

  .container-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .collection-list-wrapper {
    column-gap: 15px;
  }

  .collection-item {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .columns {
    column-count: 2;
  }
}

@media screen and (max-width: 479px) {
  .collection-list-wrapper, .columns {
    column-count: 1;
  }

  .heading-3 {
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading2 {
    line-height: 54px;
  }
}


