.main_content_contact {
  padding-bottom: 100px;
  width: 100%;
  min-height: 100vh;
  background-image: url('../../media/contact.webp');
  background-size: 100% auto ;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.main_content_contact .subtitle {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding: 15px;
}
.main_content_contact .contact_containers {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.main_content_contact .contact_containers .unique_container {
  width: 48%;
}
.contacts_unique_container .default_contact {
  position: relative;
  width: 90%;
  max-width: 500px;
  min-height: 200px;
  border: 2px solid var(--color-main);
  background-color: #718fc8c5;
  margin: 30px auto;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contacts_unique_container .default_contact .icon_container {
  width: 80px;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.164);
}
.contacts_unique_container .default_contact .icon_container svg {
  max-width: 50%;
  fill: #1b1b1b;
}
.contacts_unique_container .default_contact .info_container {
  width: calc(100% - 80px);
  height: 100%;
  padding: 15px;
  overflow: hidden;
}
.contacts_unique_container .default_contact .info_container span {
  font-weight: 900;
  color: black;
  text-decoration: underline;
}
.contacts_unique_container .default_contact .info_container li {
  margin-top: 17px;
  font-weight: 500;
  font-size: 18px;
  color: #181818;
  width: 100%;
}
.contacts_unique_container .default_contact .info_container li svg {
  cursor: pointer;
  margin-left: 10px;
  margin-top: 5px;
  margin-bottom: -5px;
  height: 20px;
  fill: #181818;
  transition: all 0.3s;
}
.contacts_unique_container .default_contact .info_container li svg:active {
  transform: scale(0.9);
}
.contacts_unique_container .default_contact .info_container li svg:hover {
  fill: #000000;
}
.contacts_unique_container .default_contact .info_container .clip_success {
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  bottom: 5px;
  left: 5%;
  text-align: center;
  color: #0e2e0b;
  background-color: rgba(0, 151, 13, 0.623);
  padding: 4px 0px;
  width: 90%;
  border-radius: 10px;
  font-weight: bold;
}
.contacts_unique_container .default_contact .info_container .clip_success[data-state="true"] {
  opacity: 1;
}
@media (max-width: 750px) {
  .main_content_contact .contact_containers {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
  }
  .main_content_contact .contact_containers .unique_container {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #mail_info {
    font-size: 15px;
  }
}
