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

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
.carousel .carousel-block {
	margin: 0 0.2%;
}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
 h2 {
 	font-size: 36px;
 }
 h3 {
 	font-size: 26px;
 }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
.left , .right{
	float: none;
}
img.left {
	display: block;
	margin: 10px auto;
}

.carousel .carousel-block {
	margin: 0 0;
}

}

/* 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) {

}