/**
* блок табов 
*/
#tabsCustom .title_block_tabs {
  font: 800 24px/1.5 Roboto, sans-serif;
  text-align: center;
  margin: 3rem 0 2rem;
}

#tabsCustom .wrapper_tabs {
  border: 1px solid var(--bgcolortabs);
}

#tabsCustom .tab_header_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

#tabsCustom .tab__header_item:not(:last-child) {
  border-right: 1px solid #ffffff;
}

#tabsCustom .tab__header_item,
#tabsCustom .bg_inner_title {
  background-color: var(--bgcolortabs);
  color: var(--colortabs);
}

#tabsCustom .color_tabs {
  color: var(--bgcolortabs);
}

#tabsCustom .tab_active {
  color: var(--bgcolortabs);
  background-color: #ffffff;
}

#tabsCustom .tab__header_item {
  font: 700 13px/1.5 Roboto, sans-serif;
  text-align: left;
  box-sizing: border-box;
  padding: .5rem .82rem;
  cursor: pointer;
  transition: all .3s linear;
  word-break: break-word;
}

#tabsCustom .tab__header_item:hover {
  filter: brightness(.8)
}

#tabsCustom .tab_content {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 3rem 1rem 1rem;
}

.wrapper_plaska_new {
  padding: 20px 12px;
  margin-bottom: 30px;
}

.tab_content_new {
  display: grid;
  grid-template-areas: "image title" "descr descr" "link link";
  grid-template-columns: 75px 1fr;
  padding: 15px;
  border-radius: 2em;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  min-height: 380px;
  transition: all 0.3s;
}

.tab_content_new:hover {
  transform: translateY(-20px);
}

.tab_content_new .image_card_wrap {
  grid-area: image;
}

.tab_content_new .inner__content {
  grid-area: title;
}

.tab_content_new .description_tab_card {
  grid-area: descr;
}

.tab_content_new .link_to_service {
  grid-area: link;
}

.tab_content_new .link_to_service a {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  text-decoration: none;
}

.tab_content_new .link_to_service a svg {
  width: 50px;
  transition: all 0.3s;
}

.tab_content_new .link_to_service a svg:hover {
  transform: scale(1.1);
}

#tabsCustom .wrapper_info .item {
  margin-bottom: 10px;
  align-items: center;
  text-align: center;
}

#tabsCustom .wrapper_info .item svg {
  width: 24px;
  height: 24px;
}

#tabsCustom .wrapper_info .item span {
  font: 900 20px/1.5 sans-serif;
  color: var(--bgcolortabs);
}

#tabsCustom img.images-card {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

#tabsCustom .inner__content {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
}

#tabsCustom .inner_title_card {
  text-align: center;
  padding: .5rem 1rem;
  font: 900 20px / 1.5 sans-serif;
}

#tabsCustom .inner__content ul,
.item__card .text__card ul {
  list-style: disc;
  padding-left: 20px;
  margin: 1em 0;
}

#tabsCustom .item__card {
  border: 1px solid var(--bgcolortabs);
  border-radius: 1rem;
  overflow: hidden;
}

#tabsCustom .title__card {
  font: 800 20px/1.5 Roboto, sans-serif;
  text-align: center;
  background-color: var(--bgcolortabs);
  color: var(--colortabs);
  padding: .5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

#tabsCustom .text__card {
  padding: 1rem 1rem 2rem;
}