/*----- HEADER -----*/
.hidden {
	display: none;
}
header{
	background: #FFFFFF;
	box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.12);
	height: 90px;
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	z-index: 11;
}
header .navbar .brand img{
	width: 100%;
	height: 67px;
	object-fit: contain;
}
header .head_txt{
	
	border-radius: 90px;
	background: #FFF8F0;
	margin-bottom: 0;
	padding: 12px 30px;
	display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}
header .head_txt span{
	color: #F29E38;
	font-size: 16px;
	font-weight: 500;
	display: block;
	margin: 0 auto;
	text-align: center;
}
.head_close{display: none;}
header .navbar .social_media {
	display: flex;
	justify-content: center;
	align-items: center;
}
header .navbar li a {
	background: rgba(196, 196, 196, 0.00);
	border: 2px solid #F29E38;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	-webkit-transition: ease-in-out 0.5s;
  	-moz-transition: ease-in-out 0.5s;
  	-o-transition: ease-in-out 0.5s;
  	transition: ease-in-out 0.5s;
}
footer {
    background: #232323;
    padding: 10px 0;
    position: relative;
}
footer p{
	color: #FFF;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
}
footer ul {
	display: block;
	margin: 0 auto;
	text-align: right;
}
footer ul li{
	display: inline-block;
	margin-right: 30px;
	position: relative;
}
footer ul li:last-child{
	margin-right: 0;
}
footer ul li::before{
	background: #F29E38;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: -20px;
	content: '';
}
footer ul li:first-child::before{
	display: none;
}
footer ul li a {
    color: #FFF !important;
    font-size: 14px;
    font-weight: 400;
}
/*----- FOOTER -----*/
@media (max-width: 991px){
	header{padding: 6px 0; height: auto;}
}
@media (max-width: 767px){
	header .head_txt{padding: 10px 10px;position: fixed;top: 5.6em;left: 0;right: 0;border-radius: 0;}
	header .head_txt span{font-size: 13px;}
	.head_close{display: block;}
	header.active-header .head_txt {position: fixed;top: 0;left: 0;right: 0;border-radius: 0;}
	header.header.active-header {z-index: 1;}
	header.active-header .head_txt .head_close{display: block !important;}
}
@media (max-width: 575px){
	header .head_txt span{font-size: 12px !important;}
	footer p, footer ul{text-align: center;}
}