* {
  font-family: "Nunito Sans";
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.mainContainer {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: auto;
}

.locationCards {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 1rem;
  margin: 2rem 0;
}

.locationCard {
  width: 32%;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  border-radius: 4px;
}

.actionBtn {
  height: 48px;
  width: 100%;
  margin-bottom: 12px;
  outline: none;
  border: none;
  background-color: #f4f4f4;
  color: #0a0603;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.content {
  background-color: #3659ab;
  border-radius: 4px;
  color: #fff;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 32px;
}

p {
  color: #191919;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.cardIcon {
  height: 40px;
  width: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infoSection {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0;
}

.card {
  width: 32%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  border-radius: 4px;
}

h2 {
  font-size: 36px;
  font-weight: 900;
  /* margin: 2rem 0; */
  color: #3659ab;
}

/* h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 1rem 0;
  color: #c91616;
}

h4 {
  font-size: 16px;
  font-weight: 700;
  color: #c91616;
} */

.footer {
  display: flex;
  flex-direction: column;
  height: 112px;
  background-color: #3659ab;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 200;
  margin-top: 1rem;
  width: 100%;
  color: #fff;
}

.backBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 4px;
  color: #fff;
  background-color: #3659ab;
  text-decoration: none;
}
.title {
  font-weight: 900;
  line-height: 48px;
  font-size: 48px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .locationCards {
    width: 100%;
    flex-direction: column;
    gap: 2rem;
  }

  .locationCard {
    width: 100%;
  }
  .contact {
    flex-direction: column;
  }
  .infoSection {
    flex-direction: column;
  }
  .card {
    width: 100%;
  }
}
