.our-location-section {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 0 5%;

  background: #001871;

  margin-top: 300px;
}

.our-location-section-wrapper {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  /* position: absolute; */

  margin-top: -300px;
}

.title-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.title-list-cards {
  display: flex;
  gap: 50px;

  div {
    display: flex;
    flex-direction: column;
  }

  img {
    width: 24px;
    height: 24px;
  }

  span {
    color: #2d2869;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 6px;
  }
}

@media (max-width: 750px) {
  .title-list-cards {
    width: 100%;
    justify-content: space-between;
  }
}

.store-card-wrapper {
  width: 100%;

  margin-top: 46px;

  max-width: var(--view-port);

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 28px;
}

.store-card {
  border-radius: 16px;
  background: #f2f1f0;

  padding: 35px;

  display: flex;

  img {
    width: 104px;
    height: 104px;
  }

  .column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    margin-left: 48px;
  }

  .column a {
    text-decoration: none;
  }

  .name {
    color: #494571;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;

    margin-bottom: 16px;
  }

  .address {
    color: var(--blue-700);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;

    margin-bottom: 24px;
  }

  .is-open {
    font-size: 16px;
  }

  .is-open a {
    text-decoration: none;
  }

  .see-on-the-map {
    font-size: 16px;

    margin-bottom: 1px;
  }
}

@media screen and (max-width: 1000px) {
  .store-card {
    img {
      width: 64px;
      height: 64px;
    }

    .column {
      margin-left: 28px;
    }
  }
}

@media screen and (max-width: 750px) {
  .title-wrapper {
    flex-direction: column;

    align-items: flex-start;

    gap: 37px;
  }

  .store-card-wrapper {
    grid-template-columns: 1fr;
  }

  .store-card {
    img {
      width: 90px;
      height: 90px;
    }

    flex-direction: column;

    .column {
      margin-top: 20px;
      margin-left: 0px;
    }
  }
}
