/* Small devices (landscape phones, 576px and up) */
/* @media (max-width: 576px) {
}
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) {
  ...
}
//Large devices (desktops, 992px and up) 
@media (min-width: 992px) {
  ...
}
//X-Large devices (large desktops, 1200px and up) 
@media (min-width: 1200px) {
  ...
}
//XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) {
  ...
} */
.mc-wrapper {
  display: flex;
  justify-content: space-around;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.mc {
  transition: 0.4s ease-out;
  padding: 1.5rem;
  position: relative;
  border-radius: 15px;
  background: rgb(108, 151, 245);
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  width: 350px;
  height: 300px;
  margin: 10px;
  display: flex;
  align-items: flex-end;
}

.mc:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  /* white */
  background: rgba(255, 255, 255, 0.8);

  z-index: 2;
  transition: 0.5s;
  opacity: 0.8;
}

.mc.blue:before {
  background: rgba(78, 159, 235, 0.8);
}

/* .mc.blue:hover:before {
  opacity: 0.8;
} */

.mc.white:before {
  background: rgba(228, 228, 228, 0.8);
}

.mc.purpur:hover .info {
  -webkit-transition: color 0.7s;
  transition: color 0.7s;
  color: #000000;
}

.mc:hover {
  transform: translateY(0px);
}

.mc:hover:before {
  opacity: 0.5;
}

/* .mc:hover .info {
  -webkit-transition: color 0.7s;
  transition: color 0.7s;
  color: #000000;
} */

.mc .info {
  position: absolute;
  z-index: 3;
  color: #181818;
  /* opacity: 1;
  transform: translateY(0px); */
  transition: 0.5s;
}

.mc .info h1 {
  font-weight: 700;
  margin: 0px;
  /* color: #5b5b5b;
   */
  /* color: #181818; */
}


.mc .info p {
  /* letter-spacing: 1px; */
  /* font-size: 15px; */
  font-size: 0.9em;
  margin-top: 8px;
  /* color: #181818; */
}

.grey {
  background-color: #e0e0e0;
}

.blue {
  background-color: #3184d3;
}

.white {
  background-color: #fff;
}

.purpur {
  background-color: #a38aff;
}

.yellow {
  background-color: #f7ffc8;
}

/* 
.fill {object-fit: fill;}
.contain {object-fit: contain;}
.cover {object-fit: cover;}
.scale-down {object-fit: scale-down;}
.none {object-fit: none;} 
*/
a.mc {
  text-decoration: none !important;
  /* color: #333 !important; */
}

.mc img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}

.mc .icon {
  width: 100%;
  height: 100%;
  padding: 30px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}

.mc .icon2 {
  width: 60%;
  height: 60%;
  padding: 30px;
  color: #1c2c63;
  z-index: 4;
  position: absolute;
  top: 0;
  right: 0;
}

.tile-disabled {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;

}