/* Contact section */
.tpl-contacts-section {
  box-sizing: border-box;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  justify-content: space-around;
  gap: 50px;
  flex-wrap: wrap;
}

.tpl-social-network-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20%;
}


.tpl-contacts-section h2 {
  color: var(--black);
  font-size: 1.3rem;
  text-align: center;
}

.tpl-contact-link {
  position: relative;
  display: flex;
  justify-content: center;
}

.tpl-contacts-section.white .tpl-contact-link img {
  height: 282px;
  filter: brightness(0);
}

.tpl-contacts-section .tpl-cta-contact {
  box-sizing: border-box;
  background-color: var(--accent);
  color: var(--white);
  font-family: 'Futura LT Heavy';
  font-size: 1.3rem;
  text-decoration: none;
  position: absolute;
  transform-origin: center;
  rotate: -12deg;
  top: 36%;
  padding: 15px 50px;
  border-radius: 10px;
}

.tpl-social-network-links {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2vw;
}

.tpl-vertical-separator {
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 100px;
  margin-inline-end: 100px;
}

.tpl-sn-link {
  height: 7vw;
  width: 7vw;
  min-height: 50px;
  min-width: 50px;
  border-radius: 75px;
  border: 4px solid black;
  transition: border-color 0.3s ease;
  position: relative;
}

.tpl-social-network-links a {
  width: 100%;
  height: 100%;
}

.tpl-social-network-links a:hover img {
  filter: invert(1);
}

.tpl-social-network-links a:hover .tpl-sn-link {
  border-color: white;
}

.tpl-sn-link img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 4vw;
  width: 4vw;
  min-height: 25px;
  min-width: 25px;
  filter: invert(0);
  transition: filter 0.3s ease;
}