 .mod_tabs-title{
    font-weight: 600;
    font-size: 36px;
    line-height: 140%;
    text-align: center;
    color: #623830;
    margin-bottom: 36px;
}
.mod_tabs-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.mod_tabs-item {
    width: calc(50% - 10px);   
}
.mod_tabs-desc{
  color: #000;
  margin-top: 5px;
  margin-bottom: 20px;
  width: 100%;
  min-width: 100%;
}
.mod_tabs-item-title {
    min-height: 88px;
    background-color: #f5eae4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #000;
    cursor: pointer;
    padding: 10px 18px;
    padding-left: 88px;
    background-position: left center;
    background-repeat: no-repeat;
}
.mod_tabs-item-title > span {
    display: inline-block;
    padding-left: 20px;
}
.mod_tabs-item-title .plus-img {
    width: 12px;
    height: 22px;
}
.mod_tabs-item-title.minus-img {
    max-width: 22px;
    min-width: 12px;
}
.mod_tabs-item-title .minus-img {
    display: none;
}
.mod_tabs-inner .mod_tabs-item-desc {
    display: none;
    background-color: #fff9f5;
    padding: 20px;
    font-size: 16px;
    line-height: 1.25;
}
@media (max-width: 1200px) {
    .mod_tabs-item-title {
        font-size: 18px;
    }
}
@media (max-width: 991px) {
    .mod_tabs-title {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    .mod_tabs-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .mod_tabs-inner {
        gap: 12px;
    }
    .mod_tabs-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .mod_tabs-item-title {
        min-height: 70px;
        padding: 10px 10px 10px 70px;
        background-size: 70px;
    }
    .mod_tabs-inner .mod_tabs-item-desc {
        padding: 15px;
    }
}