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

ol li {
  list-style: none;
}
ol li span {
  color: rgb(78, 19, 47);
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: #fdfdfd;
  color: black;
  line-height: 1.5;
}

.main {
  max-width: 1200px;
  margin: 10px auto;
  padding-inline: 40px;
}
.main header .wrapper {
  padding-inline: 0;
  max-width: 1200px;
  margin: 10px auto;
}
.main header .back-button {
  background-color: rgb(78, 19, 47);
  color: #fdfdfd;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

h1 {
  grid-column: 1/-1;
  text-align: center;
  color: rgb(78, 19, 47);
  margin-block: 20px;
}

h2 {
  color: rgb(78, 19, 47);
}

p {
  margin: 5px 0;
}

.service-category-1 {
  grid-column: 1/-1;
}

.cta-cards > * {
  flex: 1;
}

.cta, .paymentMethods {
  width: 100%;
  display: flex;
  align-items: center;
  padding-inline: 20px;
  height: 100px;
  background: rgb(78, 19, 47);
  margin-block: 20px;
}

.cta .content, .paymentMethods .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.paymentMethods .content {
  justify-content: start;
}

.cta .content p, .paymentMethods .content h3 {
  color: #fdfdfd;
  font-size: 20px;
}

.cta .content .appoint {
  display: flex;
  align-items: center;
}

.cta .content a {
  padding: 13px 32px;
  background: transparent;
  border: 1px solid #fdfdfd;
  color: #fdfdfd;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  transition: 0.5s;
  font-weight: 600;
  margin-left: auto;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 30px;
  background: rgb(78, 19, 47);
  margin-bottom: 20px;
}
.title h2 {
  color: #fdfdfd;
}

#contacts .wrapper {
  padding-inline: 0;
}

.bookingform {
  width: 100%;
  display: flex;
  margin-block: 20px;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.bookingform #booking-form {
  width: 660px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  color: rgb(78, 19, 47);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
}
.bookingform #booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 300px;
}
.bookingform #booking-form .form-group label {
  font-weight: 600;
}
.bookingform #booking-form .form-group input, .bookingform #booking-form .form-group select, .bookingform #booking-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(78, 19, 47);
  border: 2px solid rgba(0, 0, 0, 0.5);
  outline: none;
}
.bookingform #booking-form .form-group textarea {
  resize: vertical;
}
.bookingform #booking-form .message {
  width: unset;
  grid-column: 1/-1;
}
.bookingform #booking-form .error-message {
  width: unset;
  grid-column: 1/-1;
  color: red;
}
.bookingform #booking-form button {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 32px;
  border: none;
  background: rgb(78, 19, 47);
  color: #fdfdfd;
  font-size: 18px;
}

@media (max-width: 768px) {
  .main {
    padding-inline: 20px;
  }
  .cta, .paymentMethods {
    padding-block: 15px;
    justify-content: flex-start;
  }
  .bookingform {
    width: 100%;
    padding-inline: unset;
  }
  .bookingform #booking-form {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
  .bookingform #booking-form .form-group {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .cta, .paymentMethods {
    height: auto;
  }
  .cta .content, .paymentMethods .content {
    flex-direction: column;
    align-items: start;
    justify-content: unset;
    gap: 10px;
  }
  .cta .content a, .paymentMethods .content a {
    margin-left: unset;
  }
}/*# sourceMappingURL=menu.css.map */