@import url(common.css);

main section.customer h2 {
  color: #f15283;
  font-size: 50px;
  padding-bottom: 14px;
}
@media screen and (max-width: 991px) {
  main section.customer h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  main section.customer h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  main section.customer h2 img {
    width: 75px;
  }
}
@media screen and (max-width: 575px) {
  main section.customer h2 img {
    width: 50px;
  }
}

main section.customer div {
  background-color: #ffffe1;
  border-radius: 65px;
  color: #43c6ec;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  padding: 90px 0px;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  main section.customer div {
    padding: 50px 0px;
  }
}

@media screen and (max-width: 991px) {
  main section.customer div {
    padding: 30px 0px;
  }
}

main section.customer div p {
  padding-bottom: 60px;
  opacity: 0;
  animation-name: fadein;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 991px) {
  main section.customer div p {
    font-size: 25px;
    padding-bottom: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 575px) {
  main section.customer div p {
    font-size: 15px;
    padding-bottom: 20px;
    line-height: 25px;
  }
}

main section.graph h2 {
  font-size: 35px;
  background-color: #43c6ec;
  border-radius: 100px;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  main section.graph h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 575px) {
  main section.graph h2 {
    font-size: 15px;
  }
}

main section.graph p {
  padding-bottom: 57px;
}
