.glossary-header-img {
    object-fit: cover;
    height: 280px;
    width: 100%;
}
.glossary-header-img-mask {
    background: linear-gradient(
        90deg,
        rgb(24 24 46 / 95%) 0%,
        rgb(79 34 44 / 95%) 40%,
        rgba(122, 41, 42, 0) 100%
    );
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.glossary-head-texts {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 80px;
}

.glossary-head-texts h1 {
    font-family: "Hamlin";
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    display: flex;
    align-items: center;

    text-transform: uppercase;
    color: #ece8dc;
}

.glossary-head-texts p {
    font-family: "Hamlin";
    font-style: normal;
    font-weight: 800;
    font-size: 24px;

    text-transform: uppercase;
    color: #ece8dc;
    opacity: 0.5;
}

.glossary-content {
    padding: 50px 0 100px 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glossary-item {
    display: flex;
    flex-direction: row;
    gap: 5px;
    background-color: #ece8dc;
    padding: 18px 18px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.glossary-item h3 {
    font-weight: 800;
    font-size: 20px;

    text-transform: uppercase;
    color: #1a162c;
    width: 30%;
    margin-bottom: 0px;
    margin-top: 0px;
}

.glossary-item p {
    font-weight: 400;
    font-size: 18px;

    color: #1a162c;
    opacity: 0.5;
    width: 70%;
    margin-bottom: 0px;
    margin-top: 0px;
}

@media screen and (max-width: 991px) {
    .glossary-item h3 {
        width: 40%;
    }

    .glossary-item p {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .glossary-item {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

@media screen and (max-width: 768px) {
    .glossary-head-texts h1 {
        font-size: 35px;
    }
    .glossary-head-texts p {
        font-size: 14px;
    }
}
