.products_main{
    padding: 155px 0 75px;
}
.products_main .left{
    width: 21.66%;
}
.products_main .right{
    width: 75%;
}
.products_main .left .title{
    padding: 0 26px;
    line-height: 65px;
    background-color: #0C0D11;
    color: white;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Saira', sans-serif;
}
.products_main .left .items{
    border: 1px solid #e6e7e8;
}
.products_main .left .items .tax > a{
    line-height: 60px;
    font-size: 17px;
    font-weight: 500;
    color: #111;
    padding: 0 26px;
    border-bottom: 1px solid #e6e7e8;
    display: flex;
    position: relative;
}
.products_main .left .items .tax > a:after{
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url('../img/tax_icon.svg') no-repeat center/contain;
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}
.products_main .left .items .tax > a:before{
    content: "";
    width: 3px;
    height: 100%;
    position: absolute;
    left: -1px;
    top: 0;
    background-color: transparent;
    transition: all 0.3s;
}
.products_main .left .items .tax li a{
    line-height: 48px;
    padding: 0 26px;
    display: block;
    color: #7a7d82;
}
.products_main .left .items .tax li + li a{
    border-top: 1px solid #e6e7e8;
}
.products_main .left .items .tax ul{
    display: none;
}
.products_main .left .items .tax.active>a:before{
    background-color: var(--primary);
}
.products_main .left .items .tax.active>a{
    background-color: #FBF5F5;
    color: var(--primary);
    border-color: transparent;
}
.products_main .left .items .tax.active>a:after{
    transform: translateY(-50%) rotate(90deg);
}

.products_main .right .head{
    margin-top: -15px;
    margin-bottom: 20px;
}
.products_main .left .items .tax li a:hover{
    color: var(--primary);
}
.products_main .left .items .tax li.active a{
    font-weight: 500;
    color: var(--primary);
}
.products_main .right .product_list ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px 25px;
}

/* ------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------ */
@media screen and (max-width: 1200px) {
  .products_main .left {
    width: 27%;
  }
  .products_main .right {
    width: 69%;
  }
}
@media screen and (max-width: 1024px) {
  .products_main {
    padding: 100px 0 60px;
  }
  .products_main .right .product_list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .products_main {
    padding: 50px 0;
  }
  .products_main .main {
    flex-direction: column;
    gap: 24px;
  }
  .products_main .left,
  .products_main .right {
    width: 100%;
  }
  .products_main .left .title {
    line-height: 54px;
    font-size: 18px;
    padding: 0 20px;
  }
  .products_main .left .items .tax > a {
    line-height: 52px;
    font-size: 16px;
    padding: 0 20px;
  }
  .products_main .left .items .tax > a:after {
    right: 20px;
  }
  .products_main .left .items .tax li a {
    line-height: 46px;
    padding: 0 20px;
  }
  .products_main .right .head {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .products_main .right .product_list ul {
    gap: 20px 16px;
  }
  .products_main p.center {
    margin-top: 36px;
  }
}
@media screen and (max-width: 576px) {
  .products_main .right .product_list ul {
    grid-template-columns: 1fr;
  }
}