:root {
    --black: #141311
}

.text_black {
    color: var(--black);
}

.gold_btn {
    padding: 11.5px 32px;
    border-radius: 8px;
    background: var(--Gold-1, linear-gradient(90deg, #AE8625 0%, #F7EF8A 25%, #D2AC47 75%, #EDC967 100%));
    color: #59421C;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 25px;
    text-decoration: none
}

.gold_btn:hover {
    transition: .5s ease all;
    -webkit-transition: .5s ease all;
    -moz-transition: .5s ease all;
    -ms-transition: .5s ease all;
    -o-transition: .5s ease all;
    background: var(--Gold-2, linear-gradient(90deg, #DFBD69 0%, #E0AA3E 50%, #926F34 100%));
}

div.text-center *:not(a) {
    text-align: center;
}

div.text-white *:not(a) {
    color: #FFFFFF;
}

.mb_60 {
    margin-bottom: 60px;

    @media (max-width: 991px) {
        margin-bottom: 50px;
    }

    @media (max-width: 767px) {
        margin-bottom: 40px;
    }

    @media (max-width: 575px) {
        margin-bottom: 30px;
    }
}

.gold_txt {
    background: var(--Gold-2, linear-gradient(90deg, #DFBD69 0%, #E0AA3E 50%, #926F34 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.gold_table {
    width: 100%;
    table-layout: fixed;
    margin-bottom: 0;
    tr{
        background-color: transparent !important;
    }
    th {
        border: 1px solid var(--Gold-1, #AE8625);
        background: var(--Gold-1, linear-gradient(90deg, #AE8625 0%, #F7EF8A 25%, #D2AC47 75%, #EDC967 100%));
        color: #432C07 !important;
        text-align: center;
    }

    td {
        border: 1px solid var(--Gold-1, #AE8625);
        background: rgba(255, 65, 65, 0.01);
        background: var(--Gold-1, linear-gradient(90deg, #AE8625 0%, #F7EF8A 25%, #D2AC47 75%, #EDC967 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
    }

    td,
    th {
        padding: 10px 20px;
    }
}