.section-feedback{
	padding-top: 40px;
}

.tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  /* flex-wrap: wrap; */
}

.tab-btn {
  padding: 10px 16px;
  background: white;
  border: 1px solid #15488c;
  border-radius: 6px;
  cursor: pointer;
  /* font-size: 14px; */
  transition: all 0.2s;
  width: 100%;
}

.tab-btn.active,
.tab-btn:hover {
  background: rgb(21, 72, 140);
  color: white;
  border-color: rgb(21, 72, 140);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}
@media screen and (max-width:1024px) {
	.tabs-nav{
		flex-wrap: wrap;
	}
}
