main {
  display: flex;
  flex-direction: column;
}
.contact-padding1,
.contact-padding2 {
  background-color: rgb(0, 115, 255);
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact_image_emb {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
}
.contact_image_emb_cont {
  flex: 1 1 40%;
  max-width: 600px;
  aspect-ratio: 2 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.contact_image_emb_cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.contact_image_emb_cont div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  background-color: rgb(0 0 0 / 0.563);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.contact_image_emb_cont:hover div {
  opacity: 1;
}
@media (max-width: 624px) {
  .contact_image_emb {
    flex-direction: column;
    align-items: center;
  }
  .contact_image_emb_cont {
    width: 90%;
    flex: none;
  }
}
