/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.services .right_box li a {
		font-size: 1.1em;
	}
	.services .right_box_none li a {
		font-size: 1.1em;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.video iframe {
		height: 300px;
	}
	nav ul li a {
		font-size: 1.2em;
		padding: 15px 8px;
	}
	nav {
		padding: 0 5%;
	}
	nav ul li {
		margin: 0 1%;
	}
	.head h1 {
		font-size: 3em;
	}
	.head p {
		font-size: 3em;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.head h1 {
		font-size: 1.8em;
		margin-bottom: 20px;
	}
	nav ul li {
		margin: 0 2px;
	}
	nav {
		padding: 0 2%;
	}
	.head p {
		font-size: 1.6em;
	}
	nav ul li a {
		font-size: 0.9em;
		padding: 15px 4px;
	}
	footer .right p {
		font-size: 1.2em;
	}
	footer .left p:first-child {
		font-size: 1.2em;
	}
	footer p {
		font-size: 1em;
	}
	footer p:last-child {
		font-size: 1em;
	}
	footer img {
		width: 20px;
		height: 20px;
	}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.video iframe {
		height: 200px;
	}
	.head h1 {
		font-size: 1.2em;
		margin-bottom: 20px;
		font-weight: bold;
		text-align: center;
	}
	.head p {
		font-size: 1.2em;
		margin-bottom: 5px;
	}
	footer .col-md-12 p {
		font-size: 1.2em;
		font-weight: bold;
		text-align: center;
	}
	footer {
		padding: 20px 0px;
	}
	nav {
		display: none;
	}
	.dropdown {
		display: block;
	}
	.dropdown ul li {
	padding:15px 0;
	margin:0;
	background-color: #2cadea;
	border: 1px solid #ccc;
	text-align: center;
	}
	.dropdown ul li a:hover {
		text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
	}
	.dropdown ul li a {
	padding:15px 0;
	font-weight: bold;
	font-size: 1.5em;
	color: #fff;
	font-family: 'Times New Roman', sans-serif;
	}
}

/* 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) {

}