.dowc_tabs {
  --font-family: "Inter", sans-serif;
  display: grid;
  grid-template-columns: 550fr 507fr;
  align-items: start;
  gap: 25px 65px;
}
@media (max-width: 1199px) {
  .dowc_tabs {
    gap: 40px;
  }
}
@media (max-width: 899px) {
  .dowc_tabs {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.dowc_tabs .section_title {
  margin: 0;
  padding: 0 40px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 108%;
  color: #000;
}
@media (max-width: 899px) {
  .dowc_tabs .section_title {
    padding: 0 20px;
    line-height: 95%;
  }
}
.dowc_tabs .content {
  display: flex;
  flex-direction: column;
}
.dowc_tabs .content .tabs_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dowc_tabs .content .tabs_wrapper .tab_item {
  display: grid;
  grid-template-columns: 36px 1fr 12px;
  align-items: start;
  padding: 25px 20px 25px 40px;
  gap: 10px 36px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: 0.3s;
}
@media (max-width: 1199px) {
  .dowc_tabs .content .tabs_wrapper .tab_item {
    padding: 25px 20px;
    gap: 12px;
  }
}
@media (max-width: 899px) {
  .dowc_tabs .content .tabs_wrapper .tab_item {
    padding: 32px 15px 35px;
  }
}
.dowc_tabs .content .tabs_wrapper .tab_item.open {
  padding: 25px 20px 30px 40px;
  border-color: #e9e9e9;
}
@media (max-width: 1199px) {
  .dowc_tabs .content .tabs_wrapper .tab_item.open {
    padding: 25px 20px;
  }
}
@media (max-width: 899px) {
  .dowc_tabs .content .tabs_wrapper .tab_item.open {
    padding: 32px 15px 35px;
  }
}
.dowc_tabs .content .tabs_wrapper .tab_item.open .minus {
  display: block;
}
.dowc_tabs .content .tabs_wrapper .tab_item.open .plus {
  display: none;
}
.dowc_tabs .content .tabs_wrapper .tab_item .num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 21px;
  line-height: 152%;
  text-align: center;
  color: #00bc56;
}
.dowc_tabs .content .tabs_wrapper .tab_item .tab_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dowc_tabs .content .tabs_wrapper .tab_item .tab_content .title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 26px;
  line-height: 115%;
  color: #000;
  cursor: pointer;
}
@media (max-width: 899px) {
  .dowc_tabs .content .tabs_wrapper .tab_item .tab_content .title {
    font-size: 24px;
    line-height: 125%;
  }
}
.dowc_tabs .content .tabs_wrapper .tab_item .tab_content .text {
  display: none;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 144%;
  color: #000;
}
.dowc_tabs .content .tabs_wrapper .tab_item .plus, .dowc_tabs .content .tabs_wrapper .tab_item .minus {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 26px;
  line-height: 115%;
  color: #000;
  cursor: pointer;
}
@media (max-width: 899px) {
  .dowc_tabs .content .tabs_wrapper .tab_item .plus, .dowc_tabs .content .tabs_wrapper .tab_item .minus {
    font-size: 24px;
    line-height: 125%;
  }
}
.dowc_tabs .content .tabs_wrapper .tab_item .minus {
  display: none;
}
.dowc_tabs .media {
  grid-row: span 2;
}
@media (max-width: 899px) {
  .dowc_tabs .media {
    grid-row: initial;
  }
}
.dowc_tabs .media .tab_img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 899px) {
  .dowc_tabs .media .tab_img {
    max-width: 500px;
    aspect-ratio: 350/210;
    -o-object-fit: cover;
       object-fit: cover;
    justify-self: center;
  }
}