#producers-block {
    position: relative;
}
#producers-block:before {
    content: "";
    position: absolute;
    width: 375px;
    height: 57px;
    top: 25.5%;
    left: 0;
/*     background-image: url(images/prodsB.png); */
    background-size: cover;
    pointer-events: none;
}
#producers-block .tabs{
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #A6B1C0;
    margin-bottom: 20px;
    position: relative;
	flex-wrap: wrap;
	row-gap: 10px;
}
#producers-block .tabs-btn{
    border-radius: 2px;
    background: transparent;
    border: 1px solid var(--main);
    padding: 15px;
    font-size: 24px;
    font-weight: 500;
    line-height: 110.5%;
    color: var(--main);
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
    flex-grow: 1;
}
#producers-block .tabs-btn.active, #producers-block .tabs-btn:hover {
    background: var(--main);
    color: white;
}
#producers-block .prod-item {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}
#producers-block .prod-item .img{
    max-width: 170px;
    max-height: 50px;
}
#producers-block .prod-item img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
#producers-block .right-side{
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 80%;
}
#producers-block .prod-name{
    font-size: 24px;
    font-weight: 500;
    line-height: 110.5%;
}
#producers-block .prod-desc p{
    font-size: 16px;
    font-weight: 400;
    line-height: 177%;
}
#producers-block .nav-holder{
    position: relative;
    display: flex;
    align-items: center;
    min-width: 415px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
#producers-block .swiper-button-next,
#producers-block .swiper-button-prev {
  opacity: 1;
  border: 2px solid #A6B1C0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: 0.3s;
  position: static;
  margin-top: 0px;
}
#producers-block .swiper-button-next:hover,
#producers-block .swiper-button-prev:hover {
    background: var(--main);
    border-color: var(--main);
}
#producers-block .swiper-button-next path,
#producers-block .swiper-button-prev path  {
    transition: 0.3s;
}
#producers-block .swiper-button-next:hover path,
#producers-block .swiper-button-prev:hover path {
    fill: white;
}
#producers-block .swiper-pagination {
    position: static;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 140px);
}
#producers-block .swiper-pagination-bullet {
    background: transparent;
    width: auto;
    height: auto;
    position: relative;
    color:#A6B1C0;
    font-size: 24px;
    font-weight: 500;
    line-height: 110.5%;
    transition: 0.3s;
    opacity: 1;
}
#producers-block .swiper-pagination-bullet:hover {
    color: var(--main);
}
#producers-block .swiper-pagination-bullet:before {
    content: "";
    width: 100px;
    height: 2px;
    top: 12px;
    right: -110px;
    position: absolute;
    background: var(--main);
    border-radius: 5px;
    opacity: 0;
    transition: 0.3s;
}
#producers-block .swiper-pagination-bullet-active {
    color: var(--main);
    margin-right: 120px;
    columns: var(--main);
}
#producers-block .swiper-pagination-bullet-active:before {
    opacity: 1;
}
#producers-block .swiper-pagination-bullet:last-child:before {
    opacity: 0;
}
@media (max-width: 996px) {
    #producers-block .nav-holder {
        width: 100%;
    }
    #producers-block .prod-item {
        flex-direction: column;
    }
    #producers-block .right-side {
        width: 100%;
    }
}
@media (max-width: 767px) {
    #producers-block .tabs-btn {
        font-size: 18px;
    }
}
@media (max-width: 600px) {
    #producers-block {
        padding: 0px 0px;
    }
    #producers-block .tabs-btn {
        font-size: 16px;
    }
    #producers-block .tabs {
        gap: 10px;
        flex-wrap: wrap;
    }
    #producers-block .prod-desc p {
        line-height: 130%;
        font-size: 14px;
    }
    #producers-block .swiper-pagination-bullet {
        font-size: 16px;
    }
    #producers-block .swiper-pagination-bullet:before {
        width: 30px;
        top: 9px;
        right: -35px;
    }
    #producers-block .swiper-pagination-bullet-active {
        margin-right: 35px;
    }
    #producers-block .swiper-button-next, #producers-block .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    #producers-block .prod-item {
        margin-bottom: 20px;
    }
    #producers-block .nav-holder {
        min-width: unset;
    }
    #producers-block:before {
        display: none;
    }
    #producers-block .swiper-pagination {
        width: calc(100% - 85px);
    }
}