@media screen and (min-width:1241px) {


	/* .centered {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	} */

	/* .content-wrapper {
		width: 100%;
		height: 100%;
		color: #fff;
		font-family: Montserrat;
		text-transform: uppercase;
		will-change: transform;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-transition: all 1s cubic-bezier(0.22, 0.44, 0, 1);
		transition: all 1s cubic-bezier(0.22, 0.44, 0, 1);
	} */

	.section {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		animation: .8s cubic-bezier(0.22, 0.44, 0, 1);
		box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
		opacity:1;
		transition:opacity 1s ease;
	}

	.section:nth-child(1) {
		z-index: 10;
	}

	.section:nth-child(2) {
		z-index: 9;
	}

	.section:nth-child(3) {
		z-index: 8;
	}

	.section:nth-child(4) {
		z-index: 7;
	}

	.section.fp-completely.active {
		z-index: 20;
	}

	.fullpage-wrapper:not(.fp-notransition) .section.prev.down {
		animation-name: toup;
		animation-timing-function: cubic-bezier(0.42, 0, 0.52, 1);
	}

	.fullpage-wrapper:not(.fp-notransition) .section.active.up {
		animation-name: fromup;
		animation-timing-function: cubic-bezier(0.42, 0, 0.52, 1);
	}

	.fullpage-wrapper:not(.fp-notransition) .section.active.down {
		animation-name: fromdown;
		animation-timing-function: cubic-bezier(0.42, 0, 0.52, 1);
		z-index: 12;
	}

	.fullpage-wrapper:not(.fp-notransition) .section.next.up {
		animation-name: todown;
		z-index: 12;
		animation-timing-function: cubic-bezier(0.42, 0, 0.52, 1);
	}
	.fp-notransition .section:not(.active){
		animation:none!important;
		opacity:0!important;
	}

	@keyframes fromdown {
		from {
			transform: translateY(50%);
		}

		100% {
			transform: translateY(0%);
		}
	}

	@keyframes toup {
		from {
			z-index: 20;
			transform: translateY(0%);
		}

		100% {
			z-index: 20;
			transform: translateY(-100%);
		}
	}

	@keyframes fromup {
		from {
			z-index: 20;
			transform: translateY(-100%);
		}

		100% {
			z-index: 20;
			transform: translateY(0%);
		}
	}

	@keyframes todown {
		from {
			transform: translateY(0%);
		}

		100% {
			transform: translateY(50%);
		}
	}
}