:root {
    /* DESKTOP GUTTER SIZE */
	--con-gutters: 3.125rem;
}

@media only screen and (1366px >= width >= 1025px) {
	:root {
	  /* LAPTOP GUTTER SIZE*/
		--con-gutters: 2.5rem;
	}
}

@media only screen and (1024px >= width >= 768px) {
	:root {
	  /* TABLET GUTTER SIZE*/
		--con-gutters: 2rem;
	}
}
  
@media only screen and (767px >= width) {
	:root {
	  /* MOBILE GUTTER SIZE*/
		--con-gutters: 1.5rem;
	}
}

.con-gutters {
	padding-left: var(--con-gutters) !important;
	padding-right: var(--con-gutters) !important;
}