body {
  font-family: "Fugaz One", sans-serif "Noto Sans", sans-serif;
}

.pagetitle-area {
  background-color: #26C4A6;
  color: #fff;
  padding: 120px 0 120px;
  text-align: center;
  position: relative;
}
.pagetitle-area h2 {
  font-size: 80px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Fugaz One", sans-serif;
}
.pagetitle-area h2 span {
  font-size: 20px;
  display: block;
  margin-top: 20px;
  font-family: "Noto Sans", sans-serif;
}

.section-title {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 900;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.button {
  background-color: #fff;
  color: #26C4A6;
  border-radius: 100px;
  width: 180px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
.button:hover {
  opacity: 0.7;
}

.small {
  font-size: 12px;
  font-weight: normal;
  text-align: center;
}

.section {
  background-color: #FFFFFF;
  margin-top: -60px;
  border-radius: 40px;
  padding: 80px 120px 160px;
}

.yelow-bg {
  background-color: #FFE44B;
}

@media screen and (max-width: 768px) {
  .pagetitle-area {
    background-color: #26C4A6;
    color: #fff;
    padding: 120px 20px 120px;
  }
  .pagetitle-area h2 {
    font-size: 50px;
    font-weight: bold;
    margin: 0;
    line-height: 1;
    text-align: center;
    margin-bottom: 40px;
    font-family: "Fugaz One", sans-serif;
  }
  .pagetitle-area h2 span {
    font-size: 14px;
    display: block;
    margin-top: 20px;
    font-family: "Noto Sans", sans-serif;
  }
  .section-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 900;
  }
  .flex {
    gap: 10px;
  }
  .button {
    background-color: #fff;
    color: #26C4A6;
    border-radius: 100px;
    width: 160px;
    height: 40px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
  }
  .small {
    font-size: 10px;
    font-weight: normal;
    text-align: center;
  }
  .section {
    background-color: #FFFFFF;
    margin-top: -60px;
    border-radius: 15px;
    padding: 60px 20px 120px;
  }
}