#component-contacts {
  background: var(--elsel-blue);
  padding: 1rem 0;
}

#component-contacts > .eg-container > .eg-wrapper {
  display: grid;
  grid-template-columns: 0.5fr 3fr;
  gap: 1rem;
}

#component-contacts > .eg-container > .eg-wrapper > .left > .brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#component-contacts .brand-logo > img {
  min-width: 180px;
  width: 180px;
}

#component-contacts > .eg-container > .eg-wrapper > .right {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1rem;
}

#component-contacts .right > .contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#component-contacts .right > .contact-links > .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

#component-contacts .right > .contact-links > .group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

#component-contacts .right > .contact-links > p,
#component-contacts .right > .contact-links > .group > a {
  color: var(--elsel-white);
  font-size: var(--font-14);
  font-weight: 400;
}

#component-contacts .right > .contact-links > .group > a:hover {
  color: var(--elsel-blue-2);
  text-decoration: underline;
}

@media (max-width: 1400px) {
  #component-contacts .brand-logo > img {
    min-width: 120px;
    width: 120px;
  }
  #component-contacts .right > .contact-links > .icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 1200px) {
  #component-contacts {
    padding: 1rem 0;
  }
  #component-contacts > .eg-container > .eg-wrapper > .right {
    grid-template-columns: var(--col-6);
  }
  #component-contacts .right > .contact-links {
    justify-content: start;
  }
  #component-contacts .right > .contact-links > p {
    width: 65%;
  }
}

@media (max-width: 768px) {
  #component-contacts > .eg-container > .eg-wrapper {
    grid-template-columns: var(--col-12);
  }
  #component-contacts > .eg-container > .eg-wrapper > .left {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #component-contacts .right > .contact-links > p {
    width: 100%;
  }
}

@media (max-width: 576px) {
  #component-contacts > .eg-container > .eg-wrapper > .right {
    grid-template-columns: var(--col-12);
  }
}
