.container-box3 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 15px;
  max-width: 100%;
  margin-bottom: 50px;
  justify-content: space-around;
}

.box3 {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 20px;
  min-height: 200px;
  backdrop-filter: blur(10px);
  border: 1px solid whitesmoke;
  flex: 1;
  min-width: 25%;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1), -5px -5px 5px rgba(255, 255, 255, 0.1);
  transition: transform 0.5s;

  justify-content: space-around;

}

.box3:hover {
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.1), inset -5px -5px 5px rgba(255, 255, 255, 0.1);

}

.containerGrowthRate{
  display: flex;
  justify-content: space-around;
  width: 100%;
  font-size: 10px;
  gap: 10px;
  display: flex;

}

.growthRate{
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 8px;
  border: 1px solid whitesmoke;
  font-weight: 500;
  color: #3E4A56;
  flex: 1;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.1), inset -5px -5px 5px rgba(255, 255, 255, 0.1);


}

