/* get in touch */

.get-in-touch__section {
  padding: 2.5rem 0;
  background-color: #ffffff;
}

.get-in-touch__section h2 {
  font-size: 1.8rem;
  font-weight: 400;
  padding-bottom: 2rem;
  line-height: 1rem;
}

.get-in-touch__section > div {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.partner-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partner-container > div:first-child {
  min-width: 100px;
  min-height: 100px;
  background-color: #54575e;
}

.partner-container > div:first-child img {
    aspect-ratio: 150/150;
  height: 100%;
  width: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.partner-container > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.partner-container div:nth-child(2) p,
.partner-container div:nth-child(2) ul {
  padding-top: 0.45rem;
}

.partner-container div:nth-child(2) p:first-child {
  padding-top: 0;
}

.partner-container div:nth-child(2) p:first-child {
  font-weight: 600;
  font-size: 1.115rem;
  line-height: 1rem;
}

.partner-container div:nth-child(2) p:nth-child(3) span:first-child {
  width: 100%;
  display: block;
}

.partner-container a {
  color: var(--primary);
  font-size: 0.875rem;
  text-decoration: none;
}

.flex-list {
  display: flex;
  list-style-type: none;
}

@media (min-width: 600px) {
  /* get in touch */
  .get-in-touch__section {
    padding: 4rem 0;
    background-color: #ffffff;
  }

  .get-in-touch__section h2 {
    font-size: 2.625rem;
    font-weight: 400;
    padding-bottom: 2rem;
    line-height: 4.375rem;
  }

  .get-in-touch__section > div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .partner-container {
    flex-direction: row;
  }

  .partner-container > div:first-child {
    max-width: 150px;
    max-height: 150px;
  }

  .partner-container div:nth-child(2) p,
  .partner-container div:nth-child(2) ul {
    padding-top: 0.625rem;
  }
  .partner-container div:nth-child(2) p:first-child {
    padding-top: 0;
  }

  .partner-container div:nth-child(2) p:first-child {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .partner-container a {
    color: var(--primary);
    text-decoration: none;
  }
}

@media (min-width: 768px) {
  .get-in-touch__section > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) and (max-width: 1295px) {
  .get-in-touch__section div.container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
