/**
 * Tabs
 */
.tabs {
	display: flex;
	flex-direction: row;
	margin: auto;
	justify-content: space-between;
}

.tabs > ul {
	/* list-style-type: none; */
	/* margin: 0; */
	/* padding: 0; */
	/* width: 43%; */
}

.tabs > ul li {
	display: block;
	border-radius: 11px;
	background: #919191;
	/* margin-bottom: 15px; */
	/* height: 181px; */
	/* width: fit-content; */
	/* max-width: 121px; */
}

.tabs > ul li:not(:last-child) {
	/* border-bottom: 1px solid #262626; */
	height: fit-content;
}

.tabs > ul li a,
.tabs > ul li a:visited {
	display: flex;
	border-bottom: none;
	text-decoration: none;
	/* background-color: #000; */
	color: #fff;
	padding: 1rem;
	transition: all 0.2s ease-in-out;
	word-wrap: break-word;
}

.tabs > ul li a:hover,
.tabs > ul li a:focus,
.tabs > ul li a:active {
	border-bottom: none;
	outline: 0;
}

.tabs > ul li a.active {
	background-color: #053f63e8;
	color: #0cb3b2;
	border-radius: 10px;
}

.tabs > ul li a:hover:not(.active) {
	color: #053f63;
}

.tabs > ul li a > span {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.tabs > ul li a > span.tab-label {
	display: none;
}

.tabs section {
	width: 85%;
	/* background-color: #fff; */
	padding: 1rem;
	display: none;
	word-wrap: break-word;
	/* border-bottom: 6px solid #0067b8; */
}

.tabs section > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.2s, transform 0.2s;
}

.tabs section > *:nth-child(1) {
	transition-delay: 0.2s;
}

.tabs section > *:nth-child(2) {
	transition-delay: 0.3s;
}

.tabs section > *:nth-child(3) {
	transition-delay: 0.4s;
}

.tabs section > *:nth-child(4) {
	transition-delay: 0.5s;
}

.tabs section > *:nth-child(5) {
	transition-delay: 0.6s;
}

.tabs section > *:nth-child(6) {
	transition-delay: 0.7s;
}

.tabs section > *:nth-child(7) {
	transition-delay: 0.8s;
}

.tabs section > *:nth-child(8) {
	transition-delay: 0.9s;
}

.tabs section > *:nth-child(9) {
	transition-delay: 1s;
}

.tabs section > *:nth-child(10) {
	transition-delay: 1.1s;
}

.tabs section > *:nth-child(11) {
	transition-delay: 1.2s;
}

.tabs section > *:nth-child(12) {
	transition-delay: 1.3s;
}

.tabs section > *:nth-child(13) {
	transition-delay: 1.4s;
}

.tabs section > *:nth-child(14) {
	transition-delay: 1.5s;
}

.tabs section > *:nth-child(15) {
	transition-delay: 1.6s;
}

.tabs section > *:nth-child(16) {
	transition-delay: 1.7s;
}

.tabs section > *:nth-child(17) {
	transition-delay: 1.8s;
}

.tabs section > *:nth-child(18) {
	transition-delay: 1.9s;
}

.tabs section > *:nth-child(19) {
	transition-delay: 2s;
}

.tabs section > *:nth-child(20) {
	transition-delay: 2.1s;
}

.tabs section.active {
	display: block;
}

.tabs section.active-content > * {
	opacity: 1;
	transform: translateY(0);
}
@media (min-width: 576px) {

	.tabs > ul {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(173px, 1fr));
		grid-gap: 23px;
		width: 60%;
		grid-auto-rows: max-content;
	}

	.tabs > ul li a {
		flex-wrap: wrap;
	}

	.tabs > ul li a > span {
		width: 100%;
	}

	.tabs > ul li a > span.tab-label {
		width: 100%;
		display: block;
		margin-top: 0.2rem;
	}

	.tabs section {
		width: 33%;
		padding: 0px;
		position: relative;
	}
	.perProf {
	width: 100px;
	height: 100px;
	margin: auto;
}
	
}
@media (min-width: 768px) {

	.tabs-container {
		/* padding: 4rem 4rem; */
	}
}
@media (min-width: 992px) {

	.tabs {
		width: 100%;
	}
}

@media (max-width: 576px) {

    ul.tab-head {
    max-height: 550px;
    overflow: scroll;
    padding-left: 5px;
    padding-right: 4px;
    }
    
    .tabs section {
    width: 125%;
    padding: 0px;
    }
    
    .tabs > ul li a, .tabs > ul li a {
    display: flex;
    flex-direction: column;
    }
    
    .tabs > ul li {
    margin-bottom: 5px;
    }
    div#content .container {
    padding: 0px;
}
.perProf {
    width: 60px;
    height: 60px;
    margin: auto;
}

.tabs > ul li a, .tabs > ul li a {
    padding: 10px 0px;
}

.perName {
    margin: 0px;
}
}

.perName {
    text-align: center;
    line-height: 18px;
    margin-top: 8px;
    width: 100%;
    padding: 6px;
    font-size: 15px;
}

.perProf {
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 202px;
	border: solid;
	background-position: center;
}

.tabs section > img {
    width: 100%;
}

.personelBilgi {
    background: #000000a3;
    padding: 0px 20px;
    position: absolute;
    width: 100%;
    bottom: 0px;
    border-radius: 0px 0px 15px 15px;
    backdrop-filter: blur(5px);
    /* box-shadow: 0px -8px 16px 11px #0000007a; */
}

.personelBilgi h2 {
    margin-bottom: 0px;
}


ul.tab-head::-webkit-scrollbar {
  width: 4px;               /* width of the entire scrollbar */
}

ul.tab-head::-webkit-scrollbar-track {
  /* background: orange; */        /* color of the tracking area */
}

ul.tab-head::-webkit-scrollbar-thumb {
  background-color: #158e95;    /* color of the scroll thumb */
  border-radius: 10px;       /* roundness of the scroll thumb */
  border: 3px solid #ffffff00;  /* creates padding around scroll thumb */
  /* width: 3px; */
}