h1.heading-section__head {
    color: #354D4E;
    padding: 40px 0;
    margin: 0;
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
    text-align: center;
    letter-spacing: 0.4px;
    text-box: trim-both cap alphabetic;
}
.wax-bg {
    background: #FFF2EE!important;
}
.glossary-sec-1,
.glossary-sec-2 {
    padding: 64px 0;
}

.glossary-sec-1 p {
    color: #fff;
    text-align: center;
    text-box: trim-both cap alphabetic;
}

ul.glossary-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    margin: 0;
    height: 15px;
}

ul.glossary-list > li  > a{
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    color: #354D4E;
    width: 33px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

ul.glossary-list > li  > a.inactive-link {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #354D4E;    
    opacity: 0.8;
}

.glossary-section dt {
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    color: #354D4E;
    /*margin-bottom: 5px;*/
    margin-bottom: 16px;
}

.glossary-section dl {
    /*margin-bottom: 35px;*/
    margin-bottom: 40px;
}

.glossary-section.glossary--s dl {
    margin-bottom: 0px;
}

.glossary-section:not(.glossary--s) {
    border-bottom: 1px solid #FF595A;;
}

.glossary--a {
    padding-top: 32px;
}

.glossary-section:not(.glossary--a) > dl:nth-child(1) {
    /*padding-top: 35px;*/
    padding-top: 40px;
}

.glossary-section dd {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 24px;
}

.glossary-section * {
    text-box: trim-both cap alphabetic;
}

.glossary-head {
    text-box: trim-both cap alphabetic;
    /*display: inline-block;*/
}

@media screen and (min-width: 992px) {
	.heading-section {
       margin-top: 43px;
    }
    .glossary-wrapper dd.pr-5 {    
		padding-right: 5px;
    }

}
@media screen and (max-width: 991px){
	h1.heading-section__head {
        font-size: 30px;
        letter-spacing: 0.3px;
        line-height: 34px;
        color: #2C4041;
    }

    ul.glossary-list {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
        row-gap: 30px;
        padding: 16px 29px 0 20px;
        width: 360px;
        height: 274px;
        background: #ffffff;
        box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25);
    }
    
    button.glossary-dropdown > img {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }
    
    button.glossary-dropdown {
        padding: 12px 8px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        border: none;
        font-size: 18px;
        font-style: normal;
        font-weight: 800;
        line-height: 24px;
    }
    
    ul.glossary-list {
        display: none;
    }
    
    ul.glossary-list.active {
        display: grid;
        position: absolute;
        top: -0px;
    }
    
    button.glossary-dropdown > img.open {
        transform: rotate(0deg);
    }
    
    .glossary-sec-2 {
        position: relative;
        padding-top: 30px;
    }

    .glossary-section dl {
        margin-bottom: 32px;
    }
    
    .glossary-section:not(.glossary--a) > dl:nth-child(1) {
        padding-top: 32px;
    }

}