.btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.btn:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}
.btn:disabled, .btn[aria-disabled=true], .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary {
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}
.btn--primary:hover, .btn--primary:focus {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: #000000;
  border-color: #000000;
}

.btn--secondary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}
.btn--secondary:hover, .btn--secondary:focus {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--secondary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn--outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #cccccc;
}
.btn--outline:hover, .btn--outline:focus {
  border-color: #000000;
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn--outline:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--ghost {
  background-color: transparent;
  color: #000000;
  border: 2px solid transparent;
}
.btn--ghost:hover, .btn--ghost:focus {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--light {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--light:hover, .btn--light:focus {
  background-color: #2c3e36;
  color: #e3b08c;
  transform: none;
  box-shadow: none;
}
.btn--light:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--light-arrow {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 10px;
}
.btn--light-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--light-arrow::after {
  width: 18px;
  height: 18px;
  margin-left: 0;
  filter: none;
  transition: filter 0.2s ease-in-out;
}
.btn--light-arrow:hover, .btn--light-arrow:focus {
  background-color: #2c3e36;
  color: #e3b08c;
  transform: none;
  box-shadow: none;
}
.btn--light-arrow:hover::after, .btn--light-arrow:focus::after {
  filter: brightness(0) saturate(100%) invert(85%) sepia(15%) saturate(1000%) hue-rotate(340deg) brightness(110%);
}
.btn--light-arrow:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--dark {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--dark:hover, .btn--dark:focus {
  background-color: #eae0cf;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--dark:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--dark-arrow {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 10px;
}
.btn--dark-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--dark-arrow::after {
  width: 18px;
  height: 18px;
  margin-left: 0;
  filter: none;
  transition: filter 0.2s ease-in-out;
}
.btn--dark-arrow:hover, .btn--dark-arrow:focus {
  background-color: #eae0cf;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--dark-arrow:hover::after, .btn--dark-arrow:focus::after {
  filter: none;
}
.btn--dark-arrow:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--beige {
  background-color: #eae0cf;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--beige:hover, .btn--beige:focus {
  background-color: #e3b08c;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--beige:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--small {
  padding: 8px 24px;
  font-size: 14px;
}

.btn--large {
  padding: 24px 40px;
  font-size: 18px;
}

.btn--full {
  width: 100%;
}

.btn--icon {
  gap: 8px;
}
.btn--icon svg,
.btn--icon .icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.btn--arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--arrow::after {
  margin-left: 8px;
}
.btn--arrow:hover::after, .btn--arrow:focus::after {
  transform: translateX(4px);
}
.btn--arrow.btn--dark::after, .btn--dark .btn--arrow::after {
  filter: brightness(0) invert(1);
}

.btn-group {
  display: inline-flex;
  gap: 8px;
}
.btn-group .btn {
  margin: 0;
}

.cards {
  position: relative;
  width: 100%;
  padding-top: 34px;
  padding-bottom: 128px;
}
.cards.c_services {
  padding-top: 109px;
  padding-bottom: 95px;
}
@media (max-width: 768px) {
  .cards.c_services {
    padding-top: 70px;
    padding-bottom: 75px;
  }
}
.cards.c_services .cards__header {
  margin-bottom: 75px;
}
.cards.c_services .cards__section-title {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 55px;
  font-size: 45px;
  line-height: 55px;
}
@media (max-width: 768px) {
  .cards.c_services .cards__section-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 40px;
  }
}
.cards.c_services .cards__section-subtitle {
  color: #736258;
  font-weight: 500;
}
@media (max-width: 768px) {
  .cards.c_services .cards__section-subtitle {
    font-size: 22px;
    line-height: 28px;
  }
}
.cards.c_services .cards__grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .cards.c_services .cards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .cards.c_services .cards__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.cards.c_services .cards__footer-text {
  font-size: 18px;
  line-height: 28px;
  color: #2c3e36;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto;
}
.cards#how-it-works-page {
  padding-top: 109px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .cards#how-it-works-page {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .cards {
    padding: 48px 0;
  }
}
@media (max-width: 320px) {
  .cards {
    padding: 40px 0;
  }
}
.cards__header {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cards__header {
    margin-bottom: 64px;
  }
}
@media (max-width: 320px) {
  .cards__header {
    margin-bottom: 48px;
  }
}
.cards__section-title {
  font-size: 55px;
  font-weight: 700;
  color: #2c3e36;
  line-height: 65px;
  margin: 0 0 24px 0;
  font-family: "Gotham", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .cards__section-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}
.cards__section-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #2c3e36;
  line-height: 32px;
  margin: 0;
  font-family: "Gotham", sans-serif;
}
@media (max-width: 768px) {
  .cards__section-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}
.cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .cards__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}
.cards__card {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 62px 41px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.cards__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.cards__icon-wrapper {
  width: 97px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 320px) {
  .cards__icon-wrapper {
    width: 80px;
    height: 80px;
  }
}
.cards__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cards__title {
  font-size: 30px;
  font-weight: 700;
  color: #2c3e36;
  line-height: normal;
  margin: 0;
  font-family: "Gotham", sans-serif;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cards__title {
    font-size: 1.75rem;
    height: auto;
    min-height: 36px;
  }
}
@media (max-width: 320px) {
  .cards__title {
    font-size: 1.5rem;
  }
}
.cards__description {
  font-size: 18px;
  font-weight: 400;
  color: #00373e;
  line-height: 26px;
  letter-spacing: 0.5px;
  margin: 0;
  flex: 1;
}
@media (max-width: 768px) {
  .cards__description {
    font-size: 16px;
    line-height: 24px;
  }
}
.cards__footer {
  text-align: center;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .cards__footer {
    margin-top: 64px;
  }
}
@media (max-width: 320px) {
  .cards__footer {
    margin-top: 48px;
  }
}
.cards__form-wrapper {
  margin-top: 94px;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 768px) {
  .cards__form-wrapper {
    margin-top: 64px;
  }
}
@media (max-width: 320px) {
  .cards__form-wrapper {
    margin-top: 48px;
  }
}
.cards__form {
  max-width: 725px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 320px) {
  .cards__form {
    gap: 16px;
  }
}
.cards__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 320px) {
  .cards__form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.cards__form-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}
.cards__form-label {
  font-size: 16px;
  font-weight: 400;
  color: #2c3e36;
  font-family: "Gotham", sans-serif;
  line-height: 1.5;
  margin: 0;
}
.cards__form-input {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 18px;
  font-family: "Gotham", sans-serif;
  color: #333333;
  line-height: 28px;
  transition: box-shadow 0.2s ease-in-out;
}
.cards__form-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #2c3e36;
}
.cards__form-input::placeholder {
  color: #999999;
}
@media (max-width: 320px) {
  .cards__form-input {
    padding: 14px 20px;
    font-size: 16px;
  }
}
.cards__form-submit {
  align-self: center;
  margin-top: 8px;
}
@media (max-width: 320px) {
  .cards__form-submit {
    width: 100%;
    align-self: stretch;
  }
}
.cards__footer {
  text-align: center;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .cards__footer {
    margin-top: 64px;
  }
}
@media (max-width: 320px) {
  .cards__footer {
    margin-top: 48px;
  }
}
.cards__footer-text {
  color: #3B5248;
  text-align: center;
  font-family: "Gotham", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  margin: 0;
}
@media (max-width: 768px) {
  .cards__footer-text {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 320px) {
  .cards__footer-text {
    font-size: 24px;
    line-height: 32px;
  }
}