@media screen and (min-width: 960px) and (orientation: landscape){



.sections {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}

.sections .section {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
    right: 0;
}

.sections .section {
    transform: translateY(-101%);
    overflow: hidden;
}

.sections .section .container {
    width: 100%;
    height: 100%;
    transform: translateY(101%);
}

.sections .section .container .scroll-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: auto;
}

.sections .section.--current .container .scroll-wrapper {
    overflow: auto;
}

.sections .section .container .scroll-wrapper::-webkit-scrollbar {
    width: 0;
}

.sections .section.--current {
    z-index: 33;
    transform: translateY(0%);
}

.sections .section.--current .container {
    transform: translateY(0%);
}

.sections .section .container .container {
    transform: translateY(0%) !important;
}

}