/* DESCRIPTION ___________________________________________________________________________________*/

.div-contacts {
  position: relative;
  width: 85%;
  margin: 12.5vh 7.5% 10vh 7.5%;
}

.div-contacts:first-child {
  margin-bottom: 0;
}

.div-contacts h1 {
  margin-bottom: 3.5vh;
  text-align: left;
  background-color: var(--secondary-text-color);
  color: #ffffff;
  padding: 2vh 2vw;
  -webkit-text-stroke-width: 0.00001vw !important;
  -webkit-text-stroke-color: #ffffff;
  -webkit-box-shadow: var(--primary-box-shadow);
  box-shadow: var(--primary-box-shadow);
  filter: opacity(0.85);
  max-width: fit-content;
  font-size: 2em;
}

.div-contacts .contacts-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10vh;
}

.div-contacts .contacts-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.div-contacts .contacts-wrapper a img {
  width: 25%;
  transition: 250ms;
}

.div-contacts .contacts-wrapper a img:hover {
  transform: scale(1.075);
  filter: brightness(105%);
}

.div-contacts .contacts-wrapper .info {
  width: 50%;
}

.div-contacts .contacts-wrapper p {
  text-align: left;
  font-size: 1.15em;
}

.div-contacts .contacts-wrapper p b {
  -webkit-text-stroke-width: 0.00001vw !important;
  -webkit-text-stroke-color: var(--secondary-text-color);
  color: var(--secondary-text-color);
}

.div-contacts iframe {
  margin-top: 5vh;
  width: 100%;
  height: 65vh;
  -webkit-box-shadow: var(--primary-box-shadow);
  box-shadow: var(--primary-box-shadow);
  border: 0;
}

/* MEDIA QUERY ___________________________________________________________________________________*/

@media (min-width: 320px) and (max-width: 1024px) {
  .div-contacts {
    margin: 5vh 7.5% 5vh 7.5%;
  }

  .div-contacts h1 {
    margin-bottom: 2vh;
  }

  .div-contacts .contacts-wrapper {
    margin-top: 5vh;
  }
}
