div.container-m {
  margin-top: 70px;
}
div.container-m .card {
  border-radius: 0 !important;
  overflow: hidden;
}
div.container-m .card img {
  transition: 0.3s;
}
div.container-m a {
  text-decoration: none;
  color: black;
}
@media screen and (min-width: 769px) {
  div.container-m a:hover img {
    max-height: 100%;
    transform: scale(1.05);
  }
}
@media screen and (max-width: 768px) {
  div.container-m a:hover img {
    max-height: 100%;
    opacity: 0.5;
  }
}
div.container-m h2 {
  color: white;
  font-size: 2.5rem;
}

.color {
  color: white;
}

.mc {
  border-radius: 0 !important;
}
.mc img {
  border-radius: 0 !important;
}

.custom-card {
  margin-bottom: 20px;
  overflow: hidden;
}
.custom-card img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 250px;
  border-radius: 5px;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .custom-card a:hover img {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 768px) {
  .custom-card a:hover img {
    opacity: 0.5;
  }
}
.custom-card .card-body {
  padding: 0;
}

@media screen and (max-width: 768px) {
  div.container-m {
    margin-top: 40px;
  }
  .col-sm-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}
@media screen and (max-width: 500px) {
  div.container-m h2 {
    font-size: 1.8rem;
  }
  .card-title {
    padding-top: 10px;
    font-size: 1rem;
  }
  .card-header {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .custom-card img {
    max-height: 150px;
  }
}
.backwhite {
  background-color: white;
}

.none {
  border: none;
}

.modal-open {
  overflow: hidden;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}
#dia.open {
  animation: fadeIn 0.5s ease-in-out;
}

#dia.closing {
  animation: fadeOut 0.5s ease-in-out;
}

#modal {
  cursor: pointer;
}

dialog {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  width: 80%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 13px;
  padding: 21px 8px 21px;
  text-align: center;
}
dialog .prextbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

dialog::-webkit-scrollbar {
  display: none;
}

.right {
  text-align: right;
  width: 95%;
}

.close-button {
  position: relative;
  width: 39px;
  height: 39px;
  background: orange;
  border-radius: 50%;
  padding: 0;
  border: transparent;
  cursor: pointer;
}

#main-image {
  text-align: center;
  margin-bottom: 20px;
}

#main-image img {
  width: 100%;
  height: 100%;
  max-width: 550px;
  max-height: 100%;
}

#thumbnail-gallery {
  text-align: center;
}

#thumbnail-gallery img {
  width: 8vw;
  height: 8vw;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0.5vw;
  cursor: pointer;
}

#thumbnail-gallery img:hover {
  transform: scale(1.05);
}/*# sourceMappingURL=menu.css.map */