* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slide-container {
  position: relative;
    background: white;
    width: 100%;
    min-height: 480px;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    top:160px;
}

.slide img {
  width:100%;
  object-fit:cover;
  max-height:100vh;
  top:0;
  left:0;
}

/* circles */
.circles {
  text-align:center;
  vertical-align: middle;
  margin-top:-17%;
   z-index: 999;
}

.navigation {
  text-align:center;
  vertical-align: middle;
  margin-top:-33%;
   z-index: 1000;
}

.slide-icon {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
 animation-timing-function: ease-in;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

.cover-text {
  /* z-index:100; */
  position:absolute;
  top:22rem;
  left:3%;
  color:whitesmoke;
  

}

.cover-text p {
  font-size: 1.1em;
    font-weight: 400;
    text-align: left;
    text-shadow: black 1px 0 10px;
}

.cover-text h2 {
  font-size: 1.8em;
    font-weight: 800;
    text-align: left;
    text-shadow: black 1px 0 10px;
    
}

.slide-container .navigation{
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .slide-container:hover .navigation{
    opacity: 1;
  }
  
  .prev-btn, .next-btn{
    z-index: 999;
    font-size: 2em;
    /* color:white; */
    color: #222;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    cursor: pointer;
    margin-bottom:150px;
  }
  
  .prev-btn{
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  
  .next-btnc{
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
  }

  .slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s;
  }

  


/* .carusel{
    min-height: 600px;
  }
  .slider{
    position: relative;
    background: white;
    width: 100%;
    min-height: 600px;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    top:40px;
  }
  
  .slider .slide{
    margin-top:9rem;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 0 50%);
  }
  
  .slider .slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s;
  }
  
  .slider .slide img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slider .slide .info{
    position: absolute;
    color: white;
    background: rgba(255, 255, 255, 0.3);
    width: 75%;
    margin-top: 250px;
    margin-left: 100px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 5%);
  }
  
  .slider .slide .info h2{
    font-size: 2em;
    font-weight: 800;
    text-align: left;
    text-shadow: black 1px 0 10px;
  }
  
  .slider .slide .info p{
    font-size: 1.3em;
    font-weight: 400;
    text-align: left;
    text-shadow: black 1px 0 10px;
  }
  
  .slider .navigation{
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .slider:hover .navigation{
    opacity: 1;
  }
  
  
  
  .prev-btn{
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  
  .next-btnc{
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
  }
  
  .navigation-visibility{
    z-index: 999;
    display: flex;
    justify-content: center;
  }
  
  .navigation-visibility .slide-icon{
    z-index: 0;
    background: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 10px;
    transform: translateY(80px);
    margin: 0 6px;
    border-radius: 2px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }
  
  .navigation-visibility .slide-icon.active{
    background: #4285F4;
  }
  
  @media (max-width: 900px){
    .slider{
      width: 100%;
    }
  
    .slider .slide .info{
      position: relative;
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
    .slider{
      width: 100%;
      min-height: 450px;
      margin: 0;
      
    }
  }
  
  @media (max-width: 500px){
    .slider .slide .info h2{
      font-size: 1.8em;
      line-height: 40px;
    }
  
    .slider .slide .info p{
      font-size: 0.9em;
    }
    .slider{
      width: 100%;
      min-height: 450px;
      margin: 0;
      
    }
  } */
  /* Begin carousel */
 /* .mySlides {
  display: none;

}  */
/* 
 .dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #717171;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

 .puncte {
  text-align: center;
} */

/* .active {
  background-color: green;
}  */

/* Fading animation */
 /* .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}  */

/* @-webkit-keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
} 

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
} */
  
