* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.page-wrapper {
  max-width: 1200px;
  min-width: 280px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: #F5F5F5;
}

@media (max-width: 1500px) {
  .page-wrapper {
    padding: 0 15px;
  }
}
.table-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5F5F5;
}

.table-container .prices {
  width: 100%;
  height: auto;
  border-collapse: collapse;
  margin-top: 10vh;
  margin-bottom: 10vh;
  padding: 10px;
  text-align: center;
}

@media (max-width: 600px) {
  .table-container .prices {
    display: none;
  }
}
.table-container td {
  width: 100px;
  border: 1px solid #000;
  padding: 8px;
}

.table-container th {
  border: 1px solid #000;
}

.table-container tr:nth-child(even) {
  background-color: #fff;
}

.table-container th {
  height: 100px;
  text-align: left;
  background-color: #BABABA;
  color: #000;
  font-weight: bold;
  text-align: center;
}

.table-container--services {
  width: 100%;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.table-container--services ul {
  margin: 0px;
}

.table-container--services h2 {
  text-align: center;
}

.table-container--services p {
  text-align: center;
}

.table-container--services li {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(3, 74, 40, 0.15);
  transition: 0.3s ease;
  cursor: pointer;
}

.table-container--services li:hover {
  box-shadow: 0 8px 10px rgba(3, 74, 40, 0.15);
  transition: 0.3s ease;
}

.table-container--attention {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: justify;
  flex-direction: column;
  margin-top: 10vh;
  margin-bottom: 10vh;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 5px;
  padding: 50px;
  transition: 0.3s ease;
  cursor: pointer;
  color: red;
}

.table-container--attention:hover {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 3px 5px 5px;
  transition: 0.3s ease;
}

.table-container--attention h1 {
  font-size: 40px;
  margin-bottom: 5vh;
}

.table-container--attention p {
  color: #727272;
  font-size: 20px;
  font-weight: normal;
}

.responsive-price {
  width: 100%;
  height: auto;
  border-collapse: collapse;
  margin-top: 10vh;
  margin-bottom: 10vh;
  padding: 10px;
  display: none;
  font-size: 11px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 600px) {
  .responsive-price {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.responsive-price tr {
  text-align: center;
}

.responsive-price td {
  border: 1px solid #000;
  padding: 8px;
}

.responsive-price th {
  border: 1px solid #000;
}

.responsive-price tr:nth-child(even) {
  background-color: #fff;
}

.responsive-price th {
  height: 100px;
  text-align: left;
  background-color: #BABABA;
  color: #000;
  font-weight: bold;
  text-align: center;
} /*# sourceMappingURL=style_table.css.map */