/*==========  Non-Mobile First Method  ==========*/

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

}

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

}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
	.j-text-title {
		text-align: center !important;
	}
	/* 	j-advise */
	.j-advise .section-content .row > .small-12:last-child .col-inner {
		text-align: center;
	}
	
	.j-advise .section-content .row > .small-12:last-child .row .col .icon-box {
		display: flex;
    	justify-content: center;
	}
	.j-advise .section-content .row > .small-12:last-child .row .col .icon-box .icon-box-text {
		flex: unset;
	}

	/* j-design */
	.j-design .box .box-image .image-cover {
		padding-top: 56.25% !important;
	}
	
	.j-project .box .box-text {
		width: 100%;
		padding: 20px;
		position: unset;
		left: unset;
		transform: unset;
	}
}

