    .tabbed-thumbs-gallery {
      width: 100%;
      height: 600px;
    }
    
    .thumbs-next-button::after {
  content: '\2193';
      color: #1b1b1b;
    font-size: 24px;
    line-height: 1;
    font-family: monospace;/* Add the desired content */
}
.thumbs-prev-button::after {
  content: '\2191';
      color: #1b1b1b;
    font-size: 24px;
    line-height: 1;
    font-family: monospace;/* Add the desired content */
}
.thumbs-next-button {
  width: 36px;
    height: 36px;
    background: #fff;
    opacity: .6;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    right: 20px;
    border-radius: 24px;
    color: #1b1b1b;
    font-size: 24px;
    line-height: 1;
    font-family: monospace;
}

.thumbs-prev-button {
 width: 36px;
    height: 36px;
    background: #fff;
    opacity: .6;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    right: 20px;
    border-radius: 24px;

}

.tabbed-slider-container {
    display: flex;
flex-direction: column;
align-items: center;
gap: 60px;
}

.thumbs-description {
    column-count: 2;
width: 960px;
column-gap: 40px;
color: #FFF;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 30.4px; /* 126.667% */
}

@media screen and (max-width: 1200px) {
    .tabbed-thumbs-gallery {
        height: 50vw;
    }
    .thumbs-description {
        width: 100%;
        column-count: 1;
    }

}

@media screen and (max-width: 576px) {
        .thumbs-description {
            font-size: 16px;
    line-height: 1.4;
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 500;
    }
}