#featured-img-mobile {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  #featured-img {
    /* max-width: 450px;
    max-height: 450px; */
    object-fit: cover;
    cursor: pointer;
    border: 1px solid black;
}
  
  #featured-img-mobile:hover {opacity: 0.7;}

  /* The Modal (background) */
  .featured-img-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* featured-img-modal Content (image) */
  .featured-img-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of featured-img-modal Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  /* Add Animation */
  .featured-img-modal-content, #caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .featured-img-modal-content {
      width: 100%;
    }
  }
  
/* #featured-img{
    max-width: 40.625em;
    max-height: 31.250em;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid black;
} */
.img-container {
    display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;

  }

  .img-div{
    margin-left: 30px;
    /* height:455px;
    width: 455px; */
    }

.thumbnail{
    object-fit: cover;
    max-width: 11.25em;
    max-height: 6.25em;
    cursor: pointer;
    opacity: 0.5;
    margin: 5px;
    border: 1px solid black;
}

.thumbnail:hover{
    opacity: 1;
}

.active-img{
    opacity: 1;
}

.btn-large{
    width: 100%;
}

#slide-wrapper{
    max-width: 40.625em;
    display: flex;
    min-height: 6.25em;
    align-items: center;
    padding-left: 2.1875em;
}

#slider{
    width: 37.5em;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
}

.arrow{
    width: 1.875em;
    height: 1.875em;
    cursor: pointer;
    transition: .3s;
}

.arrow:hover{
    opacity: .5;
    width: 2.1875em;
    height: 2.1875em;
}

.wrapper1{
    display: flex;
    overflow-x: auto;
    justify-content: start;
}

.wrapper1 .item{
    min-width: 300px;
    margin-right: auto;
}

.wrapper1::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  .wrapper1::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  
  /* Handle */
  .wrapper1::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #AEB6BF; 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
  }
  .wrapper1::-webkit-scrollbar-thumb:window-inactive {
  background: #AEB6BF; 
  }


@media only screen and (max-width: 992px){

    .btn-large {
        width: 100%;
        height: 54px;
        line-height: 54px;
        font-size: 0.8rem !important;
        padding: 0 10px;
    }

    .btn-large i {
        font-size: 0.8rem;
    }

    #featured-img{
        max-width: 300px;
        max-height: 400px;
        object-fit: cover;
        cursor: pointer;
        border: 1px solid black;
    }
    
    .thumbnail{
        object-fit: cover;
        max-width: 120px;
        max-height: 80px;
        cursor: pointer;
        opacity: 0.5;
        margin: 5px;
        border: 1px solid black;
    }

    .thumbnail:hover{
        opacity: 1;
    }
    
    .active-img{
        opacity: 1;
    }

    #slide-wrapper{
        max-width: 40.625em;
        display: flex;
        min-height: 6.25em;
        align-items: center;
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    
    #slider{
        width: 37.5em;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }
    .arrow{
        width: 20px;
        height: 20px;
        cursor: pointer;
        transition: .3s;
    }
    
    .arrow:hover{
        opacity: .5;
        width: 25px;
        height: 25px;
    }

    .wrapper1::-webkit-scrollbar{
        width: 0;
    } 

    .img-div{
      margin-left: 0px;
        /* height:235px;
        width: 235px; */
        }

    #featured-img-mobile {
      /* max-width: 230px;
      max-height: 230px; */
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }
    
    
}
