.c-banner {
  display: flex;
  width: 100%;
}
.c-banner__container {
  position: relative;
  width: 100%;
}
.c-banner__image {
  width: 100%;
  height: 28.125rem;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 900px) {
  .c-banner__image {
    height: 20rem;
  }
}
.c-banner__bone {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: fit-content;
  height: fit-content;
  border-radius: 3.75rem;
  border: 0.75rem solid hsl(23, 100%, 98%);
  position: absolute;
}
@media (max-width: 900px) {
  .c-banner__bone {
    border-radius: 3.75rem;
    border: 0.375rem solid hsl(23, 100%, 98%);
  }
}
.c-banner__bone:first-child {
  background-color: hsl(23, 99%, 65%);
  align-self: flex-start;
  transform: translate(-35%, -50%);
  top: 0;
  left: 0;
}
.c-banner__bone:first-child svg * {
  stroke: #fff;
}
.c-banner__bone:last-child {
  background-color: hsl(32, 67%, 85%);
  align-self: flex-end;
  transform: translate(35%, 50%);
  bottom: 0;
  right: 0;
}
.c-banner__bone:last-child svg {
  stroke: hsl(0, 0%, 0%);
}
.c-banner__bone svg {
  height: 3rem;
  width: 3rem;
}
@media (max-width: 900px) {
  .c-banner__bone svg {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.c-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-direction: column;
  gap: 1rem;
  margin: 4rem 0;
}
@media (max-width: 900px) {
  .c-section {
    margin-top: 3rem;
    gap: 1.5rem;
  }
}
.c-section__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.c-section__subtitle {
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: hsl(0, 0%, 0%);
}
@media (max-width: 900px) {
  .c-section__subtitle {
    font-size: 0.875rem;
    line-height: 0.875rem;
  }
}
.c-section__title {
  font-size: 3rem;
  color: hsl(23, 99%, 65%);
  line-height: 3rem;
}
@media (max-width: 900px) {
  .c-section__title {
    font-size: 2rem;
    line-height: 2rem;
  }
}
.c-section__description {
  color: hsl(0, 0%, 53%);
  text-align: center;
  max-width: 40rem;
}
@media (max-width: 900px) {
  .c-section__description {
    font-size: 0.75rem;
    max-width: 100%;
  }
}
.c-section--small {
  margin: 0;
  margin-bottom: 2rem;
  gap: 0.5rem;
}
.c-section--small [class*=__title] {
  font-size: 2rem;
  line-height: 2rem;
  color: hsl(15, 51%, 39%);
}
@media (max-width: 900px) {
  .c-section--small [class*=__title] {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.c-section--small [class*=__subtitle] {
  font-size: 1rem;
  line-height: 1rem;
}
@media (max-width: 900px) {
  .c-section--small [class*=__subtitle] {
    font-size: 0.875rem;
    line-height: 0.875rem;
  }
}

.c-form {
  width: 100%;
  padding: 0 15rem;
  padding-top: 2rem;
  margin-top: 4rem;
}
@media (max-width: 1400px) {
  .c-form {
    padding: 0 12.5rem;
  }
}
@media (max-width: 1000px) {
  .c-form {
    padding: 0 7.5rem;
  }
}
@media (max-width: 900px) {
  .c-form {
    padding-top: 2rem;
    padding: 0;
  }
}
.c-form__text {
  color: hsl(23, 99%, 65%);
}
.c-form__text a {
  color: hsl(23, 99%, 65%);
  font-weight: 600;
  transition: all 120ms ease-in-out;
}
.c-form__text a:hover, .c-form__text a:focus {
  outline: none;
  color: hsl(15, 51%, 39%);
}
.c-form, .c-form__wrapper, .c-form__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.c-form__content {
  gap: 0.25rem;
}
.c-form__item, .c-form__input {
  width: 100%;
  display: flex;
}
.c-form__input {
  border: 0.125rem solid hsl(32, 67%, 85%);
  padding: 1rem;
  border-radius: 0.25rem;
  transition: all 120ms ease-in-out;
}
.c-form__input::placeholder {
  color: hsl(0, 0%, 53%);
}
.c-form__input--textarea {
  resize: none;
}
.c-form__input:hover, .c-form__input:focus {
  outline: none;
  border-color: hsl(23, 99%, 65%);
}
.c-form__footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.c-form__footer .wpcf7-spinner {
  display: none;
}
.c-form__footer__group {
  display: flex;
  align-items: center;
  justify-self: flex-start;
  gap: 0.5rem;
}
.c-form__footer .c-button {
  justify-self: flex-end;
}
.c-form__footer .c-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
}
.c-form__footer .c-button__icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
@media (max-width: 500px) {
  .c-form__footer {
    flex-direction: column;
    gap: 1rem;
  }
  .c-form__footer [class$=__group] {
    align-self: flex-start;
  }
  .c-form__footer .c-button {
    align-self: flex-end;
  }
}
.c-form__terms__checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid hsl(32, 67%, 85%);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 120ms ease-in-out;
}
.c-form__terms__checkmark svg {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0;
}
.c-form__terms__checkmark svg * {
  stroke: #fff;
}
.c-form__terms__checkmark:hover {
  border-color: hsl(23, 99%, 65%);
}
.c-form__terms__field {
  display: none;
}
.c-form__terms__field:checked ~ [class*=__checkmark] {
  background-color: hsl(23, 99%, 65%);
  border-color: hsl(23, 99%, 65%);
}
.c-form__terms__field:checked ~ [class*=__checkmark] svg {
  opacity: 1;
}

.c-project-details {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(23, 68%, 96%);
  padding: 4rem 6rem;
  margin-top: 4rem;
  flex-direction: column;
  gap: 4rem;
  border-radius: 1rem;
}
@media (max-width: 1300px) {
  .c-project-details {
    padding: 4rem 4rem;
  }
}
@media (max-width: 768px) {
  .c-project-details {
    padding: 3.5rem 1.5rem;
  }
}
.c-project-details__brand svg {
  height: 9.25rem;
  width: auto;
}
@media (max-width: 800px) {
  .c-project-details__brand svg {
    height: 7.5rem;
  }
}
@media (max-width: 400px) {
  .c-project-details__brand svg {
    height: 5rem;
  }
}
.c-project-details__featured {
  font-size: 5rem;
  line-height: 5rem;
  color: hsl(23, 99%, 65%);
  padding: 0;
  margin: 0;
  text-align: center;
}
@media (max-width: 800px) {
  .c-project-details__featured {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}
@media (max-width: 400px) {
  .c-project-details__featured {
    font-size: 2rem;
    line-height: 2rem;
  }
}
.c-project-details__text {
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-family: "Coiny";
  width: 7.5rem;
  text-align: center;
  color: hsl(0, 0%, 0%);
}
@media (max-width: 800px) {
  .c-project-details__text {
    font-size: 1.375rem;
    line-height: 1.625rem;
    width: 100%;
  }
}
@media (max-width: 400px) {
  .c-project-details__text {
    font-size: 1rem;
    line-height: 1.125rem;
    width: 6.25rem;
  }
}
.c-project-details__group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  height: fit-content;
}
.c-project-details__group--vertical {
  flex-direction: column;
}
.c-project-details__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 1050px) {
  .c-project-details__content {
    flex-direction: column;
  }
}
.c-project-details__quantity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-project-details__quantity__title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: hsl(0, 0%, 0%);
}
.c-project-details__quantity > [class*=__group] {
  gap: 2rem;
}
@media (max-width: 400px) {
  .c-project-details__quantity > [class*=__group] {
    gap: 1rem;
  }
}
.c-project-details__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}
@media (max-width: 1050px) {
  .c-project-details__footer {
    flex-direction: column;
  }
}
.c-project-details__footer__text {
  width: fit-content;
  color: hsl(23, 99%, 65%);
}
@media (max-width: 1050px) {
  .c-project-details__footer__text {
    max-width: 35rem;
    text-align: center;
  }
}

.home-page {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .home-page {
    grid-template-columns: 1fr;
  }
}
.home-page__images {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page__images__item {
  width: 33.3333333333%;
  height: 30rem;
  object-fit: cover;
  border-radius: 18.75rem;
  position: relative;
}
@media (max-width: 900px) {
  .home-page__images__item {
    width: 7.5rem;
    height: 20rem;
  }
}
@media (max-width: 500px) {
  .home-page__images__item {
    width: 6.25rem;
    height: 17.5rem;
  }
}
@media (max-width: 400px) {
  .home-page__images__item {
    width: 5rem;
    height: 15rem;
  }
}
.home-page__images__item:first-child, .home-page__images__item:nth-child(2) {
  box-shadow: 0.625rem 0px 0px 0.5rem hsl(23, 100%, 98%);
}
@media (max-width: 900px) {
  .home-page__images__item:first-child, .home-page__images__item:nth-child(2) {
    box-shadow: 0.3125rem 0px 0px 0.25rem hsl(23, 100%, 98%);
  }
}
.home-page__images__item:first-child {
  z-index: 3;
}
.home-page__images__item:nth-child(2) {
  z-index: 2;
}
.home-page__image-featured {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 900px) {
  .home-page__image-featured {
    grid-row: 3/4;
  }
}
.home-page__article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: hsl(0, 0%, 53%);
}
.home-page__article strong {
  color: hsl(0, 0%, 0%);
}
.home-page .c-button {
  grid-column: 1/-1;
  width: fit-content;
  margin: 0 auto;
  margin-top: 2rem;
}

/*# sourceMappingURL=home.css.map */
