@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');
/*--Buying Trend--------------------------------------------------*/
.secpiechart-homeloan {
  width: 100%;
}

.secpiechart-homeloan h2 {
  margin-bottom: 10px;
  text-align: center;
  font-size: calc(1.5rem + 1.75vw);
  font-weight: 600;
  font-style: normal;
}

.secpiechart-homeloan h2:after {
  width: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.secpiechart-homeloan p {
  text-align: center;
}

.piechart-homeloan {
  background: linear-gradient(135deg, #ececec, #c4c4c4, #9a9a9a);
  padding: 40px;
}

.piechart-homeloan .header {
  text-align: center;
  margin-bottom: 50px;
}

.piechart-homeloan .header h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
}

.piechart-homeloan .header p {
  color: #9ca3af;
  font-size: 1.1rem;
}

.piechart-homeloan .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.piechart-homeloan .card {
  flex: 1 1 450px;
  max-width: 450px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.piechart-homeloan .card h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, .55);
  position: absolute;
  bottom: 0px;
  margin-bottom: 6px;
  width: 100%;
  text-align: right;
  padding-right: 25px;
}

.piechart-homeloan h3.text-white {
  font-size: 1.4rem;
}

.piechart-homeloan .chartBox {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
  margin: auto;
}

.piechart-homeloan canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.piechart-homeloan .legend {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.piechart-homeloan .legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(0, 0, 0, .55);
}

.piechart-homeloan .color {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.piechart-homeloan .blue {
  background: #00a6ff;
}

.piechart-homeloan .green {
  background: #00e676;
}

.piechart-homeloan .note {
  margin-top: 35px;
  margin-left: 28px;
  padding: 20px;
  border-radius: 15px;
}

/*---Hiring Growth----------------------------------------------------*/
.section-hiring-growth {
  margin-top: 80px;
  margin-bottom: 70px;
}

.section-hiring-growth h2 {
  margin-bottom: 10px;
  text-align: center;
  font-size: calc(1.5rem + 1.75vw);
  font-weight: 600;
  font-style: normal;
}

.section-hiring-growth h2:after {
  width: 00px;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: -12px;
}

.section-hiring-growth p {
  text-align: center;
  color: #636363;
}

.hiring-growth-piechart {
  background: linear-gradient(135deg, #ececec, #c4c4c4, #9a9a9a);
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns:repeat(2, 1fr);
  gap: 30px;
  padding: 60px;
}

.hiring-growth-piechart .card {
  background: #fff;
  border: 1px solid #a2a2a2;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
  opacity: 0;
  transform: translateY(70px);
  transition: all 1s ease;
}

.hiring-growth-piechart .card.show {
  opacity: 1;
  transform: translateY(0);
}

.hiring-growth-piechart .card h2 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #2d2d2d;
}

.sectionProlst .hiring-growth-piechart .card h2:after {
  background: transparent;
  height: 0px;
}

.hiring-growth-piechart .card p {
  text-align: center;
  color: #7a7a7a;
  margin-bottom: 10px;
  line-height: 1.6;
}

.hiring-growth-piechart .chart-box {
  position: relative;
  width: 100%;
  height: 500px;
}

@media (max-width: 992px) {
  /*---Hiring Growth----------------------------------------------------*/
  .hiring-growth-piechart {
    grid-template-columns:1fr;
  }

  .hiring-growth-piechart .chart-box {
    height: 450px;
  }
}

@media (max-width: 768px) {
  /*--Buying Trend--*/
  .secpiechart-homeloan h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .secpiechart-homeloan h2:after {
    left: 0;
    transform: none;
  }

  .secpiechart-homeloan p {
    text-align: center;
  }

  .piechart-homeloan {
    padding: 30px;
  }

  .piechart-homeloan .header h1 {
    font-size: 2rem;
  }

  .piechart-homeloan .card {
    padding: 20px;
  }

  .piechart-homeloan .legend {
    margin-top: 10px;
  }

  .piechart-homeloan .legend-item {
    font-size: 12px;
  }

  .piechart-homeloan h3.text-white {
    font-size: 16px;
    font-weight: normal;
  }

  .piechart-homeloan .note {
    margin-left: 0px;
    padding-left: 0;
    font-size: 14px;
    padding-right: 0px;
  }

  /*---Hiring Growth----------------------------------------------------*/
  .section-hiring-growth h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 4px;
  }

  .section-hiring-growth h2:after {
    left: 0;
    transform: none;
  }

  .section-hiring-growth p {
    font-size: 11px;
    color: #636363;
  }

  .hiring-growth-piechart {
    padding: 30px;
  }

  .hiring-growth-piechart .card {
    padding: 20px;
  }

  .hiring-growth-piechart .chart-box {
    height: 400px;
  }
}
