@import url('https://fonts.googleapis.com/css?family=Beth+Ellen|Cinzel|Comfortaa|Concert+One|Monoton|Roboto|Satisfy|Ultra|Varela+Round|Yellowtail&display=swap');
*{
	font-family: 'Varela Round', sans-serif;
	box-sizing: border-box;
}
  ::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #0d1e30;
}
::-webkit-scrollbar-thumb:hover {
  background: #0d1e30ad;
}
.hiddenDiv{
  display: none;
}
.header{
  height: 60px;
  background: #0d1e30;
  position: sticky;
  top: 0px;
  padding: 0 20px;
  z-index: 600;
}
.header .logo{
  width: 160px;
  max-width: 160px;
  height: 100%;
  display: inline-block;
  float: left;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
}
.header .logo a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  line-height: 60px; /* Doğru yazım */
}

.header .logo a h4{
  margin-top: 20px;
}
.header .menus{
  width: calc(100% - 168px);
  display: inline-block;
  float: left;
}
.header .menus .toggleBtn{
  padding: 0px 17px;
  font-size: 20px;
  color: #fff;
  line-height: 60px;
  cursor: pointer;
  transition: all ease .5s;
  display: none;
}
.header .menus .toggleBtn:hover{
  background: #0000003d;
}

/* menu item styling here */
.myMenu{
  /* background: #ff0; */
}
.myMenu > .mainUl{
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  float: right;
}
.myMenu > .mainUl > li{
  position: relative;
}
.myMenu > .mainUl > li a{
  color: #fff;
  line-height: 60px;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
  margin: 0px 2px;
	position: relative;
  transition: all ease .5s;
}
.myMenu > .mainUl > li a::after{
	content: '';
	height: 2px;
	width: 70%;
	background: #fff;
	display: inline-block;
	position: absolute;
	bottom: 5px;
	left: 15%;
	transform-origin: left;
	transform: rotate(0deg);
	transform: scale(0);
	transition: all ease .5s;
}
.myMenu > .mainUl > li a.active::after{
	transform: scale(1);
}
.myMenu > .mainUl > li a:hover{
	background: #0000003d;
}
.myMenu > .mainUl > li a:hover::after{
	transform: scale(1);
}

.myMenu > .mainUl > li > .submenu{
  display: none;
  position: absolute;
  top: 60px;
  right: 0px;
  padding: 1px;
  z-index: 600;
}
.myMenu > .mainUl > li > .submenu ul{
  display: block;
  list-style: none;
  margin: 0px;
  padding: 5px;
  min-width: 200px;
  max-width: 200px;
  background: #0d1e30;
  border-radius: 5px;
}
.myMenu > .mainUl > li > .submenu a{
  text-decoration: none;
  display: block;
  text-align: center;
  line-height: 20px;
}
.myMenu > .mainUl > li > .submenu a.active{
	background: #0000003d;
}
.myMenu > .mainUl > li > .submenu a::after{
	width: 50%;
	left: 25%;
	bottom: 8px;
}
.myMenu > .mainUl > li:hover > .submenu{
  display: block;
  animation: showSubMenu .8s linear forwards;
}





@media only screen and (max-width: 700px){
  .header .menus .toggleBtn{
    display: inline;
    float: right;
  }
	.myMenu{
	  background: #0d1e30;
		width: 100%;
		border-top: 1px solid #ffffff7a;
		max-width: 350px;
		position: absolute;
		top: 60px;
		left: 0px;
		overflow-y: auto;
		height: calc(100vh - 60px);
		max-height: calc(100vh - 60px);
		transition: all ease .5s;
	}
	.myMenu.hideMenu{
		left: -400px;
	}
	.myMenu .mainUl{
		background: #0d1e30;
		display: block;
		text-align: left;
		float: none;
	}
	.myMenu .mainUl > li{
		display: block;
	}
	.myMenu .mainUl > li a{
		display: block;
		line-height: 35px;
		position: relative;
	}
	.myMenu > .mainUl > li a::after{
		height: 16px;
		width: 16px;
		background: #fff;
		display: inline-block;
		position: absolute;
		top: calc(50% - 8px) ;
		left: calc(0% - 12px) ;
		transform-origin: center;
		transform: rotate(45deg);
		transform: scale(0);
		transition: all ease .5s;
	}
	.myMenu > .mainUl > li a:hover::after{
		transform: scale(1);
		transform: rotate(45deg);
	}
	.myMenu > .mainUl > li a.active{
		background: #0000003d;
	}
	.myMenu > .mainUl > li a.active::after{
		transform: rotate(45deg);
	}
	.myMenu > .mainUl > li > .submenu{
		box-shadow: 0 0 10px #000;
		border: 1px solid #ffffff7d;
		border-radius: 5px;
	}
	.myMenu > .mainUl > li > .submenu a{
	  text-decoration: none;
	  display: block;
	  text-align: center;
		position: relative;
	  line-height: 20px;
		overflow: hidden;
	}
	.myMenu > .mainUl > li > .submenu a::after{
		height: 12px;
		width: 12px;
		background: #fff;
		display: inline-block;
		position: absolute;
		top: calc(50% - 6px) ;
		left: -6px ;
		transform-origin: center;
		transform: rotate(45deg);
		transform: scale(0);
		transition: all ease .5s;
	}
	.myMenu > .mainUl > li > .submenu a:hover::after{
	transform: scale(1);
	transform: rotate(45deg);
	}
	.myMenu > .mainUl > li > .submenu a.active::after{
	transform: scale(1);
	transform: rotate(45deg);
	}
}


@keyframes showSubMenu {
  0%{
    position: absolute;
    opacity: 0;
    top: 200px;
    right: 2px;
  }
  10%{
    position: absolute;
    opacity: .5;
    top: 50px;
    right: 2px;
  }
  20%{
    position: absolute;
    opacity: 1;
    top: 60px;
    right: 2px;
  }
  100%{
    position: absolute;
    opacity: 1;
    top: 60px;
    right: 2px;
  }
}
/* menu item styling here */