.classify_list-box {
    position: relative;
}

.classify_list-img {
    width: 40% !important;
    height: auto !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.accordion {
    width: 100%;
    margin: 0 auto;
}
  
.accordion-item {
    border: 1px solid #1a1a1ae4;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}
  
.accordion-header {
    background-color: #1a1a1ac8;
    border: none;
    padding: 15px;
    text-align: left;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    outline: none;
    transition: background-color 0.3s ease;
    color: #fff;
}
  
.accordion-header:hover {
    background-color: #1A1A1A;
}
  
.accordion-content {
    overflow: hidden;
    max-height: 0;
    padding: 0 15px;
    background-color: #ffffff41;
    transition: max-height 0.5s ease, padding 0.5s ease;
    display: flex;
    flex-wrap: wrap;
}
  
.accordion-content .accordion-content-box {
    border-radius: 4px;
    height: auto; 
    margin: 15px 20px 25px 0;
    cursor: pointer;
}

.accordion-content .accordion-content-box:hover {
    background-color: #ffffff22;
}
  
.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 15px;
}

.accordion-content-img {
    width: 50px;
    height: auto;
}

.accordion-content-title {
    text-align: center;
    font-size: 14px;
    padding-bottom: 10px;
    color: #A5A5A5;
}