


/*header*/

.header .nav-menu-first{
	padding: 0 15px;
}
.header .menu-first > .menu-item-first{
	display: inline-block;
	margin-left: 30px;
	margin-right: 15px;
	position: relative;
}
.header .menu-first > .menu-item-first > a{
	display: block;
	padding: 12px 0;
	list-style: none;
	text-decoration: none;

	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;

	font-family: 'Montserrat';
	font-style: normal;
		
	line-height: 22px;
	text-align: center;

	color: #FFFFFF;

}
.header .menu-first > .menu-item-first > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px;
	pointer-events: none;
}
.header .menu-first > .menu-item-first > a .plus:before,
.header .menu-first > .menu-item-first > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu-first > .menu-item-first:hover > a .plus:before,
.header .menu-first > .menu-item-first:hover > a .plus:after{
   background-color: #DB2E20;
}
.header .menu-first > .menu-item-first > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);
}
.header .menu-first > .menu-item-first > .sub-menu-first > .menu-item-first > a:hover,
.header .menu-first > .menu-item-first:hover > a{
	color: #DB2E20;
}
.header .menu-first > .menu-item-first > .sub-menu-first{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #DB2E20;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
	margin-top: 10px;
}
@media(min-width: 992px){
.header .menu-first > .menu-item-has-children-first:hover > .sub-menu-first{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }

 /*.header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);
 }*/

}

.header .menu-first > .menu-item-first > .sub-menu-first > .menu-item-first{
	display: block;
}
.header .menu-first > .menu-item-first > .sub-menu-first > .menu-item-first > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;

}

.header .close-nav-menu-first{
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu-first img{
	width: 16px;
}




.container-first{
	display: flex;
	justify-content: space-around;
	max-width: 1170px;
	margin:auto;
}
.container{
	max-width: 1170px;
	margin:auto;
}

ul{
	list-style: none;
	margin:0;
	padding:0;
}

/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu-fisrt{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open-fisrt{
		visibility: visible;
		right: 0px;
	}
	.header .menu-fisrt > .menu-item-fisrt{
		display: block;
		margin:0;
	}
	.header .menu-fisrt > .menu-item-has-children-fisrt > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu-fisrt > .menu-item-fisrt > a{
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu-fisrt > .menu-item:first-child > a{
	    border-top: 1px solid #333333;
	}
	.header .menu-fisrt > .menu-item-fisrt > a .plus:before,
	.header .menu-fisrt > .menu-item-fisrt > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu-fisrt > .menu-item-has-children-fisrt.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu-fisrt > .menu-item-fisrt > .sub-menu-fisrt{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item-fisrt > .sub-menu-fisrt > .menu-item-fisrt > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu-fisrt,
	.header .open-nav-menu{
		display: flex;
	}
}