* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: 100ms;
}
a {
	text-decoration: none;
	color: unset;
}
button {
	outline: none;
	border: none;
	background-color: transparent;
	cursor: pointer;
}

.contact_container {
	width: 100%;
	height: auto;
}
.tab_header_container,
.tab_content_container {
	width: 100%;
	height: auto;
	padding: 10px 20px;
	display: flex;
	justify-content: center;
}
.tab_header_container {
	background-color: #ebebeb;
}
.tab_header_container .content,
.tab_content_container .content {
	width: 1280px;
	height: auto;
	padding: 15px 0px;
}
.tab_header_container .content .tabs {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.tab_header_container .content .tabs .tab_button {
	width: 33%;
	border: 1px solid #3e3e3e;
	border-radius: 4px;
	color: #3e3e3e;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	padding: 7px 0px;
}
.tab_header_container .content .tabs .tab_button:hover,
.tab_header_container .content .tabs .tab_button.active {
	background-color: #42079e;
	color: white;
	border: 1px solid #42079e;
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.384);
}
.tab_content_container .content .tab_content {
	width: 100%;
	height: auto;
	display: none;
}
.tab_content_container .content .tab_content .card_container {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	flex-wrap: wrap;
}
.tab_content_container .content .tab_content.active {
	display: block;
}
.tab_content_container .content .tab_content .card {
	width: calc(25% - 17px);
	padding: 10px;
	border: 1px solid #f2e6ff;
	border-radius: 4px;
}
.tab_content_container .content .tab_content .card:hover {
	box-shadow: 0px 0px 5px #42079e;
}
.name_position {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #f2e6ff;
	padding: 10px;
	margin-bottom: 15px;
	background-color: #ebebeb;
	box-shadow: inset 0 0 10px #b3b3b3;
}
.name_position .name {
	font-size: 19px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	margin-bottom: 5px;
}
.name_position .position {
	font-size: 14px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.ph_no,
.mail {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.ph_no img,
.mail img {
	margin-right: 5px;
	width: 24px;
	height: auto;
}
.ph_no span,
.mail span {
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}

@media only screen and (max-width: 1536px) {
	.tab_header_container .content,
	.tab_content_container .content {
		width: 1080px;
	}
	.tab_header_container .content .tabs {
		gap: 15px;
	}
	.tab_content_container .content .tab_content .card_container {
		gap: 15px;
	}
	.tab_content_container .content .tab_content .card {
		width: calc(25% - 12px);
	}
	.name_position {
		padding: 7px;
		margin-bottom: 10px;
	}
	.name_position .name {
		font-size: 17px;
	}
	.name_position .position {
		font-size: 13px;
	}
	.ph_no,
	.mail {
		margin-bottom: 10px;
	}
	.ph_no img,
	.mail img {
		margin-right: 5px;
		width: 22px;
	}
	.ph_no span,
	.mail span {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1280px) {
	.tab_header_container .content,
	.tab_content_container .content {
		width: 980px;
	}
	.tab_header_container .content .tabs .tab_button {
		font-size: 15px;
	}
	.name_position .name {
		font-size: 15px;
	}
	.name_position .position {
		font-size: 12px;
	}
	.ph_no,
	.mail {
		margin-bottom: 7px;
	}
	.ph_no img,
	.mail img {
		width: 20px;
	}
	.ph_no span,
	.mail span {
		font-size: 12px;
	}
}

@media only screen and (max-width: 1080px) {
	.tab_header_container .content,
	.tab_content_container .content {
		width: 780px;
		padding: 10px 0px;
	}
	.tab_header_container .content .tabs .tab_button {
		font-size: 14px;
		padding: 6px 0px;
	}
	.name_position {
		padding: 5px;
	}
	.name_position .name {
		font-size: 13px;
	}
	.name_position .position {
		font-size: 10px;
	}
	.ph_no,
	.mail {
		margin-bottom: 5px;
	}
	.ph_no img,
	.mail img {
		width: 18px;
	}
	.ph_no span,
	.mail span {
		font-size: 11px;
	}
}

@media only screen and (max-width: 880px) {
	.tab_header_container .content,
	.tab_content_container .content {
		width: 667px;
	}
}

@media only screen and (max-width: 667px) {
	.tab_header_container,
	.tab_content_container {
		padding: 10px 15px;
	}
	.tab_header_container .content,
	.tab_content_container .content {
		width: 100%;
	}
	.tab_header_container .content .tabs {
		gap: 10px;
	}
	.tab_header_container .content .tabs .tab_button {
		font-size: 13px;
		padding: 5px 0px;
	}
	.tab_content_container .content .tab_content .card_container {
		gap: 10px;
	}
	.tab_content_container .content .tab_content .card {
		width: calc(33% - 6px);
		padding: 10px;
	}
	.name_position .name {
		font-size: 12px;
	}
	.name_position .position {
		font-size: 9px;
	}
	.ph_no img,
	.mail img {
		width: 16px;
	}
	.ph_no span,
	.mail span {
		font-size: 9px;
	}
}

@media only screen and (max-width: 450px) {
	.tab_header_container .content,
	.tab_content_container .content {
		padding: 7px 0px;
	}
	.tab_header_container .content .tabs {
		gap: 5px;
	}
	.tab_header_container .content .tabs .tab_button {
		font-size: 11px;
	}
	.tab_content_container .content .tab_content .card {
		width: calc(50% - 6px);
	}
	.name_position .name {
		font-size: 11px;
	}
	.name_position .position {
		font-size: 8px;
	}
	.ph_no img,
	.mail img {
		width: 14px;
	}
	.ph_no span,
	.mail span {
		font-size: 9px;
	}
}
