/* @font-face {
  font-family: iranYekan;
  src: url(fonts/iranyekanwebregular.woff);
} */
body{
	margin: 0;
	padding: 0;
	padding-top: 140px;
}

*{
	font-family: iranYekan;
	box-sizing: border-box;
}

.c-container{
	display: block;
	width: 75%;
	margin: auto;
}
a.logo{
	text-decoration: none;
}
.flag{
	width: 100px;
	height: 80px;
}
.flag img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.c-logo{
	font-size: 48px;
	color: red;
	font-weight: bold;
	color: rgb(6 6 143);
	line-height: 0;
	text-decoration: none;
}
.center{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

header{
	position: fixed;
	display: inline-block;
	width: 100%;
	height: 100px;
	user-select: none;
	box-sizing: border-box;
	padding-top: 15px;
	z-index: 1000;
	top: 0;
}
header .inner-header{
	display: flex;
	justify-content: space-between;
	align-content: center;
}
header .responsive-menu{
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: #FFFFFF;
	z-index: 100;
	right: 0;
	top: 0;
	transform: translate(0,-100%);
	transition: transform .4s;
}
header .responsive-menu.active{
	transform: translate(0,0);
	display: block;
}
header .responsive-menu .exit{
	position: absolute;
	top: 26px;
	right: 35px;
	cursor: pointer;
	opacity: 0;
}
@keyframes exitanimtaion{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
header .responsive-menu.active .exit{
	animation: exitanimtaion .8s;
	opacity: 1;
}
header .responsive-menu ul{
	position: absolute;
	padding: 0;
	margin: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
header .responsive-menu ul li{
	position: relative;
	display: block;
	text-align: center;
	margin: 40px 0;
}
header .responsive-menu ul li:after{
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translate(-50%,-50%);
	content: '';
	display: inline-block;
	width: 100px;
	height: 2px;
	margin-top: 20px;
	/*border-radius: 50%;*/
	background: #A6CE39;
}
header .responsive-menu ul li:last-child:after{
	display: none;
}
header .responsive-menu ul li a{
	font-size: 16px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}
header .menu-toggle{
	/* margin-top: 20px; */
	cursor: pointer;
	display: none;
}
header .header-img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: none;
	user-select: none;
	z-index: -1;
	top: 0;
	right: 0;
	filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.04));
	object-fit: cover!important;
}

header .c-btn{
	float: left;
}
header .logo{
	float: right;
	display: flex;
	align-items: center;
	gap: 24px;
}
header .header-menu{
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 0;
	margin: 0;
	transform: translate(-50%,-50%);
	display: inline-block;
	font-weight: bold;
	font-size: 20px;
}
header .header-menu li{
	display: inline-block;
}
header .header-menu li a{
	border-bottom: 1px solid transparent;
	transition: border .3s;
}
header .header-menu li a:hover{
	border-bottom: 1px solid #000000;
}
header .header-menu li a{
	color: #000000;
	text-decoration: none;
	font-family: PeydaLight;
	margin: 0 20px;
	font-size: 14px;
	padding-bottom: 5px;
}

.c-btn{
	display: inline-block;
	background: #44BCE7;
	color: #FFFFFF;
	padding: 13px 18px;
	text-decoration: none;
	border-radius: 5px;
	transition: box-shadow .2s;
}
.c-btn:hover{
	-webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.46); 
	box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);
}
.c-btn:not(.white-back):hover{
	color: #FFFFFF;
}

section{
	margin-bottom: 24px;
}

section .title{
	position: relative;
	font-size: 32px;
	padding-right: 14px;
	padding-bottom: 24px;
	text-align: center;
}
section .title:before{
	/* content: ''; */
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -20%);
	width: 50px;
	height: 4px;
	background: #A6CE39;
	display: block;
	margin: auto;
	right: unset;

}

.product-list{
	display: flex;
	gap: 8px;
	/* justify-content: space-between; */
	flex-wrap: wrap;
}
.product-list .product{
	display: flex;
	flex-direction: column;
	padding: 8px;
	border-radius: 16px;
	background-color: #FFFFFF;
	border:1px solid #0000001a;
	box-shadow: -6px 0px 25px rgba(0, 0, 0, 0.06);
	width: calc(50% - 8px);
}
.product-list .product .img{
	padding: 8px;
	height: 300px;
}
.product-list .product img{
	border-radius: 16px;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-list .product .info-box{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 20px;
}
.product-list .product .info-box .single-info{
	padding: 4px 8px;
	display: flex;
	width: 100%;
	border-bottom: 1px solid #0000001a;
	justify-content: space-between;
}
.product-list .product .info-box .single-info:last-child{
	border-bottom: unset;
}
.product-list .product .info-box .single-info .inner-title{
	font-weight: bold;
}
.product-list .product .info-box .single-info .value{

}


.contact-section{
	display: flex;
	justify-content: space-between;
}
.contact-section .part{
	margin: 80px 0;
}
.contact-section .part-title{
	position: relative;
}
.contact-section .part-title .part-icon{
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	display: inline-block;
	/*float: left;*/
	width: 50px;
	height: 50px;
	background: #44BCE7;
	border-radius: 50%;
	right: 0;
}
.contact-section .part-title .part-icon img{
	width: 40%;
	object-fit: cover;
	/* filter: invert(1); */
}
.contact-section .part-title .text{
	display: inline-block;
	font-family: yekanBold;
	/*margin-left: 40px;*/
	padding-right: 60px;
	font-size: 32px;
	font-weight: 500;
}
.contact-section .part-title .subtitle{
	position: absolute;
	display: block;
	padding-left: 60px;
	bottom: 0;
}
.contact-section .part-title .subtitle ~ .text{
	margin: 30px 0;
}
.contact-section .part-icon img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.contact-section .part-data{
	display: flex;
	gap: 8px;
}

footer{
	position: relative;
	display: flex;
	width: 100%;
	height: 64px;
	box-shadow: -6px 0px 25px rgba(0, 0, 0, 0.06);
	padding: 25px 0;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
	padding: 0 24px;
	margin-top:24px;
}
footer .social-holder{
	/* display: inline-block; */
	/* position: absolute; */
	/* top: 50%; */
	/* transform: translate(0,-50%); */
}
footer .social-holder .logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);

}
footer .social-holder .social{
	display: inline-block;
	/* margin: 0 4px; */
	transition: filter .3s;
}
footer .social-holder .social:hover{
	filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(87deg) brightness(0%) contrast(0%);
}
footer .copyright{
	float: left;
}

@media screen and (max-width: 1600px) {
	.c-container{
			width: 85%;
	}
}

@media screen and (max-width: 1200px) {
	header .logo{
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.header-menu{
		display: none!important;
	}
	header .menu-toggle{
		display: flex;
		align-items: center;
	}
	.c-logo{
		font-size: 40px;
	}
	header .logo{
		position: static;
		transform: unset;
	}
	header{
		padding-top: 0;
	}
	.copyright{
		display: none;
	}
	footer .logo{
		position: static;
		transform: unset;
	}
}
@media screen and (max-width: 600px) {
	.c-logo{
		font-size: 32px;
	}
	.flag{
		width: 60px;
	}
	header .logo{
		margin-top: 0;
	}
	header .logo .c-logo{
		/* width: 50px; */
	}
	.product-list .product{
		width: calc(100%);
	}
}
