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

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1347px) {
	
}

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

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
	.sect {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	h1 {
		font-size: 20px;
	}
	.main.sect .items {
		margin-top: -15px;
	}
	.main.sect .item {
		font-size: 14px;
		height: auto;
		margin-top: 15px;
	}
	.main.sect .logo .line {
		display: none;
	}
	.main.sect .logo img {
		max-width: 260px;
	}
	.main.sect .logo {
		margin-top: 15px;
		margin-bottom: 15px;
	}
}

@media only screen and (max-width : 575px) {	

}

/*==========  Mobile First Method  ==========*/

@media only screen and (min-width : 576px) {  

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {  	
	.main.sect :nth-child(2n) .item .caption {
		text-align: right;
	}
	.footer.sect .copyright {
	  text-align: left;
	}
	.footer.sect .info {
	  text-align: right;
	}
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {	

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1348px) {
	
}