.htu > div:last-child {
    flex: 1 1 46%;
}
.htu .htu_gif {
    position: absolute;
    border-radius: var(--brad);
    overflow: hidden;
    width: 23%;
    height: auto;
    z-index: 5;
    rotate: -15deg;
    top: 144px;
    left: 36px;
    box-shadow: -6px 12px 24px rgba(0, 0, 0, 0.4);
}
.htu > div:last-child {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 20px;
}
.htu > div:last-child p {
    font-family: "poppins", sans-serif;
}
.htu > div:last-child > div {
    flex: 1 1 48.5%;
    padding: 30px;
    background-color: var(--innerBg);
    border-radius: var(--brad);
    overflow: hidden;
}
.htu > div:last-child > div p:last-child {
    margin-bottom: 0;
}
.htu > div:last-child > div > div > p:last-child {
    color: var(--ultraDark50) !important;
}
.htu > div:last-child > div > p:last-child {
    color: var(--ultraDark50) !important;
}
.htu > div:last-child > div > p:first-child {
    /* background-color: var(--accent); */
    padding: 10px 14px;
    border-radius: 13px;
    width: max-content;
    font-weight: 700 !important;
    color: black !important;
    margin-bottom: 24px;
    z-index: 10;
}
.htu > div:last-child > div > p:first-child::before {
    z-index: -1;
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 190%;
    height: 100%;
    background-image: url(/assets/clothOffBg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.htu > div:last-child > div > div:first-child p:first-child,
.htu > div:last-child > div > p:last-child {
    max-width: 90%;
}

.htu .fz24 {
    font-size: 24px !important;
}

@media (max-width: 974px) {
    .htu > div:last-child {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .htu > div:last-child {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .htu > div:last-child > div > div:first-child p:first-child,
    .htu > div:last-child > div > p:first-child {
        margin-bottom: 24px;
    }
}
