#homemainbg {
    display: block;
    background: rgb(25,47,96);
    background: linear-gradient(180deg, rgba(25,47,96,1) 60%, rgba(230,240,249,1) 100%);
    background-size: cover;
}
ul, ol, li {
    font-size: clamp(1rem, 0.833rem + 0.556vi, 1.25rem);
    line-height: clamp(1.125rem, 0.875rem + 0.833vi, 1.5rem);
}
ul, ol {
    margin-left: 2rem;
}
ol li, ul li {
    margin-bottom: 0.5rem;
}
figure {
    position:relative;
}
figure img {
    width: 100%;
    vertical-align: top;
}
figure figcaption {
    position: absolute;
    left:0;
    top:0;
    padding: 10px 1rem;
    color:#fff;
    background-color: rgba(84,63,50,0.6);
}
.dlcard {
    display: grid;
    align-items: stretch;
    border-radius: 0 0 0 16px;
    background-color: #ebf2ef;
    border: 6px solid #ebf2ef;
    margin-bottom: 30px;
}
.dlcardr {
    display: grid;
    align-items: stretch;
    border-radius: 0 0 16px 0;
    background-color: #ebf2ef;
    border: 6px solid #ebf2ef;
    margin-bottom: 30px;
}
.fdfeature {
    display: grid;
    align-items: stretch;
    border-radius: 16px;
    background-color: #f9d2b3;
    border: 6px solid #f9d2b3;
    margin-bottom: 30px;
}
.grownhead {
    border-radius: 16px 16px 0 0;
}
.fdtitle {
    justify-self: center;
    align-self: center;
    height: 100px;
}
.fdbody {
    justify-self: start;
    align-self: start;
    height: 200px;
    padding: 0 0.5rem;
}
.fdfooter {
    aligh-self:center;
    height: 100px;
    margin-bottom: 60px;
}
.catcard {
    background-color: #fff;
    box-shadow: 0 0 8px rdga(0,0,0,.16);
    color:#212121;
    text-decoration: none;
    position: relative;
    border-radius: 16px;
    display: grid;
    align-items:stretch;
    --img-scale: 1.001;
    transform-origin: center;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}
.catcard a::after {
    position: absolute;
    inset-block: 0;
    inset-inline: 0;
    cursor: pointer;
    content: "";
}
.catcard img {
  max-width: 100%;
  transform-origin: center;
  transform: scale(var(--img-scale));
  transition: transform 0.4s ease-in-out;
}
.catcard h3 {transition: color 0.3s ease-out;}
.cardheader {
    display: flex;
    flex-direction: column; 
    justify-content:space-around;
    align-items: center;
    margin-top: 50px;
}
.faheader {
    height: 5rem;
}
.cardtitle {
    text-align: center;
    margin: 1rem auto;
}
.cardbody {
    padding: 0 1.5rem;
}
.cardfooter {
    padding: 1rem;
    align-self: flex-end;
}
.catcard:has(:hover, :focus) {
  --img-scale: 1.1;
  --title-color: #28666e;
  --link-icon-translate: 0;
  --link-icon-opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
