html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
    font-family: "UZ Sans";
    color: var(--black);
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ===== */

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

:root {
    --main: #213786;
    --black: #2c2a29;
    --grey: #e8e8e8;
}

.container {
    position: relative;
    max-width: 1440px;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    margin: 0 auto;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--black-color);
}


@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans/UZSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans/UZSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans/UZSans-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans/UZSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans/UZSans-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("../fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.btn {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
}

.btn-white {
    color: var(--main);
    border: 1px solid var(--main);
    border-radius: 12px;
    background: #fff;
}

.btn-header {
    padding: 18px 31px;
}

/* ===== header ===== */

.main-page .header-wrapper {
    background: #f8f9ff;
}

.header-wrapper {
    position: relative;
    padding: 12px 0;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
}

.header__in {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__in-block {
    position: relative;
}

.header-logo {
    display: block;
}

.menu-list {
    list-style: none;
    position: relative;
    display: flex;
}

.menu-list--active {
    display: block !important;
    animation: fadeIn 0.3s ease-in-out;
    padding: 24px;
    box-sizing: border-box;
    position: fixed;
    z-index: 9999;
    background: #fff;
    right: 0;
    top: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-top-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.menu-list__item {
    padding: 18px 10px;
}

.menu-list--active .menu-list__item {
    border-bottom: 1px solid #eaebf1;
}

.menu-list .menu-list__item:first-child {
    border-top: 1px solid #eaebf1;
}

/* .menu-list__item:last-child {
  border-bottom: none;
} */

.menu-list__link {
    text-decoration: none;
    color: #2c2a29;
    font-size: 18px;
    display: block;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
}

.menu-list__link::before {
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 24px;
    height: 24px;
    background: url("../img/menu-arrow.svg") 0 0 no-repeat;
}

/* .menu-list__link:hover {
  color: #007bff;
} */

.close-btn {
    display: none;
    position: relative;
    cursor: pointer;
}

/* .close-btn:before {
  content: "✖";
  color: #fff;
  font-size: 24px;
} */

.menu-list--active .close-btn {
    display: block;
}

.toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.toggle-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--main);
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.toggle-btn:hover span {
    background-color: #007bff;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000ad;
    display: none;
    z-index: 10;
}

.menu-overlay--active {
    display: block !important;
}

.mob-memu-btn {
    background: var(--main);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    display: block;
    width: 100%;
    padding: 17px 10px;
    margin-top: 38px;
    display: none;
}

@media screen and (max-width: 1100px) {
    .menu-list__link {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .menu-list {
        display: none;
    }

    .toggle-btn {
        display: flex;
    }

    .header__in-block--pc {
        display: none;
    }

    .mob-memu-btn {
        display: block;
    }
}

/* @media screen and (max-width: 600px) {
  .toggle-btn {
    display: flex;
  }

  .menu-list {
    position: relative;
    display: block;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-list__link {
    color: #2c2a29;
    font-weight: 500;
    font-size: 18px;
  }

  .menu-list__item {
    padding: 10px 20px;
    border: none;
  }

  .menu-overlay {
    display: none !important;
  }

  .menu-top-bar {
    display: none;
  }

  .mob-memu-btn {
    display: none;
  }

  .menu-list__link::before {
    display: none;
  }
} */

/* ===== header ===== */

/* ===== slider-wrapper ===== */
.slider {
    position: relative;
    background: #f8f9ff;
    background: linear-gradient(
            180deg,
            rgba(248, 249, 255, 1) 0%,
            rgba(232, 232, 232, 1) 100%
    );
}

.slide-in {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    padding: 96px 16px;
}

.slide-block {
    position: relative;
    flex: 0 0 calc(50% - 25px);
    box-sizing: border-box;
    color: var(--main);
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
}

.slide-text {
    font-size: 24px;
    margin-top: 10px;
    max-width: 535px;
    line-height: 1.3;
}

.slide-btn-block {
    position: relative;
    text-align: left;
    width: 100%;
    margin-top: 25px;
}

.slide-btn {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    background: #fff;
    padding: 20px 33px;
    border-radius: 12px;
}

.swiper-pagination {
    bottom: 32px !important;
}

.swiper-pagination-bullet-active {
    background: var(--main) !important;
}

@media screen and (max-width: 900px) {
    .slide-block {
        width: 100%;
    }

    .slide-in {
        flex-direction: column;
    }

    .slide-block:last-child {
        order: -1;
    }
}

/* ===== slider-wrapper ===== */

/* ===== supply-main ===== */

.supply-main {
    position: relative;
    margin-top: 28px;
}

.supply-main__in {
    position: relative;
    background: #131211;
    box-sizing: border-box;
    padding: 32px 30px;
    border-radius: 16px;
}

.supply-main-title-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    /* padding: 0 32px; */
    border-bottom: 1px solid #444240;
    padding-bottom: 32px;
}

.supply-main-title {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
}

.supply-main-btn {
    color: #191716;
    font-weight: 700;
    font-size: 18px;
    background: #fff;
    padding: 19px 22px;
    border-radius: 12px;
}

.supply-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0 12px;
    color: #cdd47f;
    padding: 0 22px;
    padding-top: 12px;
    font-family: "IBM Plex Mono";
    font-weight: 600;
    font-size: 16px;
}

.supply-table th {
    text-align: left;
    padding: 10px 15px;
    padding-bottom: 32px;
    padding-top: 32px;
    font-weight: bold;
    color: #747678;
    padding-left: 0;
}

.supply-table td {
    padding: 15px;
    vertical-align: middle;
    padding-left: 0;
    padding-right: 20px;
}

.supply-table tr:hover td {
    background-color: #222;
}

.supply-table .badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid currentColor;
    position: relative;
    padding-left: 25px;
}

.badge-color {
    position: absolute;
    top: calc(50% - 3px);
    left: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    overflow: hidden;
}

.btn-prozorro {
    position: relative;
    display: inline-block;
    border: 1px solid var(--main);
    color: var(--main);
    padding: 12px 19px;
    padding-right: 40px;
    border-radius: 12px;
    text-decoration: none;
    font-family: "UZ Sans";
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.supply-table .btn-prozorro {
    position: relative;
    display: inline-block;
    border: 1px solid #cdd47f;
    color: #cdd47f;
    padding: 12px 19px;
    padding-right: 40px;
    border-radius: 12px;
    text-decoration: none;
    font-family: "UZ Sans";
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s ease;
    white-space: nowrap;
}

.btn-table {
    position: relative;
    display: inline-block;
    border: 1px solid #213786;
    color: #213786;
    padding: 12px 19px;
    border-radius: 12px;
    text-decoration: none;
    font-family: "UZ Sans";
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s ease;
    white-space: nowrap;
}

.btn-prozorro::before {
    content: "";
    position: absolute;
    top: 6px;
    right: 10px;
    width: 23px;
    height: 22px;
    background: url(../img/table-btn-icon.svg) 0 0 no-repeat;
}

.supply-table .btn-prozorro:hover {
    background-color: #faffb012;
}

.supply-table td span {
    display: block;
}

.supply-table-title {
    max-width: 210px;
}

.supply-table td span {
    font-size: 12px;
}

.supply-table-price {
    text-align: right;
    width: 150px;
}

.supply-table-date {
    width: 110px;
}
/* ===== supply-main ===== */

/* ===== catalog ===== */
.catalog {
    position: relative;
    margin-top: 75px;
    margin-bottom: 100px;
}

.catalog-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    max-width: 925px;
    margin: 0 auto;
}

.catalog-block {
    position: relative;
    margin-bottom: 32px;
}

.catalog-block:last-child {
    margin-bottom: 0;
}

.catalog-block__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 31px;
    display: inline-block;
}

.category-page .catalog-block__title {
    font-size: 48px;
}

.catalog-list {
    position: relative;
    list-style: none;
}

.catalog-item {
    margin-bottom: 22px;
}

.catalog-item:last-child {
    margin-bottom: 0;
}

.catalog-link {
    text-decoration: none;
    font-size: 20px;
    color: var(--main);
    font-weight: 500;
    display: inline-block;
}

.btn-main-block {
    position: relative;
    text-align: center;
    margin-top: 32px;
}

.btn-main {
    text-decoration: none;
    background: var(--main);
    color: #fff;
    border-radius: 12px;
    padding: 19px 32px;
    transition: 250ms;
}

.btn-main:hover {
    opacity: 0.8;
}

@media screen and (max-width: 700px) {
    .catalog-in {
        grid-template-columns: repeat(1, 1fr);
    }

    .catalog {
        margin-bottom: 50px;
    }
}

.table-text-r {
    text-align: right !important;
}

/* ===== catalog ===== */

/* ===== hero-wrapper ===== */
.hero-wrapper {
    position: relative;
    background: #f6f6f8;
    padding: 60px 0;
}

.hero-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    align-items: center;
}

.hero-block {
    position: relative;
}

.main-title {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    color: var(--main);
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-list {
    list-style: auto;
    padding-left: 20px;
}

.hero-list__item {
    position: relative;
    font-size: 20px;
    margin-bottom: 15px;
}

.hero-list__item:last-child {
    margin-bottom: 0;
}

.text-align-left {
    text-align: left !important;
}

.hero-img {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

@media screen and (max-width: 768px) {
    .hero-in {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero-block:last-child {
        order: -1;
    }
}
/* ===== hero-wrapper ===== */

/* ===== faq-form ===== */
.faq-form {
    position: relative;
    margin-top: 60px;
}

.faq-form__in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 75px;
    max-width: 925px;
    margin: 0 auto;
}

.faq-form__block {
    position: relative;
}

.faq-more-block {
    text-align: left;
}

.faq-more {
    display: inline-block;
    color: #213786;
    font-weight: 500;
    position: relative;
    padding-right: 20px;
}

.faq-more::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 15px;
    background: url("../img/arrow-right.svg") 0 0 no-repeat;
}

.main-title--faq-form {
    margin-bottom: 10px;
}

.form-wrapper {
    position: relative;
}

.form {
    position: relative;
}

.form-row {
    position: relative;
    margin-bottom: 25px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-label {
    font-size: 13px;
    color: #6c6e75;
    display: block;
    margin-bottom: 10px;
}

.form-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d5dae7;
    padding: 16px 20px;
    border-radius: 12px;
    color: #2c2e32;
    font-family: "UZ Sans";
    font-weight: 500;
    font-size: 15px;
}

.form-input-grey {
    background: #eaebf1;
}

.form-input--change {
    display: inline-block;
    position: absolute;
    top: 43px;
    right: 20px;
    color: var(--main);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}

.form-input--error {
    border: 1px solid #cd4c4c;
}

.form-input__error-text {
    margin-top: 5px;
    font-size: 13px;
    color: #cd4c4c;
}

select.form-input {
    -webkit-appearance: none;
}

/* .form-input--select {
  background: url(../img/select.svg) right no-repeat;
} */

.form-input--select-block {
    position: relative;
}

.form-input--select-block::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: url(../img/select.svg) 0 0 no-repeat;
    pointer-events: none;
}

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox + label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom-checkbox + label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #d5dae7;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    background-color: #eff1f6;
}

.custom-checkbox:checked + label::before {
    border-color: #213786;
    background-color: #213786;
    background-image: url("../img/check.svg");
}

/* .custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: rgba(0, 0, 255, 0.33);
}
.custom-checkbox:not(:disabled):active + label::before {
  background-color: rgba(0, 0, 255, 0.66);
}
.custom-checkbox:focus + label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 255, 0.125);
}
.custom-checkbox:focus:not(:checked) + label::before {
  border-color: #c3c3c3;
}
.custom-checkbox:disabled + label::before {
  background-color: black;
} */

@media screen and (max-width: 768px) {
    .faq-form__in {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0;
    }

    .faq-form__block-form {
        margin: 0;
    }
}

/* ===== faq-form ===== */

/* ===== acc ===== */
.accordion-single {
    margin-top: 10px;
}

.accordion-single-title {
    /* padding: 20px; */
    cursor: pointer;
    position: relative;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    padding: 20px;
    position: relative;
    padding-right: 50px;
    border: 1px solid #d5dae7;
    border-radius: 12px;
    box-shadow: 0px 5px 16.1px -10px #00000040;
}

.accordion-single-title::after {
    content: "";
    position: absolute;
    right: 23px;
    top: 30px;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #999;
    border-right: solid 2px #999;
    transform: translateY(-50%) rotate(135deg);
}

.accordion-single-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    font-size: 16px;
    color: #475467;
}

.accordion-single-content p {
    padding: 5px 0;
}

.accordion-single-item.is-open .accordion-single-content {
    max-height: 1500px;
    /* padding-bottom: 20px; */
}

.accordion-single-content--in {
    padding: 20px;
    padding-top: 0;
    margin-top: 15px;
}

.accordion-single-item.is-open .accordion-single-title::after {
    transform: translateY(-50%) rotate(315deg);
}

.accordion-single-item {
    background: #fff;
    border-radius: 20px;
    /* overflow: hidden; */
    margin-bottom: 16px;
    /* padding: 20px; */
}

.accordion-single-item:last-child {
    margin-bottom: 0;
}

.accordion-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 55px;
}

.accordion-wrapper .title-h3 {
    text-align: left;
    margin-bottom: 25px;
}

.faq main {
    background: #f7f6f8;
}

.accordion-wrapper ul {
    padding-left: 30px;
    margin: 10px 0;
}

.accordion-wrapper ul li {
    position: relative;
    margin-bottom: 10px;
}

.accordion-wrapper ul li:last-child {
    margin-bottom: 0;
}

.accordion-wrapper ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: -16px;
    width: 5px;
    height: 5px;
    background: #475467;
    border-radius: 50%;
}

.accordion-wrapper ol {
    list-style-type: auto;
    padding-left: 34px;
    margin: 10px 0;
}

.accordion-wrapper ol li {
    position: relative;
    margin-bottom: 10px;
}

.accordion-wrapper ol li:last-child {
    margin-bottom: 0;
}

/* ===== acc ===== */

/* ===== footer ===== */
.footer {
    position: relative;
    margin-top: 100px;
    border-top: 1px solid #d4d5d6;
    padding-top: 40px;
    background: #fff;
}

.footer-in {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-block {
    position: relative;
}

.footer__title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
    color: #737678;
}

.footer__text {
    max-width: 500px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 20px;
}

.footer__phone-block {
    position: relative;
}

.footer__phone {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    color: var(--main);
    font-size: 32px;
}

.footer-list__link {
    font-size: 15px;
    display: inline-block;
}

.footer-list__item {
    margin-bottom: 15px;
}

.footer-list__item:last-child {
    margin: 0;
}

.dev-footer {
    padding: 16px 0;
    border-top: 1px solid #d4d5d6;
    /* margin: 0 20px; */
    background: #fff;
    margin-top: 40px;
}

.dev-footer-in {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.dev-footer__block {
    position: relative;
}

.dev-footer__list {
    position: relative;
    display: flex;
    gap: 20px;
}

.dev-footer__list-link {
    display: inline-block;
    font-size: 13px;
}

.copyright {
    font-size: 13px;
}

@media screen and (max-width: 800px) {
    .dev-footer {
        margin: 0;
        margin-top: 40px;
    }

    .dev-footer-in {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .footer-in {
        flex-direction: column;
        gap: 50px;
    }
}
/* ===== footer ===== */

/* ===== zakupivli ===== */
.supply-table--white .supply-table {
    font-family: "UZ Sans";
}

.supply-table--white .supply-table-title {
    font-weight: 600;
}

.supply-table--white .supply-main__in {
    background: #fff;
}

.supply-table--white .supply-main-title {
    color: var(--main);
}

.supply-table--white .supply-main-title-row {
    border: none;
    padding: 0 10px;
    padding-bottom: 10px;
}

.supply-table--white .supply-table th {
    padding: 10px 13px;
    padding-bottom: 0;
    vertical-align: top;
}

.supply-table--white .supply-table {
    color: var(--black);
}

.supply-table--white .supply-table tr:hover td {
    background-color: transparent;
}

.supply-table--white .supply-table .btn-prozorro {
    border: 1px solid var(--main);
    color: var(--main);
}

.supply-table--white .btn-prozorro::before {
    background: url(../img/table-btn-icon-blue.svg) 0 0 no-repeat;
    top: 9px;
}

.supply-table--white .supply-table .badge {
    color: #596677;
    border: 1px solid #d4d5d6;
}

.supply-table--white .supply-table td {
    border-bottom: 1px solid #d4d5d6;
    padding: 16px 12px;
}

.supply-table--white .supply-table tr:last-child td {
    border: none;
}

.pagination-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.pagination-item {
    position: relative;
}

.pagination-link {
    display: inline-block;
    text-decoration: none;
    color: var(--main);
    border: 1px solid #d5dae7;
    width: 32px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 5px;
    margin: 0 2px;
    transition: 0.2ms;
}

.pagination-link:hover {
    background: #f6f6f8;
}

.pagination-link--active {
    border: 1px solid var(--main);
    background: var(--main);
    color: #fff;
}

.pagination-link--disable {
    pointer-events: none;
    opacity: 0.5;
}

.supply-search-block {
    position: relative;
}

.supply-search-block::before {
    content: "";
    position: absolute;
    top: calc(50% - 13px);
    left: 15px;
    width: 26px;
    height: 26px;
    background: url(../img/search.svg) 0 0 no-repeat;
}

.supply-search {
    width: 360px;
    background: #f7f6f8;
    padding-left: 50px;
}

@media screen and (max-width: 800px) {
    .supply-search {
        width: 300px;
    }
}

@media screen and (max-width: 600px) {
    .supply-search {
        width: 100%;
    }
}
/* ===== zakupivli ===== */

/* ===== categories ===== */
.category {
    position: relative;
    margin: 60px 0;
}

.categories-page .catalog-in {
    max-width: 100%;
}

.categories-page .catalog-in {
    max-width: 925px;
    margin: 0 auto;
}

.mb-25 {
    margin-bottom: 25px;
}

.categories-page .faq-form {
    background: #f6f6f8;
    margin-top: 0;
    padding: 100px 0;
}

.faq-page {
    background: #f6f6f8;
}

.categories-page .footer {
    margin-top: 0;
}

.faq-page .title-big {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 56px;
    margin-bottom: 25px;
}
/* ===== categories ===== */

/* ===== category ===== */

.category-page .catalog {
    margin-bottom: 0;
}

/* .supply-table--no-border td {
  border: none !important;
} */

.category-page {
    background-color: #f5f5f5;
}
/* ===== category ===== */

/* ===== subcategory ===== */
.subcategory {
    position: relative;
    margin-top: 75px;
}

.subcategory-in--background {
    max-width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
}

.subcategory-in {
    position: relative;
}

.subcategory-title-block {
    position: relative;
    margin-bottom: 25px;
}

.subcategory-subtitle {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #797d82;
    font-weight: 700;
    padding-right: 25px;
}

.subcategory-subtitle::before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    right: 0;
    width: 10px;
    height: 16px;
    background: url(../img/arrow-right-subcategory.svg) 0 0 no-repeat;
}

.subcategory-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--main);
    margin-top: 20px;
}

.subcategory-page .supply-table--white .supply-main-title-row {
    border: none;
    padding: 0;
    padding-bottom: 10px;
}

.subcategory-page .supply-table--white .supply-table th {
    padding: 10px 0;
    padding-bottom: 20px;
}

.subcategory-page .supply-table--white .supply-table td {
    padding: 16px 0;
}

.btn-block {
    position: relative;
}

.btn-prozorro--big {
    font-size: 18px;
    padding-right: 50px;
}

.btn-prozorro.btn-prozorro--main-color::before {
    background: url(../img/table-btn-icon-blue.svg) 0 0 no-repeat;
    top: 12px;
}

.subcategory-page {
    background-color: #f5f5f5;
}

@media screen and (max-width: 768px) {
    .subcategory-title {
        font-size: 38px;
    }
}

.popup-subtitle-row {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}

.popup-subtitle {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #797d82;
    font-weight: 700;
    padding-right: 25px;
}

.popup-subtitle::before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    right: 0;
    width: 10px;
    height: 16px;
    background: url(../img/arrow-right-subcategory.svg) 0 0 no-repeat;
}

.modal-dialog {
    max-width: 1200px;
}

.modal-header {
    border: none;
}

.modal-content {
    border: none;
    border-radius: 16px;
}

.modal-body {
    padding: 20px 60px;
    padding-bottom: 50px;
}

.popup-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--main);
    margin-top: 20px;
}

.modal-body-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
    grid-gap: 100px;
}

.modal-body-in__block {
    position: relative;
}

.modal-body-in__text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.modal-body-in__title {
    font-size: 24px;
    font-weight: 600;
    color: #747678;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-body-in__list {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}

.modal-body-in__item {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 15px;
}

.modal-body-in__item:last-child {
    margin: 0;
}

.modal-body-in__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 19px;
    height: 22px;
    background: url(../img/popup-list.svg) 0 0 no-repeat;
}

.modal-body-in__block--left::before {
    content: "";
    position: absolute;
    top: 0;
    right: -35px;
    height: 100%;
    width: 1px;
    background: #d4d5d6;
}

@media screen and (max-width: 890px) {
    .supply-main__in {
        overflow-x: scroll;
    }

    .supply-table-price {
        min-width: 120px;
    }
}

@media screen and (max-width: 768px) {
    .modal-body-in {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }

    .modal-body-in__block--left::before {
        display: none;
    }

    .modal-body {
        padding: 20px 20px;
    }

    .popup-subtitle {
        font-size: 14px;
    }

    .popup-title {
        font-size: 28px;
    }
}
/* ===== subcategory ===== */

/* ===== event ===== */
.event-wrapper {
    position: relative;
    background: #f6f6f8;
    padding: 20px 0;
}

.event__in {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 25px 90px;
    border-radius: 16px;
    padding-right: 100px;
    box-sizing: border-box;
}

.event__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--main);
}

.event-page .footer {
    margin-top: 0;
}

.event-list {
    position: relative;
    margin: 25px 0;
}

.event-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.event-item:last-child {
    margin: 0;
}

.event-text,
.event-list-time {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin: 25px 0;
}

.event-item-time {
    margin-bottom: 10px;
}

.event-item-time:last-child {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .event__in {
        padding: 25px 25px;
    }

    .event-wrapper .container {
        padding: 0;
    }

    .event-wrapper {
        padding: 0;
    }
}
/* ===== event ===== */

/* ===== for-supplier ===== */
.slider-inside {
    position: relative;
    padding: 145px 0;
}

.slider-inside-1 {
    background: url("../img/slider-inside-1.jpg") center no-repeat;
    background-size: cover;
}

.slider-inside__in {
    position: relative;
}

.slider-inside-text-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.slider-inside-title {
    font-size: 64px;
    font-weight: 500;
}

.slider-inside-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

@media screen and (max-width: 768px) {
    .slider-inside-title {
        font-size: 40px;
    }

    .slider-inside-text {
        font-size: 18px;
    }
}

.title-row-center {
    position: relative;
    max-width: 937px;
    margin: 0 auto;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 25px;
}

.title-row__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 24px;
}

.title-row__text {
    font-size: 24px;
    font-weight: 500;
    color: #475467;
    line-height: 1.3;
}

.title-row__text a {
    color: var(--main);
    text-decoration: underline;
}

.supplier-list-wrapper {
    position: relative;
}

.supplier-list-block {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 64px;
    font-size: 18px;
    font-weight: 500;
}

.supplier-list-block:last-child {
    margin-bottom: 0;
}

.supplier-list__title-small {
    font-size: 24px;
    font-weight: 700;
    color: var(--main);
    text-align: center;
}

.supplier-list__title-big {
    font-size: 36px;
    font-weight: 700;
    color: var(--main);
    text-align: center;
}

.supplier-list {
    max-width: 512px;
    margin: 0 auto;
    margin-top: 25px;
    list-style: auto;
    line-height: 1.3;
}

.supplier-list__item {
    margin-bottom: 15px;
}

.supplier-list__item:last-child {
    margin-bottom: 0;
}

.supplier-list-text {
    max-width: 512px;
    margin: 0 auto;
}

.supplier-list-text {
    margin-top: 25px;
    margin-bottom: 20px;
}

.btn-main-block-max-width {
    max-width: 512px;
    margin: 0 auto;
    margin-top: 25px;
}

.for-supplier-page .faq-form {
    background: #f6f6f8;
    padding-top: 60px;
    padding-bottom: 100px;
}

.for-supplier-page .footer {
    margin-top: 0;
}

.desc {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    cursor: pointer;
}

.desc::before {
    content: "";
    position: absolute;
    top: 3px;
    right: 0;
    width: 11px;
    height: 8px;
    background: url("../img/arrow-bottom.svg") 0 0 no-repeat;
    transition: transform 0.2s ease;
}

.desc.asc::before {
    transform: rotate(180deg);
}
/* ===== for-supplier ===== */

/* ===== about ===== */
.center-white {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 25px 90px;
    border-radius: 16px;
    padding-right: 100px;
    box-sizing: border-box;
    margin-top: 20px;
    margin-bottom: 20px;
}

.center-transparent {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
    margin-top: 20px;
    margin-bottom: 20px;
}

.title-big {
    font-size: 48px;
    font-weight: 700;
    color: var(--main);
}

.background-gray {
    background: #f6f6f8;
}

.about-page .footer {
    margin: 0;
}

.simple-text p {
    margin: 20px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

.about-page .footer {
}

.faq-page .accordion-single-title {
    border: none;
    box-shadow: none;
}

.faq-page .accordion-single-item {
    box-shadow: 0px 1px 5px 0px #0000000d;
}
/* ===== about ===== */
