@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");

/* * {
  margin: 0;
  padding: 0;
  font-family: rajdhani;
} */

.cardsContainer {
  display: flex;
  flex-direction: column;
  margin: 100px;
  gap: 30px;
  width: 100%;
}

.cardRow {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.card {
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.card h1 {
  color: #e54d42;
}

.card p {
  color: #777777;
}

.card button {
  cursor: pointer;
  font-size: 16px;
  background: none;
  border: none;
  text-decoration: underline;
  color: #e54d42;
}

.cardIcon {
  font-size: 44px;
}

dialog {
  /* padding: 20px; */
  text-align: center;
  transform: translateX(-50%);
  left: 50%;
  margin: auto;
  border-radius: 5px;
  border: #e54d42 1px solid;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

dialog button {
  cursor: pointer;
  /* margin-top: 30px; */
  font-size: 16px;
  background: none;
  border: none;
  text-decoration: underline;
  color: #e54d42;
}

dialog h3 {
  color: #e54d42;
}

.modalContent {
  display: flex;
  height: 90%;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
}

dialog ul {
  list-style-type: none;
}

#services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ssv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

@media (max-width: 768px) {
  .cardsContainer {
    margin: 0;
    width: auto;
  }

  .cardRow {
    flex-direction: column;
  }
  .card {
    width: auto;
  }
  dialog {
    width: auto;
  }
}
