/* CSS reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
:focus {
	outline: 0;
}
button {
	cursor:pointer;
}
/* end CSS reset */

:root {
	--colorPalette1: #f7972e;
	--colorPalette2: #4e3969;
	--colorPalette3: #7b69a2;
	--text-color: #171c2a;
}

body {
	font: 400 16px/25px "Montserrat", sans-serif;
	color: var(--text-color);
	line-height: 1.75;
	-webkit-tap-highlight-color: transparent;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: var(--text-color);
	opacity: 1;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	transition: opacity .2s ease-in-out;
}

a:hover {
	opacity: .7;
}

p {
	margin: 0 0 30px;
}

.gz-page {
	position: relative;
	display: flex;
	min-height: 100vh;
	max-width: 100%;
	flex-direction: column;
	background-color: #f6f5f3;
}

.gz-sitewidth {
	width: 90vw;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	box-sizing: border-box;
}

.gz-fullwidth {
	width: 100%;
	max-width: 100%;
	padding: 0;
	box-sizing: border-box;
}

.gz-fullwidth .gz-inner-wrapper {
	width: 90vw;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* ICONS */
.gz-icon {
	position:relative;
	font-size:0;
	display:inline-block;
	vertical-align:middle;
}
.gz-icon svg {
	display:block;
	width:100%;
}
[class^='gz-icon-arrow'],
[class*=' gz-icon-arrow'] {
	border: solid black;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 12%;
}
.gz-icon-arrow-orange {
	border-color:var(--colorPalette1);
}
.gz-icon-arrow-green{
	border-color:#88ba35;
}
.gz-icon-arrow-right {
	right:2px;
	transform: rotate(-45deg);
}
.gz-icon-arrow-left {
	left:2px;
	transform: rotate(135deg);
}
.gz-icon-close {
	width:100%;
	height:100%;
	transform: rotate(-225deg);
}
.gz-icon-close:before,
.gz-icon-close:after {
	content: "";
	position: absolute;
	background-color: #000000;
	top: 50%;
}
.gz-icon-close-white:before,
.gz-icon-close-white:after {
	background-color: #ffffff;
}
.gz-icon-close-grey:before,
.gz-icon-close-grey:after {
	background-color: var(--text-color);
}
.gz-icon-close:before {
	left: 50%;
	width: 2px;
	height: 100%;
	margin-left: -1px;
	margin-top:-50%;
}
.gz-icon-close:after {
	left: 50%;
	width: 100%;
	height: 2px;
	margin-top: -1px;
	margin-left:-50%;
}

/* UTILS */
.gz-uppercase {
	text-transform: uppercase;
}

.gz-text-center {
	text-align:center;
}

.gz-align-center {
	align-items: center;
}

.gz-medium-text {
	font-size: 18px;
}

.gz-mBottom1x {
	margin-bottom: 10px;
}

.gz-mBottom2x {
	margin-bottom: 20px;
}

.gz-mBottom3x {
	margin-bottom: 30px;
}

.gz-mBottom4x {
	margin-bottom: 40px;
}

.gz-mBottom5x {
	margin-bottom: 50px;
}

.gz-mTop2x {
	margin-top: 20px;
}

.gz-mTop3x {
	margin-top: 30px;
}

.gz-mTop5x {
	margin-top: 50px;
}

.gz-pTop2x {
	padding-top: 20px;
}
.gz-pTop3x {
	padding-top: 30px;
}

.gz-pTop4x {
	padding-top: 40px;
}

.gz-pTop5x {
	padding-top: 50px;
}

.gz-pBottom2x {
	padding-bottom: 20px;
}

.gz-pBottom3x {
	padding-bottom: 30px;
}

.gz-pBottom5x {
	padding-bottom: 50px;
}

.gz-noMargin {
	margin:0;
}

.gz-hide-mobile {
	display:none;
}

@media screen and (min-width: 1000px) {
	.gz-hide-mobile {
		display:inline-block;
	}
}

@media screen and (min-width: 1000px) {
	.gz-hide-desktop {
		display: none!important;
	}
}

/*** ************ ***/
/*** GZ COMMUNITY ***/
/*** ************ ***/

img {
	max-width: 100%;
	height: auto;
}

img[loading="lazy"] {
	animation: fimg-FadeIn 2.5s;
}

@keyframes fimg-FadeIn {
	from	{ opacity: 0; }
	to		{ opacity: 1; }
}

strong {
	font-weight: 700;
}

.gz-description a {
	color: #615c5c;
}

.gz-category > span {
	display: none;
}

.gz-category a {
	text-transform: none;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
}

@media only screen and (min-width: 1000px) {
	.gz-category > span {
	display: inline-block;
	color: #a8a7a6;
	font-size: 14px;
	font-style: italic;
	text-transform: none;
	line-height: 1.25;
	font-weight: 400;
	margin-bottom: 5px;
	}
}

/* Header */

.gz-header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: transparent;
	height: 70px;
	padding: 0 5vw;
	width: 100%;
	background-color: #fff;
	box-sizing: border-box;
	z-index: 10;
}

.gz-blog-logo {
	position: relative;
	width: 128px;
	height: 52px;
	background: url('../images/gzBlogLogo.svg') 0 0 no-repeat;
	background-size: 100% 100%;
	margin: 0;
	z-index: 20;
}

.gz-blog-logo a {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -9999em;
}

.gz-blog-nav {
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	width: 100%;
	left: 0;
	top: 0;
	padding: 90px 0 20px;
	transform: translateY(-30px);
	transition: transform .3s ease, opacity .3s ease, z-index .3s ease;
	background-color: var(--colorPalette3);
}

.gz-blog-nav ul {
	width: 90vw;
	margin: auto;
	padding: 0;
}

.gz-blog-nav li {
	display: block;
	padding: 0 5vw;
	margin: 0 0 10px 0;
}

.gz-blog-nav li a {
	line-height: 40px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--text-color);
}

.gz-blog-nav .gz-login-button,
.gz-login-button {
	position: relative;
	display: inline-block;
	margin: 10px 0 0;
	padding: 4px 24px 4px 44px;
	background-color: #ffffff;
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 14px;
	line-height: 26px;
	font-weight: 600;
	border-radius: 30px;
	border: 1px solid #d3cbc3;
}

.gz-login-button .gz-icon {
	position: absolute;
	width: 20px;
	text-align: center;
	left: 20px;
	top: 6px;
}

.gz-login-button svg {
	stroke: var(--text-color);
}

.gz-blog-actions {
	display: none;
}

.by-altervista {
	display: none;
	width: 172px;
	height: 32px;
	background: url('../images/logo-by-altervista.svg') 0 0 no-repeat;
	background-size: 100% 100%;
}

.by-altervista a {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -9999em;
}

.gz-blog-hamburger {
	position: relative;
	order: 2;
	width: 30px;
	height: 25px;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	color: var(--text-color);
	box-sizing: border-box;
	z-index: 20;
	transition: top .3s ease-out .1s, opacity .2s ease-out .2s;
}

.gz-blog-hamburger:before,
.gz-blog-hamburger:after {
	position: absolute;
	content: '';
	height: 2px;
	width: 100%;
	display: block;
	background-color: currentColor;
	transform: rotate(0deg);
	transform-origin: center center;
	transition: transform .3s ease-in-out, top .3s ease-in-out .3s;
}

.gz-blog-hamburger:before {
	top: 0;
}

.gz-blog-hamburger:after {
	top: 8px;
}

.gz-blog-hamburger span:after {
	content: 'MENU';
	position: absolute;
	font-family: sans-serif;
	font-size: 0.563rem;
	letter-spacing: 0.1rem;
	color: currentColor;
	top: 11px;
	left: 0;
	right: 0;
	line-height: 20px;
	text-align: left;
	display: block;
	opacity: 1;
	transition: all .3s ease-in-out .3s;
}

.gz-blog-hero {
	background-color: #fff;
}

.gz-mobile-menu-open .gz-blog-logo,
.gz-blog-hero .gz-blog-logo {
	background-image: url('../images/gzBlogLogo_w.svg');
}

.gz-mobile-menu-open .gz-login-button,
.gz-blog-hero .gz-login-button {
	color: #fff;
	border-color: #fff;
	background-color: transparent;
}

.gz-mobile-menu-open .gz-login-button svg,
.gz-blog-hero .gz-login-button svg {
	stroke: #fff;
}

.gz-mobile-menu-open .gz-blog-hamburger,
.gz-mobile-menu-open .gz-blog-nav li a,
.gz-blog-hero .gz-blog-hamburger,
.gz-blog-hero .gz-blog-nav li a {
	color: #fff;
}

.gz-blog-hero .gz-header {
	position: absolute;
	top: 0;
	background-color: transparent;
}

.gz-blog-hero .gz-footer {
	border-top: 0;
}

/* Mobile Navigation */

body.gz-mobile-menu-open {
	overflow: hidden;
}

.gz-mobile-menu-open .gz-blog-hamburger:before,
.gz-mobile-menu-open .gz-blog-hamburger:after {
	transition: top .3s ease-in-out, transform .3s ease-in-out .3s;
}

.gz-mobile-menu-open .gz-blog-hamburger:before {
	transform: rotate(-135deg);
	top: 12px;
}

.gz-mobile-menu-open .gz-blog-hamburger:after {
	transform: rotate(135deg);
	top: 12px;
}

.gz-mobile-menu-open .gz-blog-hamburger span:after {
	top: 0;
	opacity: 0;
	transition-delay: 0s;
}

.gz-blog-nav.active {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	z-index: 10;
	height: 100vh;
}

/* Call to action */

.gz-call-action {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30vw 5vw;
	color: #fff;
}

.gz-call-action:before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.25) 100%);
	opacity: 0.8;
	z-index: 3;
}

.gz-call-action > .gz-cover-image {
	margin: 0;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 2;
}
.gz-call-action > * {
	position: relative;
	z-index: 5;
}

.gz-call-action h1 {
	font-size: 2rem;
	font-weight: 800;
	text-align: center;
	margin: 20px auto;
	padding: 0;
	color: #fff;
	line-height: 1.25;
}

.gz-call-action p {
	font-size: 18px;
	text-align: center;
	margin: 0 auto 30px;
	max-width: 540px;
	line-height: 1.5;
}

.gz-call-action p:last-child {
	margin-bottom: 0;
}

.gz-button {
	display: inline-block;
	color: #fff;
	font-size: 14px;
	line-height: 32px;
	padding: 6px 30px;
	font-weight: 600;
	letter-spacing: 1px;
	background-color: var(--colorPalette1);
	text-transform: uppercase;
	border-radius: 25px;
}

/* Home */

.gz-heading {
	position: relative;
	font-size: 32px;
	line-height: 1.25;
	font-weight: 800;
	margin: 0 auto 30px;
	padding: 0;
}

.gz-medium-heading {
	position: relative;
	font-size: 28px;
	line-height: 1.25;
	font-weight: 800;
	margin: 0 auto 30px;
	padding: 0;
}

.gz-small-heading {
	font-size: 16px;
	text-transform: uppercase;;
	font-weight: 600;
	color: var(--colorPalette1);
	margin: 0 0 10px;
	padding: 0;
	line-height: 1.5;
}

.gz-wrapper {
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
}

.gz-elem {
	box-sizing: border-box;
}

.gz-ele > *:first-child {
	margin-top: 0;
}

.gz-ele > *:last-child {
	margin-bottom: 0;
}

.gz-sep {
	margin: 30px auto;
	height: 1px;
	background-color: rgba(78,57,105,.2);
	border: 0;
}

.gz-image {
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.gz-image:after {
	content: "";
	display: block;
	padding-top: 62.5%;
	width: 100%;
}

.gz-image img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	object-fit: cover;
	object-position: center;
}

.gz-image a {
	display: block;
}

.aspect-ratio-1x1:after {
	padding-top: 100%;
}

.aspect-ratio-5x4:after {
	padding-top: 80%;
}

.aspect-ratio-4x3:after {
	padding-top: 75%;
}

.aspect-ratio-3x2:after {
	padding-top: 66.66%;
}

.aspect-ratio-2x3:after {
	padding-top: 150%;
}

.aspect-ratio-3x4:after {
	padding-top: 133.33%;
}

.aspect-ratio-4x5:after {
	padding-top: 125%;
}

.gz-columns {
	display: flex;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	flex-wrap: wrap;
	gap: 30px;
}

.gz-column {
	flex-grow: 1;
	min-width: 0;
	overflow-wrap: break-word;
	flex-basis: 100%;
}

.gz-inner-wrapper > *:first-child {
	margin-top: 0;
}

.gz-inner-wrapper > *:last-child {
	margin-bottom: 0;
}

.gz-has-separator {
	padding-bottom: 30px;
}

.gz-has-separator:after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	height: 3px;
	width: 120px;
	border-radius: 3px;
	background-color: var(--colorPalette1);
}

.gz-disclaimer {
	color: var(--text-color);
	font-size: 14px;
	line-height: 1.875rem;
	font-weight: 400;
	background-color: #f6f5f3;
	padding-top: 20px;
	padding-bottom: 20px;
}

.gz-disclaimer a {
	text-decoration: underline;
}

.gz-disclaimer p {
	margin: auto;
}

.gz-seo-intro .gz-inner-wrapper > *,
.gz-support .gz-inner-wrapper > * {
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

.gz-media-text {
	padding-top: 0;
	padding-bottom: 0;
}

.gz-media-right .gz-image {
	filter: drop-shadow(20px -20px 0 #f6f2f9);
}

.gz-media-left .gz-image {
	filter: drop-shadow(-20px -20px 0 #f6f2f9);
}

.gz-media-text .gz-inner-wrapper {
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto;
}

.gz-media-text .gz-inner-wrapper > * {
	box-sizing: border-box;
	padding: 30px;
}

.gz-seo-features .gz-columns {
	gap: 0;
}

.gz-seo-features .gz-columns > *:first-child .gz-elem{
	padding: 40px 30px;
	background-color: #f6f2f9;
}

.gz-seo-features ul {
	margin: 0 0 30px;
}

.gz-seo-features ul li {
	position: relative;
	padding: 0 0 0 32px;
}

.gz-seo-features ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url('data:image/svg+xml,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><path d="M10.9,22c-3.6,0-7.1-1.8-9.1-5.1c-2.7-4.2-2.3-9.3,0.9-13.1C5.8,0.1,11-1,15.5,1C16,1.2,16.2,1.8,16,2.3 c-0.2,0.5-0.8,0.7-1.3,0.5C11,1.2,6.7,2.1,4.2,5.1c-2.6,3.1-2.9,7.3-0.7,10.7c2.2,3.4,6.2,4.9,10.1,3.8C17.4,18.5,20,15,20,11v-0.9 c0-0.6,0.4-1,1-1s1,0.4,1,1V11c0,4.9-3.2,9.1-7.9,10.6C13,21.9,12,22,10.9,22z"/><path d="M11,14c-0.3,0-0.5-0.1-0.7-0.3l-3-3c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l2.3,2.3l9.3-9.3c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4 l-10,10C11.5,13.9,11.3,14,11,14z"/></svg>');
	mask-image: url('data:image/svg+xml,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><path d="M10.9,22c-3.6,0-7.1-1.8-9.1-5.1c-2.7-4.2-2.3-9.3,0.9-13.1C5.8,0.1,11-1,15.5,1C16,1.2,16.2,1.8,16,2.3 c-0.2,0.5-0.8,0.7-1.3,0.5C11,1.2,6.7,2.1,4.2,5.1c-2.6,3.1-2.9,7.3-0.7,10.7c2.2,3.4,6.2,4.9,10.1,3.8C17.4,18.5,20,15,20,11v-0.9 c0-0.6,0.4-1,1-1s1,0.4,1,1V11c0,4.9-3.2,9.1-7.9,10.6C13,21.9,12,22,10.9,22z"/><path d="M11,14c-0.3,0-0.5-0.1-0.7-0.3l-3-3c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l2.3,2.3l9.3-9.3c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4 l-10,10C11.5,13.9,11.3,14,11,14z"/></svg>');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-color: var(--colorPalette1);
}

.gz-seo-features ul li:not(:last-child) {
	margin-bottom: 20px;
}

.gz-seo-features .gz-medium-heading {
	color: var(--colorPalette2);
}

.gz-support {
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
	margin-top: 30px;
	margin-bottom: 30px;
	background-color: var(--colorPalette3);
	overflow: hidden;
}

.gz-support .gz-heading,
.gz-support p {
	color: #fff;
}

.gz-support:before,
.gz-support:after {
	content: "";
	position: absolute;
	top: -60px;
	width: 180px;
	height: 120px;
	background-image: url('../images/community_pattern.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: .5;
	z-index: 2;
}

.gz-support:before {
	left: -60px;
}

.gz-support:after {
	right: -60px;
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

/* Iframe */

.iframe-container {
	margin: auto;
	background-color: #fff;
	width: 100%;
	text-align: center;
	border-radius: 3px;
}

.iframe-container iframe {
	margin: auto;
	border-radius: inherit;
}

.gz-feedback-message {
	width: 100%;
	background-color: #fff;
	padding: 20px;
	border-radius: 3px;
	box-sizing: border-box;
}

/* Social */

.social-list {
	background-color: #fff;
	margin: 0;
	padding: 20px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.social-list li {
	display: block;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(78,57,105,.2);
}

.social-list > li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.social-row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.social-icon {
	display: block;
	line-height: 1.25;
}

.social-desc {
	color: var(--text-color);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1.25;
	text-transform: uppercase;
}

.social-list figure {
	border-radius: 35px;
	height: 68px;
	float: left;
	margin-right: 10px;
	overflow: hidden;
	width: 68px;
}

/* Layout */

.grid {
	display: grid;
	grid-template-columns: 100%;
	justify-content: center;
	width: 100%;
	grid-gap: 20px 0;
}

.grid-xs-2-col {
	grid-template-columns: 1fr 1fr;
	grid-template-columns: repeat(2,minmax(0,1fr));
}

/* Footer */

.gz-footer {
	background-color: #fff;
	padding: 0 0 40px 0;
	margin-top: 50px;
}

.footer-credits {
	clear: both;
	margin: auto;
	font-size: 12px;
	color: var(--colorPalette2);
	text-align: center;
	line-height: 1.5;
	font-weight: 400;
}

.footer-links {
	font-size: 14px;
	line-height: 1.5;
}

#footer-notice {
	max-width: 1000px;
	margin: 10px auto 0;
	font-size: 12px;
	color: var(--colorPalette2);
	text-align: center;
	line-height: 1.5;
	font-weight: 400;
}

.altervista-logo {
	text-align: center;
	margin: 0 auto 30px;
}

.altervista-logo a {
	display: inline-block;
	line-height: 1;
}

.altervista-logo img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.footer-links {
	margin: 0 auto 30px;
}

.footer-title {
	margin: 10px 0;
	font-size: 1em;
	font-weight: 600;
	line-height: 1.5;
	color: var(--colorPalette2);
}

.footer-nav {
	list-style-type: none;
	font-size: 1em;
	padding: 0;
	margin: 0;
	color: var(--colorPalette2);
}

.footer-nav a {
	color: inherit;
}

.footer-nav a:hover {
	color: inherit;
	text-decoration: underline;
}

.footer-nav li {
	margin: 0 0 0.5em 0;
	padding: 0;
}

/* Responsive */

@media screen and (min-width: 720px) {
	/* Layout */
	.grid-2-col,
	.grid-3-col,
	.grid-4-col {
		grid-template-columns: 1fr 1fr;
		grid-template-columns: repeat(2,minmax(0,1fr));
		grid-gap: 30px;
	}
	/* Call to action */
	.gz-call-action {
		padding-top: 15vw;
		padding-bottom: 15vw;
	}
	/* Home */
	.gz-wrapper {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.gz-columns {
		flex-wrap: nowrap;
	}
	.gz-column  {
		flex-basis: 0;
		flex-grow: 1;
	}
	.gz-media-text {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.gz-media-text .gz-inner-wrapper {
		grid-template-columns: 50% 1fr;
	}
	.gz-media-right .gz-inner-wrapper > *:nth-child(2) {
		grid-column: 1;
		grid-row: 1;
	}
	.gz-media-right .gz-inner-wrapper > *:nth-child(1) {
		grid-column: 2;
		grid-row: 1;
	}
	.gz-seo-features .gz-columns > *:nth-child(1) {
		flex-basis: 62%;
	}
	.gz-seo-features .gz-columns > *:nth-child(2) {
		flex-basis: 38%;
	}
	.gz-media-right .gz-image {
		filter: drop-shadow(40px -40px 0 #f5f2f8);
	}
	.gz-media-left .gz-image {
		filter: drop-shadow(-40px -40px 0 #f5f2f8);
	}
	.gz-support {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.gz-support:before,
	.gz-support:after {
		width: 420px;
		height: 280px;
	}
	.gz-support:before,
	.gz-support:after {
		top: -120px;
	}
	.gz-support:before {
		left: -120px;
	}
	.gz-support:after {
		right: -120px;
	}
}

@media screen and (min-width: 1000px) {
	.gz-sitewidth,
	.gz-fullwidth .gz-inner-wrapper {
		max-width: 1200px;
		width: auto;
		padding-left: 30px;
		padding-right: 30px;
		transition: max-width .3s;
	}
	.gz-medium-text {
		font-size: 21px;
	}
	/* Layout */
	.grid-3-col {
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-columns: repeat(3,minmax(0,1fr));
	}
	.grid-4-col {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-template-columns: repeat(4,minmax(0,1fr));
	}
	/* Header */
	.gz-blog-hamburger,
	.gz-blog-nav ul > li:last-child {
		display: none;
	}
	.gz-header {
		height: 100px;
		padding: 0 30px;
		align-items: start;
	}
	.gz-blog-logo {
		margin-top: 25px;
	}
	.gz-blog-nav {
		display: block;
		position: relative;
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
		z-index: unset;
		transition: none;
		background-color: transparent;
		top: 0;
		padding: 40px 0 0;
		margin: 0 30px;
		white-space: nowrap;
		flex: 1;
	}
	.gz-blog-nav ul {
		width: auto;
		margin: 0;
	}
	.gz-blog-nav li {
		display: inline-block;
		position: relative;
		padding: 0;
		margin: 0 20px;
	}
	.gz-blog-nav li a {
		font-size: 14px;
	}
	.gz-blog-actions {
		display: block;
		margin-top: 40px;
	}
	.gz-login-button {
		margin: 0;
	}
	.by-altervista {
		display: block;
		margin: 40px 30px 0 0;
	}
	.gz-blog-hero .by-altervista {
		background-image: url('../images/logo-by-altervista-white.svg');
	}
	.gz-feedback-message {
		padding: 30px;
	}
	/* Home */
	.gz-seo-features .gz-columns > *:first-child .gz-elem {
		padding: 40px 120px 40px 40px;
	}
	.gz-seo-features .gz-columns > *:last-child .gz-elem {
		margin: 0px 0px 0px -100px;
		padding: 40px 0px 40px 40px;
	}
}

@media screen and (min-width: 1200px) {
	/* Layout */
	.grid-4-col {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-template-columns: repeat(4,minmax(0,1fr));
	}
	/* Call to action */
	.gz-call-action {
		padding-top: 10vw;
		padding-bottom: 10vw;
	}
	.gz-call-action h1 {
		font-size: 48px;
	}
	.gz-call-action p {
		font-size: 21px;
	}
	.gz-action-button {
		line-height: 38px;
		padding-left: 50px;
		padding-right: 50px;
	}
	/* Home */
	.gz-heading {
		font-size: 48px;
	}
	.gz-medium-heading {
		font-size: 36px;
	}
	.gz-columns {
		grid-gap: 40px 60px;
	}
}
