
/**
 * max-width: 1120
 */
@media (max-width: 1120px) {
}




/**
 * max-width: 960
 */
@media (max-width: 960px) {
	.hero__conteiner {
	    grid-template-columns: 1fr 2fr;
	}

	.hero__projects {
	    display: grid;
	    grid-template-columns: 1fr;
	}

	.hero__project:nth-child(2n) {
	    display: none;
	}


	.hero__project:nth-child(2n-1) {
	    transform: unset;
	}
}




/**
 * max-width: 800
 */
@media (max-width: 800px) {

	.glider {
		--glider-viewport-count: 2;
	}

	.about__container {
	    --columns-count: 1;
	    flex-direction: column;
	    --columns-fraction: 1;
	}

	.about__column:nth-child(2n-1), .about__column:nth-child(2n) {
	    --columns-fraction: calc(1 / var(--columns-count));
	}

	.goals__container {
	    --columns-count: 1;
	}

	.info__container {
	    --columns-count: 2;
	}

	.news__container {
	    --columns-count: 1;
	    flex-wrap: wrap;
	}
}




/**
 * max-width: 640
 */
@media (max-width: 640px) {

	:root {
	    --fz-0: 16px;
	    --fz-1: 32px;
	    --fz-2: var(--fz-1);
	    --fz-3: 24px;
	}

	.hero__conteiner {
	    grid-template-columns: 1fr;
	    grid-template-rows: auto 1fr;
	    /* display: grid; */
	}

	.hero__projects {
	    grid-template-columns: repeat(2, 1fr);
	}

	.info__container {
	    --columns-count: 1;
	}
}




/**
 * max-width: 480
 */
@media (max-width: 480px) {
	.hero__projects {
	    grid-template-columns: 1fr;
	}

	.hero__project:nth-child(3) {
	    display: none;
	}
}




/**
 * max-width: 320
 */
@media (max-width: 320px) {
}