@font-face {
  font-family: Canela;
  src: url(../assets/fonts/canela-medium.woff2) format("woff2");
  font-style: "medium";
  font-weight: 600;
}
@font-face {
  font-family: Canela;
  src: url(../assets/fonts/canela-light.woff2) format("woff2");
  font-style: "normal";
  font-weight: 400;
}

body {
  background: #f5fff5;
  border-radius: 10px;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.7)
    ),
    url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='20' height='20' patternTransform='scale(1) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='%23f5fff5ff'/><path d='M3.25 10h13.5M10 3.25v13.5'  stroke-linecap='square' stroke-width='0.5' stroke='%23067b07ff' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(-40,0)' fill='url(%23a)'/></svg>");
  font-family: Canela, sans-serif;
  height: 100svh;
  margin: 0;
  padding: 0;
}

.header {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background-image: url(../assets/images/contri-header.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(26, 72, 28, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.header .title {
  font-family: Canela, sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 2;
  margin: 0;
  margin-top: 10px;
}

.header .breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.header .breadcrumbs a,
.header .breadcrumbs span {
  font-family: Canela, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  margin: 0;
}

.noise {
  pointer-events: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  opacity: 0.06;
  background-image: url(../assets/images/noise.gif);
  background-position: 0 0;
  background-size: 150px;
  background-attachment: fixed;
}

.main-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
}

.main-wrapper h4 {
  font-size: 1.5rem;
  color: #1a481c;
  margin: 0;
  margin-bottom: 1rem;
}

.main-wrapper .right {
  width: 30%;
}

.main-wrapper .left {
  width: 70%;
	padding-bottom: 2rem;
}

.main-wrapper .right img {
  height: 300px;
  border-radius: 30px;
}

.pill-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.pill-wrapper .pill {
  background: #f5fff5;
  color: #1a481c;
  border: 1px dashed #1a481c;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.main-wrapper .thankful-people {
  margin-top: 2rem;
}

.main-wrapper .thankful-people .description {
  margin: 0;
  margin-top: 5px;
  margin-bottom: 1rem;
  background-color: #f5fff5;
}

.main-wrapper .thankful-people h4 {
  margin-bottom: 0;
}

.main-wrapper .list-wrapper {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.list-wrapper .list-item {
  border-radius: 6px;
  width: max-content;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
}

.list-wrapper .list-item.male {
  background: #d6e1ff;
  color: #2d3d68;
  border: 2px dashed #415489;
}

.list-wrapper .list-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.list-wrapper .list-item .name-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.list-wrapper .list-item .name-wrapper p.name {
  font-weight: 600;
}

.list-wrapper .list-item .name-wrapper p {
  margin: 0;
}

.btn-wrapper {
  display: flex;
  margin-top: 2rem;
  gap: 10px;
}

.buttons {
  text-align: center;
  border-radius: 6px;
}

.buttons a {
  text-decoration: none;
}

.buttons.upi {
  opacity: 0.5;
  pointer-events: none;
}

.blob-btn {
  z-index: 1;
  position: relative;
  padding: 0.8rem 1.2rem;
  text-align: center;
  text-transform: uppercase;
  color: #1a481c;
  font-size: 14px;
  font-weight: bold;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 6px;
  font-family: Canela, sans-serif;
}
.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #1a481c;
  border-radius: 6px;
}
.blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 6px;
}
.blob-btn:hover {
  color: #ffffff;
  border-radius: 6px;
}
.blob-btn:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 6px;
}
.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: #ffffff;
}
.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}
.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: #1a481c;
  border-radius: 6px;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}
@supports (filter: url("#goo")) {
  .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
  }
}
.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}
.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}
.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}
.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}
.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}
@supports (filter: url("#goo")) {
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
  }
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
  background-color: #1a481c;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

footer p,
footer p a {
  color: #fff;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 991px) {
  .main-wrapper {
    flex-direction: column;
    padding: 1rem;
  }
  .main-wrapper .thankful-people .description {
    font-size: 14px;
  }
  .main-wrapper .right {
    width: 100%;
  }
	.main-wrapper .left {
    width: 100%;
  }
  .btn-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .buttons.upi {
    opacity: 1;
    pointer-events: unset;
  }
  .buttons {
    margin-bottom: 1.5rem;
  }
  .main-wrapper .right h4 {
    margin-top: 1rem;
  }
  .header .title {
    margin-top: 25px;
    font-size: 2.5rem;
  }
  .header .breadcrumbs a,
  .header .breadcrumbs span {
    font-size: 1rem;
  }
  .list-wrapper .list-item .name-wrapper p {
    font-size: 14px;
  }
  footer {
    position: static;
  }
}
