@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


:root {
  --Very-Dark-Blue: hsl(234, 12%, 34%);
  --Grayish-Blue: hsl(229, 6%, 66%);
  --Very-Light-Gray: hsl(0, 0%, 98%);
  --border-color: hsl(0, 0%, 50%);
  --fw-light: 200;
  --fw-regular: 400;
  --fw-bold: 600;

  color: var(--Grayish-Blue);
  font-size: 15px;
  /* font-family: "Poppins", sans-serif; */
  font-weight: var(--fw-regular);
}

.cyan {
  --border-color: #dcb04d;
  grid-area: 1 / 1 / 3 / 2;
}

.red {
  --border-color: #dcb04d;
}

.orange {
  --border-color: #dcb04d;
}

.blue {
  --border-color: #dcb04d;
  grid-area: 1 / 3 / 3 / 4;
}

.header {
  text-align: center;
}

/* .header_subtitle,
.header_title {
  font-size: clamp(1.6rem, 5vw, 2rem);
} */

.header_subtitle {
  font-weight: var(--fw-light);
}

.header_title {
  margin-bottom: 1rem;
}

.header_title,
.card_title {
  color: var(--Very-Dark-Blue);
}

.header_description {
  max-width: 500px;
  margin: 0 auto;
}

.card_grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.card {
  max-width: 320px;
  margin: 0 auto;
  padding: 2rem;
  border-top: 5px solid var(--border-color);
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(23, 79, 138, 0.1);
}

.card_title {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
}

.card_content {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 900;
}
.card_contentwo {
  /* margin-bottom: 1.5rem; */
  font-size: 0.9rem;
  font-weight: 900;
}

.card_img {
  margin-left: auto;
  display: block;
}

@media (max-width: 768px) {
  .card_grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    align-items: stretch;
  }

  .cyan {
    grid-area: auto;
  }

  .blue {
    grid-area: auto;
  }

  .card {
    max-width: 300px;
  }
}

@media screen and (max-width: 500px) {
  .card_grid {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }
}


.administration-single-items .content .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}