/* header */
.header {
  width: 100%;
  z-index: 3;
  margin-bottom: 20px;
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.header li a {
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid #CCC;
  text-decoration: none;
	color: #666;
}
.header li a:hover, .header li a.selected {
	color: #45aaff;
}
/*.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}*/

/* menu */
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}
/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: left;
  padding: 8px 10px 8px 0;
  position: relative;
  user-select: none;
}
.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
	float: left;
  margin-right: 16px;
}
.urunmenubaslik {
	color: #B73A8D;
	font-size: 16px;
	position: absolute;
	margin-top: -9px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}
.header .menu-icon .navicon:before {
  top: 5px;
}
.header .menu-icon .navicon:after {
  top: -5px;
}
/* menu btn */
.header .menu-btn {
  display: none;
}
.header .menu-btn:checked ~ .menu {
  max-height: 480px;
}
.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
/* 48em = 768px */
@media (min-width: 768px) {
  .header li a {
    padding: 8px 0;
  }
  .header .menu {
    display: table;
		width: 100%;
  }
  .header .menu-icon {
    display: none;
  }
}
@media (min-width: 1025px) {
	.header ul {
		/*margin: 0 0 0 100px;*/
		padding: 0;
		list-style: none;
		overflow: hidden;
	}
}
@media (max-width: 768px) {
	.header ul {
		margin: 0;
		padding: 0;
		list-style: none;
		overflow: hidden;
	}
}
@media (min-width: 48em) {
  .section-split a {
    width: 50%;
  }
}