@font-face{
	font-family: "Mikhak";
  	src: url(../fonts/Mikhak-Medium.ttf);
}
body{
	font-family: "Mikhak", sans-serif;
}
nav{
	padding: 13px 15px;
}
article{
	width: 835px;
}
ul li{
	list-style: none;
	cursor: pointer;
	user-select: none;
}
a{
	text-decoration: none;
}
ul li span{
	user-select: none;
}
.center{
	display: flex;
}
.center ul li:hover {
  padding: 3px 13px;
  background-color: #c34747;
  color: #fff;
  border-radius: 25px;
  user-select: none;
}
.menu{
	display: none;
}
.form-mobile{
	display: none;
}
#signin{
	display: block;
}
.active {
  background-color: #ff4747;
  color: #fff;
  padding: 3px 13px;
}
.btn-circle{
	width: 55px;
	height: 55px;
	border-radius: 50%;
}
.btn-primary, .btn-primary:hover {
  background-image: linear-gradient(#dc4736,#d83725 6%,#ee3f3f);
  filter: none;
  border: 1px solid #bd1e0d;
}
.bodyModelai{
	width: 750px;
	height: fit-content;
/*	overflow-x: scroll;*/
}
.bodycards{
	display: flex;
}
.bodymodels{
	transform-style: preserve-3d;
	perspective: 500px;
	justify-content: center;
}
.tabelmodel{
	justify-content: center;
}
.bodymodels .item{
	background-color: #222;
	color: #fff;
	border-radius: 10px;
	padding: 5px;
	position: absolute;
	width: 210px;
	height: auto;
	transition: 0.5s;
	transform-origin: bottom;
	user-select: none;
	box-shadow: 0 0 50px 1px rgba(0, 0, 0, 0.2);
}
.bodymodels .item:nth-child(1){
	transform: translate3d(-250px, 0px, 0px) scale(0.8) rotateY(25deg);
	z-index: 1;
} 
.bodymodels .item:nth-child(2){
	transform: translate3d(-250px, 0px, 0px) scale(0.8) rotateY(25deg);
	z-index: 2;
} 
.bodymodels .item:nth-child(3){
	transform: translate3d(-150px, 0px, 0px) scale(0.9) rotateY(15deg);
	z-index: 3;
} 
.bodymodels .item:nth-child(4){
	transform: translate3d(0px, 0px, 0px) scale(1) rotateY(0deg);
	z-index: 4;
} 
.bodymodels .item:nth-child(5){
	transform: translate3d(150px, 0px, 0px) scale(0.9) rotateY(-15deg);
	z-index: 3;
} 
.bodymodels .item:nth-child(6){
	transform: translate3d(250px, 0px, 0px) scale(0.8) rotateY(-25deg);
	z-index: -1;
}
.item .img{
	justify-content: center;
	display: grid;
	align-items: center;
}
.item .text{
	text-align: center;
}
.item .title{
	text-align: center;
}
.buttons{
	display: flex;
	bottom: 75px;
	gap: 20px;
}
.buttons span{
	position: relative;
	width: 50px;
	height: 50px;
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	justify-content: center;
	opacity: 0.5;
}
.buttons span:hover{
	opacity: 1;
}
.buttons span:before{
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	rotate: -45deg;
}
.page{
	width: 750px;
	height: 615px;
	margin: 0 5px;
}
.sidebar{
	height: 615px;
	width: 350px;
	right: 18px;
	position: absolute;
	top: 99px;
}
.buttons span:last-child::before{
	content: '';
	position: absolute;
	top: 20px;
	left: initial;
	right: 20px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	rotate: 135deg;
}
.navigationBottom{
	position: absolute;
	bottom: 0;
}
.pageabout{
	max-width: 1050px;
	min-width: 250px;
}
.form-link {
  z-index: 2;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 400px;
  padding: 8px;
  align-items: center;
  display: grid;
  justify-content: center;
}
.form-link ul{
	width: 100%;
}
.form-link ul li{
	width: 100%;
}
.form-mobile {
  min-width: 380px;
  right: 0;
  left: auto;
  direction: rtl;
  height: 100%;
  max-width: 500px;
  padding: 15px 10px;
}
.dark{
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
}
#gomenu{
	display: none;
}
@media screen and (max-width: 500px){
	.page{
		width: auto;
	}
	.center{
		display: none;
	}
	article{
		width: auto;
		padding: 5px;
	}
	.bodyModelai{
		width: auto;
	}
	.bodycards{
		display: block;
	}
	.menu{
		display: block;
	}
	.form-mobile{
		display: block;
	}
	#signin{
		display: none;
	}
	.form-mobile, .sidebar{
		display: none;
	}
	.sidebar{
		display: block;
	  margin:0 13px;
	  width: -moz-available;
	  top: 83px;
	}
	#gomenu{
		display: inline;
	}
}