*{
    margin: 0;
    padding: 0;
}


body{
    font-family: 'Space Grotesk', sans-serif !important;
    overflow: visible;
}


.section2{
    background-color: #262626;
}


.card{
    border-radius: 0 !important;
    border: 0 !important;
    background: #212121 !important;
    color: white !important;
    margin-top: 15px;
}

.container2{
    padding: 90px;
}

.btn-primary{
    background-color: #CDA275 !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 14px !important;
}
.btn-primary:hover{
    background-color: #D7BA92 !important;
    color: #000 !important;
}


.card-img-top {
    width: 100%;
    height: 10vw;
    object-fit: cover;
    border-radius: 0 !important;
}

.myimg{
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.myimg:hover {opacity: 0.7;}


.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
  }
  .reveal.active{
    transform: translateY(0);
    opacity: 1;
  }


  .image-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .close-button {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size:60px;
    color: #fff;
    cursor: pointer;
  }
  .close-button:hover{
    color: #D7BA92;
  }
 
  /* when we click on the image it will expand in bigger size and will displayed
at middle of screen */
  #popupImage {
    display: block;
    max-width: 30%;
    max-height: 80%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  hr{
    border-top: 1px solid #D7BA92!important;
    opacity: 1 !important;

  }
@media only screen and (max-width: 800px) {
    .card-img-top {
        height: 52vw;
    }
    .section2{
        height: 100vh;
    }
    .card{
        margin-top: 15px;
    }
    #popupImage {
        max-width: 80%;
      }
  }