.connect-with-us {
  margin-top: 80px;
  border-top: 2px solid var(--Primary-Purple, #595378);
  background: var(--Background-color-primary, #fff);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 90px 64px;

  .inner {
  }

  .row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;

    .col-12 {
      width: fit-content;
      flex: auto;
    }
  }

  .title {
    color: var(--Primary-Purple, #595378);
    font-size: 48px;
    font-weight: 300;
    line-height: 120%;
    font-family: 'Montserrat', sans-serif;
  }

  .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;

    .title {
      color: var(--Primary-Purple, #595378);
      font-size: 24px;
      font-weight: 700;
      line-height: 150%;
      text-transform: uppercase;
      font-family: 'Montserrat', sans-serif;
    }

    .details {
      display: flex;
      align-items: center;
      gap: 8px;
      align-self: stretch;

      .icon {
        width: 16px;
        height: 16px;
      }

      .text {
        color: var(--Black, #212529);
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        line-height: 150%;
        font-family: 'Montserrat', sans-serif;
      }
    }
  }
}

.list-view {
  display: flex;
  padding: 90px 64px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  background: var(--Background-color-primary, #fff);
  position: relative;

  .title {
    color: var(--Primary-Purple, #595378);
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 57.6px */
    font-family: 'Montserrat', sans-serif;
  }

  .contact-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 40px;
  }
}

.list-view::before {
  content: "";
  background: rgba(89, 83, 120, 0.2);
  height: 2px;
  position: absolute;
  top: 0;
  left: 64px;
  right: 64px;
  max-width: 1312px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;

  img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    aspect-ratio: 416/296;
  }

  .details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;

    .country {
      color: var(--Primary-Purple, #595378);
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%; /* 36px */
      text-transform: uppercase;
      font-family: 'Montserrat', sans-serif;
    }

    .items {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      align-self: stretch;

      .item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;

        .icon svg {
          width: 16px;
          height: 16px;
        }

        .text {
          color: var(--Black, #212529);
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%; /* 24px */
          font-family: 'Montserrat', sans-serif;
        }
      }
    }
  }
}

@media (max-width: 1024px) {
  .connect-with-us {
    padding: 70px 20px;
    gap: 32px;

    .title {
      color: var(--Primary-Purple, #595378);
      font-size: 32px;
      font-weight: 300;
      line-height: 120%;
    }

    .row {
      gap: 32px;
      flex-direction: column;

      .col-12 {
        width: 100%;
      }
    }

    .item {
      .title {
        color: var(--Primary-Purple, #595378);
        font-size: 20px;
        font-weight: 700;
        line-height: 150%;
        text-transform: uppercase;
      }

      .details {
        .text {
          color: var(--Black, #212529);
          text-align: center;
          font-size: 14px;
          font-weight: 400;
          line-height: 150%;
        }
      }
    }
  }

  .list-view {
    padding: 70px 20px;

    .title {
      color: var(--Primary-Purple, #595378);
      font-size: 32px;
      font-weight: 300;
      line-height: 120%;
    }

    .contact-list {
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 32px;

      .contact-card {
        width: 100%;

        .country {
          color: var(--Primary-Purple, #595378);
          font-size: 20px;
          font-weight: 700;
          line-height: 150%;
          text-transform: uppercase;
        }

        .items {
          .text {
            color: var(--Black, #212529);
            font-size: 16px;
            font-weight: 400;
            line-height: 150%;
          }
        }
      }
    }
  }

  .list-view::before {
    right: 20px;
    left: 20px;
  }
}
