.flex{
	display: flex;
	justify-content: space-between;
	align-items: center; 
}
.tb1{
	display: flex;
	justify-content: center;
	align-items: center; 
}
.flex input{
	box-shadow: none;
	border: 1px solid #3584e8;
	height: 43px;
	border-left: 0px;
	text-align: left;
}
input:focus{
	border-color: #3584e8;
	border-left: 0px;
}
input[type=text]:focus { 
    outline: none;
    border-color: #3584e8;
    border-left: 0px;
 }
input[type=text]::selection{
    border-color: #3584e8;
    border-left: 0px;
}
input[type=text]::-moz-selection{
    border-color: #3584e8;
    border-left: 0px;
}
.flex select{
	border-radius: 5px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	border-color: #3584e8;
	height: 43px;
	border-right: 0px;
	padding-right: 10px;
}
.flex .search-submit{
	background-color: #3584e8;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-color: #3584e8;
	box-shadow: none;
	width: 80px;
	height: 43px;
	color: #fff;
	border: none;
}
form{
	height: 43px;
}

/* nav */
/* Chrome, Safari, Opera */
@-webkit-keyframes navMove {
	0%{height: 0px;}
  100% {height: 320px;}
}

/* Standard syntax */
@keyframes navMove {
		0%{height: 0px;}
    100% {height: 320px;}
}
.nav{
	border-top: 1px solid #e9e9e9;
	z-index: 999;
}
.nav a{
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgb(0 0 0 / 0%);
	overflow: hidden;
	padding: 15px 0px;
	display: block;
	color: #3d3d3d;
	font-size: 16px;
}
.nav a::before{
	content: "";
	position: absolute;
	z-index: -1;
	left: 51%;
	right: 51%;
	bottom: 0;
	background: #ed6f00;
	height: 4px;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.nav a:hover:before, .nav a:focus:before, .nav a:active:before{
	left: 0;
	right: 0;	
}
.nav {
	position: relative;
}
.MenuS{
	background-color: rgb(53, 132, 232 ,.85);
	width: 100%;
	display: none;
	opacity: 1;
	height: auto;
	padding: 15px 0px;
	position: absolute;
	right: 0px;
	left: 0px;
	height: auto;
}
.MenuS a{
	color: #fff;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	
}
.nav .MenuS a:hover:before, .nav .MenuS a:focus:before, .nav .MenuS a:active:before{
	height: 0px;
	left: 51%;
	right: 51%;
}
.MenuS i{
	padding: 10px;
}
.nav li :hover .MenuS{
	display: block;
	transition: 1s height;
	color: #fff;	
	/* -webkit-animation:'navMove' .3s ease-in-out 0s 1 alternate forwards;
	animation:'navMove' .3s ease-in-out 0s 1 alternate forwards; */
}