/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.section_content .s1_bottom_tri{
		background-size: cover;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.info_item {
		margin: 40px 0;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.info_item {
		max-width: 100%;
		text-align: center;
	}
	.info_item_wrap_bot {
		padding-top: 0;
	}	
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 479px) {
	header {
		background-image: url(../img/logo.png);
		background-repeat: no-repeat;
		-webkit-background-size: 300px;
		background-size: 300px;
		min-height: 450px;
	}
	.head h1 {
		font-size: 30px;
	}
	.tel_top {
		margin-top: 280px;
	}
	.tel_top ul {
		font-size: 22px;
	}
}

/* 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) {

}