section.collection-section {
    background: #fff;
    margin-top: -6px;
}
.collection-section-in {
  max-width: 100%;
  margin: 0px auto;
  display: flex;
  flex-flow: column;
  gap: 40px;
}
.collection-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.collection-header h2 {
  font-size: 56px;
  color: #1a1a1a;
  font-weight: 300;
  margin: 0;
  line-height: 120%;
}
.collection-header a {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
}
.collection-grid {
    display: flex;
    flex-wrap: wrap;
}	
.collection-card a {
  display: flex;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}
.collection-img img {
    width: 100%;
    display: block;
    height: 100%;
}
.collection-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    gap: 6px;
}
.collection-content h3 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    line-height: 130%;
    margin: 0;
    text-align: center;
}
.collection-cta {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 120%;
  text-decoration: underline;
}
.collection-grid .collection-card {
    width: 33.33%;
}
.collection-grid .collection-card:last-child {
    width: 66.67%;
}
.collection-grid .collection-card .collection-img {
    width: 100%;
}

/****** media query *******/
