.product-catalog {
    background: #fff;
    padding: 26px 0 80px;
}

.catalog-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 22px;
}

.catalog-sidebar {
    flex: 0 0 300px;
    background: #e6e6e6;
    border-radius: 8px;
    padding: 18px 0px 22px;
}

.catalog-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.catalog-tab {
    border: none;
    cursor: pointer;
    background: #d9d9d9;
    color: #2b64a2;
    font-weight: 600;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 22px;
    width:70%;
}

.catalog-tab.active {
    background: #2b64a2;
    color: #fff;
}

.catalog-links {
    margin-left:50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 6px 0px 20px;
    border-bottom: 1px solid #595757;
}

.catalog-link {
    text-decoration: none;
    color: #6b6b6b;
    font-size: 16px;
}

.catalog-link:hover {
    text-decoration: underline;
}

.catalog-filter {
    margin-left:50px;
    padding: 16px 0px 20px;
    border-bottom: 1px solid #595757;
}

.catalog-filter-title {
    font-size: 20px;
    font-weight: 600;
    color: #595757;
    margin-bottom: 10px;
}

.catalog-check {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b6b6b;
    font-size: 16px;
    padding: 6px 0;
}

.catalog-check input {
    width: 14px;
    height: 14px;
}

.catalog-filter-group {
    margin-bottom: 12px;
}

.catalog-sublist {
    list-style: none;
    margin: 0 20px 0;
    padding: 0 0 0 20px;
}

.catalog-sublist li {
    position: relative;
    padding: 2px 0;
}

.catalog-sublist li::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #595757;
}

.catalog-sublist a {
    text-decoration: none;
    color: #6b6b6b;
    font-size: 14px;
}

.catalog-sublist a:hover {
    color: #2b64a2;
}

.catalog-main {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 18px;
}

.catalog-main-inner {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 22px;
    margin-bottom:100px;
}

.catalog-big {
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.catalog-big img {
    width: 100%;
    display: block;
}

.catalog-thumbs {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.catalog-thumbs-2 {
    width:66%!important;
    margin:10px auto;
    grid-template-columns: repeat(2, 1fr)!important;
}

.catalog-thumbs-4 {
    grid-template-columns: repeat(4, 1fr)!important;
}

.catalog-thumb {
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: #fff;
    padding: 0px;
    overflow: hidden;
    cursor: pointer;
}

.catalog-thumb.active {
    border-color: #235fa8;
}

.catalog-thumb img {
    width: 100%;
    display: block;
}

.catalog-text{
    position: relative;width:100%;text-align: center;
}

.catalog-title {
    font-size: 16px;
    font-weight: 600;
    color: #235fa8;
    margin-bottom: 6px;
    border-bottom: 1px solid #235fa8;
    padding:0 0 6px;
    width:90%;
}

.catalog-title a{
    color: #235fa8;
}

.catalog-title a:hover{
    color: #235fa8;
}

.catalog-subtitle {
    font-size: 16px;
    color: #235fa8;
    margin-bottom: 10px;
}

.catalog-bullets {
    margin: 0 0 14px;
    padding-left: 16px;
    color: #595757;
    font-size: 13px;
    line-height: 2;
}

.catalog-table {
    width: 90%;
    border-collapse: collapse;
    font-size: 10px;
    color: #595757;
    margin: 10px 0 16px;
}

.catalog-table th {
    background: #00625c;
    color: #fff;
    padding: 8px 6px;
    font-weight: 400;
    border: 1px solid #fff;
}

.catalog-table td {
    padding: 7px 6px;
    border: 1px solid #fff;
    text-align: center;
    background: #e9f4fb;
}

.catalog-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top:40px;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00625c;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 2px 20px 4px;
    font-size: 16px;
    font-weight: 400;
}

.catalog-btn-icon {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 992px) {
    .catalog-wrap {
        flex-direction: column;
    }

    .catalog-sidebar {
        flex: 1;
    }

    .catalog-main-inner {
        grid-template-columns: 1fr;
    }

    .catalog-table {
        width: 100%;
    }

}

.color2 th{
    background-color: #13a3c8!important;
}
.color2 td{
    background-color: #e9f4fb!important;
}