/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.top-header nav a {
		padding-left: 7px;
		padding-right: 7px;
	}

	.tel .fa {
		display: none;
	}

	.tel {
		font-size: 15px;
	}

	.dropdown {
		display: none;
	}

	.slidersubheader {
		font-size: 26px;
		margin-bottom: 40px;
	}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.logo {
		margin: 0;
		padding: 0;
	}

	.logo .logotype {
		max-width: 92%;
		margin: 0;
		padding-top: 4px;
	}

	.top-header nav {
		display: none;
	}

	.dropdown {
		display: flex;
	}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.logo .logotype {
		max-width: 75%;
		padding: 5px 0;
	}

	.slide-results .row .col-md-4 {
		justify-content: center;
		align-items: center;
	}

	.slide-results .slider-content-image img {
		width: 400px;
	}

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.tel {
		font-size: 12px;
	}
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
	.tel {
		display: none;
	}
}


/*==========  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) {
	.dropdown {
		display: none;
	}
}