.seasons-inner {
    display: flex;
	align-items: center;
    height: 80rem;
    overflow: hidden;
}

.seasons-left {
    width: 50%;
}

.seasons-right {
    width: 50%;
}

.seasons-images-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80rem;
    position: relative;
}

.season-images {
    display: flex;
    position: absolute;
	visibility: hidden;
	top: 0;
	opacity: 0;
    transition: .6s;
}


.season-images.active {
    visibility: visible;
	opacity: 1;
}
.season-toggle {
	opacity: 0.2;
	cursor: pointer;
	    transition: .5s;
}
.season-toggle.active {
    opacity: 1;
}
.season-toggle:hover {
    opacity: 1;
}


@media screen and (-webkit-min-device-pixel-ratio: 0) {
	
	
  .season-toggle span  {
    background: linear-gradient(to right, #172a01, #172a01 50%, #377c54 50%);
    background-size: 200% 100%;
    background-position: 100%;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: 0s;
  }
  
	.season-toggle.active span {
		background-position: 0%;
		transition: 4s ease-in;
	}
}



.season-images img {
    height: 40rem;
    width: 100%;
    object-fit: cover;
	border-radius: 5px;
}
.season-images figure {
    padding: 1.5rem;
}


@keyframes season-images-left-scroller {
0% {
	transform: translate3d(0,0,0);
}

100% {
	transform: translate3d(0,-80rem,0);
}
}

@keyframes season-images-right-scroller {
-100% {
	transform: translate3d(0,0,0);
}

0% {
	transform: translate3d(0,-80rem,0);
}
}

.season-images-left {
	animation: 10s linear infinite season-images-left-scroller;
	width: 50%;
}

.season-images-right {
	animation: 10s linear infinite season-images-right-scroller;
	width: 50%;
}



/* Desktop small */
@media only screen and (max-width: 1100px) {
.seasons-inner {
    height: 60vw;
}

.seasons-images-wrapper {
    height: 60vw;
}

@keyframes season-images-left-scroller {
0% {
	transform: translate3d(0,0,0);
}

100% {
	transform: translate3d(0,-60vw,0);
}
}

@keyframes season-images-right-scroller {
-100% {
	transform: translate3d(0,0,0);
}

0% {
	transform: translate3d(0,-60vw,0);
}
}
.season-images img {
    height: 30vw;
}
	
.season-images figure {
    padding: 1.25vw;
}
	
}

/* Tablet */
@media only screen and (max-width: 700px) {
  

@keyframes season-images-left-scroller {
0% {
	transform: translate3d(0,0,0);
}

100% {
	transform: translate3d(-50vw,0,0);
}
}

@keyframes season-images-right-scroller {
-100% {
	transform: translate3d(0,0,0);
}

0% {
	transform: translate3d(-50vw, 0,0);
}
}
	
.seasons-inner {
    display: block;
    height: auto;
	width: 100%;
    padding: 8rem 0;
}

.seasons-left {
    width: 100%;
    padding: 0 2rem 3rem 2rem;
}

.season-toggle span {
    font-size: 15vw;
}
.seasons-right {
    width: 100%;
}

.season-images-right {
    display: flex;
}

.season-images-left {
    display: flex;
}

.season-images {
    flex-direction: column;
}
.season-images img {
    min-width: 50vw;
    height: 50vw;
}
.seasons-images-wrapper {
    height: 105vw;
}	
}


/* Iphone */
@media only screen and (max-width: 450px) {
  
}