/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.navbar-collapse {
	padding: 0px;
	}
	.nav > li > a {
		padding: 0 8px;
		line-height: 60px;
		font-size: 16px;
		color: #FFF !important;
		text-transform: uppercase;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.navbar-collapse {
	padding: 0px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	body {
		font-family: "MyriadSetProText", sans-serif;
		font-size: 16px;
	}
	.mainheader {
    	padding: 40px 0;
	}
	.page-head__title {
		padding: 10px 15px;
		text-align: left;
	}
	.textcontent {
	    padding: 65px 15px 65px 15px;
	}
	.navbar-collapse {
	padding: 15px;
	}
	.table-bordered {
	text-align: center;
	font-size: 12px;
	outline: 1px solid #6d6e71 !important;
	}
	.mainfooter-contacts__list {
		background: none;
		text-align: center;
		padding: 0 0 20px 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) {

}