@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,300&display=swap');

 body {
	 font-family: 'Source Serif 4', serif;
	 background: #1f211e;
}

h1,
p,
a{
  margin: 0;
  padding: 0;
  font-family: 'Source Serif 4', serif;
  color: #fbfaa4;
}

h1 {
  padding: 0;
  font-size: 3.8em;
  font-weight: 800;
  line-height: 80%;
  margin-top: 0 ;
  margin-bottom: 0 ;
  text-shadow: -2px 0px #000000;
}

p {
  font-size: 1 em;
  font-weight: 300;
  <!--letter-spacing: 5px;-->
}

.header {
  width: 100%;
  padding:0 0;
  text-align: center;
  background: #33cccc;
  color: #fbfaa4;
}

 .logo {
  width: 150px;
  height: 105px;
  position:fixed;
}

.btn-bgstroke {
  margin: auto;
  font-size: 20px;
  color: #fbfaa4;
  display: inline-block;
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 300;

}

.btn-bgstroke:hover {
  color: #cc3375;
}

.slide_wrapper {
  width: 600px;
    display: -webkit-flex; 
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    height: 40vh;
    margin: 4% auto 0; 
    justify-content: space-between;
}

.container{
    width: 530px;
    max-height: 40vh;
    display: -webkit-flex; 
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: npwrap;
    overflow: hidden;

}
.card {
	flex: 1 0;
	border-radius: 100px;
	margin: 0;
	padding: 0;
	cursor: pointer;  
        display: grid;
	width:80px;
	min-width:80px;
	height: 40vh;
        place-items: center;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	transition: all 500ms cubic-bezier(.14,.69,.93,1);
	box-shadow: 0 2px 20px rgba(0,0,0,0.5);

}

.card:hover{
    flex-basis: 75%;
    min-width:440px;
    flex:1 1 1 ;
	

}


div.card:not(:last-child) {
  margin-right: 10px;
}



div#slide_wrapper>button {
  height: fit-content;
  align-self: center;
  font-size: 24px;
  font-weight: 800;
  border: none;
  outline: none;
}

button#slide_left {
    margin-right: 10px;
}

div#slide_wrapper>button:hover {
  cursor: pointer;
}

/* this CSS line applies changes with the JS script */
button.changes {
  visibility: hidden;
}

div#text{

}

.emrefoto-slideshow {
  top: 1vw;
  height: 60px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.emrefoto-slideshow > div {
  height: 5vw;
  width: 3900px;
  background: url('img/scroll.png');
  background-size: 70%
  background-repeat: no-repeat;
  position: center;
  left: 0;
  height: 100%;
  transform: translate3d(0, 0, 0);
}

.emrefoto-slideshow .mover-1 {
  animation: moveSlideshow 15s linear infinite;
}
.emrefoto-slideshow .mover-2 {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  background-position: 0 -40px;
  animation: moveSlideshow 15s linear infinite;
}
.emrefoto-slideshow:hover .mover-2 {
  opacity: 1;
}


@keyframes moveSlideshow {
  from {
    -moz-transform: translateX(0%) translateX(100vw);
    -webkit-transform: translateX(0%);
    transform: translateX(calc(100vw));
  }
  to {
    -moz-transform: translateX(-66.66660%);
    -webkit-transform: translateX(-66.6666%);
    transform: translateX(-66.6666%);
  }
}

#zoom {
  width: 100%;
  height: 100%;
  transform-origin: 0px 0px;
  transform: scale(1) translate(0px, 0px);
  cursor: grab;
}
#overlay_image{
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: no background;	

}
div#zoom > img {
  width: 100%;
  height: auto;
}



#slide_left {
width: 24px;
-webkit-clip-path: polygon(80% 0%, 100% 0%, 100% 100%, 80% 100%, 0% 50%); clip-path: polygon(80% 0%, 100% 0%, 100% 100%, 80% 100%, 0% 50%);
            
background: #fbfaa4;
opacity: 0.6;
background-image: repeating-linear-gradient(-30deg,
                  hsla(0.6,10%,50%,.1),
                  hsla(0.6,10%,50%,.1) 5px,
                  transparent 0, transparent 10px);
    

}

#slide_right {
width: 24px;
-webkit-clip-path: polygon(0% 0%, 20% 0, 100% 50%, 20% 100%, 0% 100%); clip-path: polygon(0% 0%, 20% 0, 100% 50%, 20% 100%, 0% 100%);
            
background: #fbfaa4;
opacity: 0.6;
background-image: repeating-linear-gradient(30deg,
                  hsla(0,10%,50%,.1),
                  hsla(0,10%,50%,.1) 5px,
                  transparent 0, transparent 10px);
    

}



@media only screen and (min-width: 768px) and (max-width: 991px){
    .container{
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .container{
        width: 100%; 
    }
}
















