 
 
 
 .tabs {
	font-family: "Poppins", sans-serif;
	background-color: #f8f8f8;

	color: #202020;
	padding-top: 40px;
    padding-bottom: 35px;
}

.tabs .header-section {
	margin-bottom: 34px;
}

.tabs .header-section .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 32px;
    color: #273a50;
    text-align: left;
}

.tabs .header-section .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 26px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #eb2828;
    border-radius: 3px;
}

.tabs .header-section .title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 26px;
    transform: translateX(30px);
    width: 10px;
    height: 3px;
    background-color: #504f93;
    border-radius: 3px;
}

.tabs .header-section .description {
    font-size: 18px;
    color: #eb2828;
    text-align: left;
}

.tabs-container {
  width: 100%;
   
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 0px;
    flex-wrap: wrap;
     
}

.tab {
    padding: 10px 16px;
    border: none;
    border-radius: 36px;
    background: #ededed;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
	border-bottom: solid 1px #d9d6d6;
}

.tab:hover {
  background: #ededed;
}

.tab.active {
  background: #273a50;
  color: #FFF;
}

.tab-content {
  display: none;
  padding: 0px;
   border-radius: 6px;
  color: #ccc;
  transition: all 0.3s ease;
}

.tab-content.active {
  display: block;
}


 