
#information-lotery {
	padding-top: 150px;
}


.mobile #information-lotery {
	padding-top: 90px;
}


.heading_title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 32px;
    line-height: 122%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #031f46;
}

.heading_title span {
    font-weight: 600;
    color: #034aa3;
}

.mobile .heading_title {
    text-align: center;
}

.heading_subtitle {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 137%;
    color: #5d6f88;
    margin-bottom: 40px;
}

.mobile .heading_subtitle {
    text-align: center;
}


.lottery_tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.mobile .lottery_tabs {
    gap: 5px;
    margin-bottom: 30px;
    overflow: auto;
    width: 100%;
}

.mobile .lottery_tabs li {
    flex-shrink: 0;
}


.lottery_tabs button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a2b5cf;
    border-radius: 30px;
    padding: 13px 20px;
    height: 45px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #034aa3;
    transition: 0.2s ease-in-out;
}

.lottery_tabs button:hover,
.lottery_tabs .nav-item.active button {
    background: #034aa3;
    color: #fff;
    border: 1px solid #034aa3;

}


.tab-pane .products_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mobile .tab-pane .products_grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

@media (max-width: 767px) {
    #information-lotery {
        padding-top: 90px;
    }

    .heading_title {
        text-align: center;
    }

    .heading_subtitle {
        text-align: center;
    }

    .lottery_tabs {
        gap: 5px;
        margin-bottom: 30px;
        overflow: auto;
        width: 100%;
    }

    .lottery_tabs li {
        flex-shrink: 0;
    }

    .tab-pane .products_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

