@font-face {
    font-family: "Century Gothic";
    src: url("centurygothic.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Century Gothic";
    src: url("centurygothic_bold.ttf") format("ttf");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Century Gothic', sans-serif;
    line-height: 1.5;
    color: #22292f;
    margin: 0;
    padding: 0;
}

.background img {
    max-width: 100%;
}

.slider {
    margin: 40px auto;

    .slick-track {
        gap: 64px;
    }
}

.slider img {
    max-width: 170px;
    width: 100%;
    height: auto;
    margin: 0px 10px;
}

.slider div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading-search-container {
    position: sticky;
    top: 0;
    background-color: white;
    padding: 20px;
    z-index: 999;
}

.heading-container {
    text-align: center;
    margin-bottom: 64px;
}

.heading-container h1 {
    font-weight: 700;
    font-size: 32px;
}

.heading-container p {
    color: #495A69;
}

.heading-container .authorized-title {
    font-weight: 500;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}


.search-container {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
}

.search-input {
    width: calc(100% - 34px);
    padding: 16px;
    font-size: 16px;
    border: 1px solid #dde4f8;
    border-radius: 8px;
    box-shadow: 0px 4px 16px #dde4f8;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.category {
    font-size: 20px;
    font-weight: 500;
    color: #0094de;
    z-index: 1;
}

.category,
.subcategory {
    display: flex;
    flex-direction: column;
}

.category-title,
.subcategory-title {
    font-size: 18px;
    font-weight: 500;
    padding: 16px;
    border-radius: 4px;
    margin: 0;
}

.category-title {
    text-align: center;
    text-transform: uppercase;
}

.subcategory-title {
    background-color: #fef2cb;
}

.subcategories-container {
    z-index: 1;
}

.product-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    position: sticky;
    top: 320px;
    z-index: 999;
}

.product-table th,
.product-table td {
    padding: 16px;
    text-align: left;
}

.category tr th {
    padding: 16px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

.category,
.product-table tr {
    box-shadow: 0px 4px 12px #dde4f8;
    border-radius: 8px;
}

.product-table th {
    background-color: #dde4f8;
    font-weight: 500;
}

.product-table td {
    background-color: white;
}

.product-table tr td:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.product-table tr td:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    text-align: right;
}

.product-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    table-layout: fixed;
}

.product-table th,
.product-table td {
    padding: 16px;
    text-align: left;
}

.product-table td:first-child,
.product-table th:first-child {
    width: 60%;
}

.product-table th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.product-table th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.product-table td:not(:first-child),
.product-table th:not(:first-child) {
    width: 20%;
}

.product-table th:last-child,
.product-table td:last-child {
    width: 30%;
}


.product-table th:not(:first-child),
.product-table td:not(:first-child) {
    text-align: right;
}

.hidden {
    display: none;
}

@media only screen and (max-width: 600px) {

    .slider {
        margin: 0px auto;

        .slick-track {
            gap: 32px;
        }
    }

    .heading-search-container {
        top: -2px;
    }

    .container {
        padding-top: 0;
    }

    .product-table {
        top: 274px;
    }

    .product-table th {
        white-space: nowrap;
    }



    .product-table td:first-child,
    .product-table th:first-child {
        width: 38%;
    }

    .heading-container {
        margin-bottom: 32px;
    }

    .search-container {
        margin-bottom: 32px;
    }

    .heading-container * {
        font-size: 16px;
    }

    .content * {
        font-size: 12px;
    }
}

@media only screen and (max-width: 395px) {
    .product-table {
        top: 318px;
    }
}