


.carousel-inner {
    padding: 1em;
  }
  .card {
    margin: 0 0.5em;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
  }
 
  
  @media screen and  (min-width: 568px) {
    .cards-wrapper {
      
      display: flex;
    }
    .card{
        margin: 0.5em;
        width: calc(100%/3);
    }
    .image-wrapper {
        max-width: 100%;
        height: 22vw;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        
    }
    .carousel-control-prev,
.carousel-control-next {
  background-color: #2d2a27 !important;
  justify-content: center;
  align-items: end;
  height: 4vw;
  width: 3vh;
  opacity: .5;

}
    
  }
  
  @media screen  and (max-width:567px) {
    .card:not(:first-child){
        display: none;
    }
    
  }
  .image-wrapper img {
      max-width: 100%;
      max-height: 100%;
      
  }
  




  /*contact popup */
  
  #contactBtn {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
}

.close-btn {
    cursor: pointer;
    float: right;
    font-size: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    background-color: #28A745;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
