/* Not small screens */
@media screen and (min-width:768px) {
	.only-mobile {
		display: none !important;
	}
}

/* Small screens */
@media screen and (max-width:768px) {
	.only-desktop {
		display: none !important;
	}

	/* Fonts styles */

	h1,
	.h1 {
		font-size: var(--h2-size)
	}

	h2,
	.h2 {
		font-size: var(--h3-size)
	}

	h3,
	.h3 {
		font-size: var(--h4-size)
	}

	h4,
	.h4 {
		font-size: var(--h5-size)
	}

	h5,
	.h5 {
		font-size: var(--h6-size)
	}

	.page {
		height: unset;
	}

}

/* XS screens */
@media screen and (max-width:400px) {}

/* Large screens */
@media screen and (min-width:1200px) {}

/* XLarge screens */
@media screen and (min-width:1400px) {}

/**/

/**/