* {
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.section_subtitle {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #8a898e;
  margin-bottom: 10px;
}

.section_title {
  text-align: center;
  line-height: 44px;
  font-weight: 700;
  font-size: 52px;
  color: #0b1b35;
}

button {
  cursor: pointer;
}

@media (max-width: 480px) {
  .section_subtitle {
    font-size: 12px;
  }

  .section_title {
    font-size: 36px;
    line-height: 0;
  }

  .container {
    padding: 0 20px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .section_subtitle {
    font-size: 13px;
  }

  .section_title {
    font-size: 42px;
  }

  .container {
    padding: 0 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .section_subtitle {
    font-size: 14px;
  }

  .section_title {
    font-size: 48px;
  }

  .container {
    padding: 0 20px;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .section_subtitle {
    font-size: 14px;
  }

  .section_title {
    font-size: 50px;
  }

  .container {
    padding: 0 20px;
  }
}
