@media (max-width: 767px) {

	.footer-copyright__inner {
		flex-direction: column;
		align-items: center;
	}

	.main-footer__link-groups {
		flex-direction: column;
		padding-top: 35px;
	}

	.footer-links__list {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		height: 0;
		overflow: hidden;
		transition: all 350ms ease-in-out;
	}

	.footer-links__list--is-shown {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
		height: auto;
	}

	.footer-links__title {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.footer-links__title:after {
		position: relative;
		top: 0;
		content: '';
		display: inline-block;
		border-bottom: 2px solid #fff;
		border-right: 2px solid #fff;
		rotate: -45deg;
		transition: all 0.35s ease-in-out;
		width: 11px;
		height: 11px;
		margin-left: 8px;
	}

	.footer-links__title--active:after {
		rotate: 45deg;
	}

}

@media (max-width: 1023px) {

	.main-footer__links-container {
		flex-direction: column;
	}

}

@media (min-width: 768px) {

	.main-footer__links-container {
		display: flex;
	}

	.footer-copyright__inner {
		justify-content: space-between;
		max-width: 85%;
	}

}

@media (min-width: 1024px) {

	/*containers*/

	.main-footer__container .main-footer__inner {
		display: grid;
		column-gap: calc(20px + (100 - 20) * ((100vw - 320px) / (1920 - 320)));
		align-items: center;
	}

	.main-footer__container .main-footer__inner .footer-template-2__content {
		max-width: 77%;
	}

	.main-footer__container.footer-variant-1 .main-footer__inner {
		grid-template-columns: 20% auto;
	}

	.main-footer__link-groups {
		flex: 0 0 35%;
	}

	.footer-links.footer-links--13 {
		flex: 0 0 25%;
	}

	/*team*/

	.post-items.post-items--formateurs-footer.posts-items__grid {
		grid-template-columns: repeat(3, 1fr);
	}

}