#message-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    text-align: center;
    padding: 20px;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 1s;
}

#message-box i {
    border-radius: 50%;
    border: 3px solid #57CCC3;
    font-size: 80px;
    color: #57CCC3;
    padding: 10px;
}

#message-box p {
    font-size: 30px;
}

@media screen and (max-width: 449px) {
    #message-box {
        width: 200px;
        height: 200px;
    }
    #message-box i {
        font-size: 25px;
    }
    #message-box p {
        font-size: 13px;
    }
}

@media screen and (min-width: 450px) and (max-width: 800px) {
    #message-box {
        width: 300px;
        height: 300px;
    }
    #message-box i {
        font-size: 40px;
    }
    #message-box p {
        font-size: 17px;
    }
}

/* .gallery-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-card .image {
    margin: 20px;
    width: 400px;
    height: 250px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.gallery-card .image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
} */

.grid-main-item {
    display: flex;
    justify-content: center;
    width: 100%;
  }

.grid-main-item a img{
    width: 500px;
    height: 350px;
  }

.grid-gallery {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    grid-gap: 20px;
  }
  
  .grid-gallery .grid-item {
    position: relative;
    background-color: #efefef;
    overflow: hidden;
  }
  
  .grid-gallery .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .grid-gallery .grid-item:hover img {
    transform: scale(1.1);
  }
  
  .grid-gallery .grid-item a {
    cursor: zoom-in;
  }
  
  .grid-gallery .grid-item:nth-child(4n - 3),
  .grid-gallery .grid-item:nth-child(4n - 2) {
    grid-column: span 1;
    grid-row: span 2;
  }
  
  /* Let's make it responsive */
  @media (max-width: 768px) {
    .grid-gallery {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      grid-auto-rows: 250px;
    }
    .grid-main-item a img{
        width: 100%;
        height: 250px;
      }
    .grid-gallery .grid-item:nth-child(4n - 3),
    .grid-gallery .grid-item:nth-child(4n - 2) {
      grid-column: unset;
      grid-row: unset;
    }
  }

  .container-slidermobile{
    height: 52vmin;
    width: 90vmin;
    position: relative;
    overflow: hidden;
}
.container-slidermobile img{
    width: 100%;
    height: 100%;
    position: absolute;
}
#my-img{
    clip-path: polygon(0 0 , 50% 0, 50% 100%, 0 100%);
}
#slider-mobile{
    position: relative;
    -webkit-appearance: none;
    width: calc( 100% + 40px);
    height: 100%;
    margin-left: -20px;
    background-color: transparent;
    outline: none;
}
#slider-mobile::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 40px;
    width: 40px;
    background: url("../images/slider-icon.svg"),
    rgba(255,255,255,0.3);
    border: 3px solid #ffffff;
    border-radius: 50%;
    background-size: contain;
    cursor: pointer;
}