#ht-main-cont {
    position: relative;
    height: fit-content;
    width: 100vw;
    padding: 8rem 2rem;
    background-color: var(--distro-drk-green);
    color: white;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
#ht-title {
    position: relative;
    font-size: 7rem;
    font-weight: 700;
    line-height: 6.5rem;
    margin-bottom: 2rem;
    z-index: 1;
}
.ht-txt-cont {
    position: relative;
    display: grid;
    width: 34rem;
    max-width: 90vw;
    gap: 1rem;
    z-index: 1;
}
.ht-txt-cont > p:first-child {
    font-size: 1.5rem;
}
.ht-txt-cont > p:nth-child(3) {
    font-weight: 500;
}
#ht-info-cont {
    padding-right: 8rem;
}
#ht-dg {
    position: relative;
    width: 10rem;
    margin-block: 2rem;
    z-index: 2;
}
.ht-blend {
    position: absolute;
    width: 60rem;
    z-index: 0;
}
#ht-blend-a {
    right: -25rem;
    top: -20rem;
    transform: rotate(20deg);
}
#ht-blend-b {
    right: -35rem;
    top: -5rem;
    transform: rotate(50deg);
}

@media screen and (max-width: 500px) {
    #ht-main-cont {
        padding-block: 6rem;
    }
    #ht-title {
        font-size: 3rem;
        line-height: 3.25rem;
    }
    #ht-title span {
        font-size: 6rem;
    }
    #ht-info-cont {
        padding: 0;
    }
    .ht-blend {
        width: 8rem;
    }
    #ht-blend-a {
        top: -4rem;
        right: -2rem;
    }
    #ht-blend-b {
        top: -4.5rem;
        right: 3rem;
        transform: rotate(-30deg);
    }
}
