.carusel{
    min-height: 600px;
  }
  .slider{
    position: relative;
    background: white;
    width: 100%;
    min-height: 670px;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    top:40px;
  }
  
  .slider .slide{
    position: absolute;
    /* margin-top:10rem; */
    margin-top:8rem;
    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, .next-btn{
    z-index: 999;
    font-size: 2em;
    color: #222;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    cursor: pointer;
  }
  
  .prev-btn{
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  
  .next-btn{
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    margin-top:3%;
  }
  
  .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(120px);
    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: 981px){
    .slider{
      width: 100%;
    }
  
    .slider .slide .info{
      position: relative;
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
    .slider{
      width: 100%;
      min-height: 38em;
      margin: 0;
      
    }
  }
  
  @media (max-width: 641px){
    .carusel {
      display: none;
    }
    .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
  }
} */
  