.tab-container-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px 0px;
}

.tab-container-section .tabs_wrapper {
  display: flex;
  justify-content: start;
  margin-bottom: 40px;

  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tab-container-section .tabs_wrapper::-webkit-scrollbar {
  display: none;
}

.tab-container-section .custom_tabs {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
}
.tab-container-section .custom_tabs .nav-link {
  padding: 8px 16px;
  border: 1px solid transparent;
  background: transparent;
  color: #202020;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tab-container-section .custom_tabs .nav-link:hover {
  background: #ebebeb;
  border: 1px solid #707070;
  border-radius: 4px;
}

.tab-container-section .custom_tabs .nav-link.active {
  font-weight: 500;
  background: #ffd2bc;
  border: 1px solid #f16625;
  border-radius: 4px;
  color: #202020;
}

@media (min-width: 0px) and (max-width: 574px) {
  .tab-container-section .custom_tabs .nav-link {
    font-size: 14px;
  }

  .tab-container-section .custom_tabs {
    gap: 7px;
    flex-wrap: nowrap;
  }
  .tab-container-section .tabs_wrapper {
    overflow-x: auto;
  }
}

@media (min-width: 574px) and (max-width: 767.98px) {
  .tab-container-section .custom_tabs .nav-link {
    padding: 5px 15px;
    font-size: 15px;
  }

  .tab-container-section .custom_tabs {
    gap: 8px;
  }
}
