.content {
	
	/*position: relative;
	margin: auto;
	background-size: 100% 100%;*/
	position: relative;
    position: relative;
    width: 100vw;
    overflow: hidden;
  
}

.content .mobile-content {
	
	/*position: relative;
	margin: auto;
	background-size: 100% 100%;*/
	position: relative;
    position: relative;
    width: 100vw;
    overflow: hidden;
  
}

.slider {
    width: inherit;
    height: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: all 0.75s;
}

.slider-mobile {
    width: inherit;
    height: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: all 0.75s;
}

.slider-image {
    opacity: 1;
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: 1s;
}
	
.content {
	display: none;
}

.mobile-content {
	display: none;
}

@media only screen and (min-width: 630px) {
  .content {
    display: block;
  }
}

@media only screen and (max-width: 629px) {
  .mobile-content {
    display: block;
  }
}
	