/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	/*
	.mcd-menu li a strong, .mcd-menu li a small{
		display: none;
	}
	.mcd-menu li a{
		height: 40px;
	}
	.mcd-menu {
		max-width: 60px;
		width: 100%;
	}
	*/
	.mcd-menu {
		max-width: initial;
		text-align:center;
		    margin-bottom: 2%;
	}
	.mcd-menu li {
		position: relative;
		display: inline-block;
	}
	.mcd-menu li a i, .mcd-menu li a small{
		display: none;
	}
	.mcd-menu ul, .mcd-menu li:hover > ul, .mcd-menu li ul li:hover > ul{display:none;}
	
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.logo{
		text-align:center;
	}
	.menu ul{
		text-align:center;
	}
	.header_bottom h1 {
    color: #fff;
    font-size: 1.5em;
	}
	.mgtop5per {
    margin-top:10%;
	}
	.textCenterXs{
		text-align:center;
	}
	
	.menuClod {
		background: rgba(0, 0, 0, 0.3);
		padding: 2%;
		border-radius: 10px;
		color: #000;
	}
	.menuClod  li a{
		color:#000;
	}
	.menuClod{
		display:none;
	}
	.bigOnMobile {
		text-align: center;
		margin: 8% 0px;
	}
	.bigOnMobile a{
		font-size: 22px;
	}
	
	.grid-form1 {
		padding: 0;
		margin: 0;
	}
		
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}