.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-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;
  }
}

.project {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 1080px) {
  .project {
    grid-template-columns: 1fr;
  }
}
.project__image-featured {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.project__article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: hsl(0, 0%, 53%);
  width: 100%;
}
.project__article strong {
  color: hsl(0, 0%, 0%);
}
.project__brand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .project__brand {
    grid-row: 3/4;
  }
}
.project__brand svg {
  min-width: 100%;
  height: auto;
}
.project__column-full {
  grid-column: 1/-1;
  padding-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.project__column-full [class*=__article] {
  margin-top: 1.5rem;
  text-align: center;
}
.project__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  width: 100%;
}
.project__gallery__image {
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.project__gallery__image:nth-child(5) {
  grid-column: 2/3;
}
.project__gallery__image:last-child {
  grid-column: 3/4;
}
@media (max-width: 768px) {
  .project__gallery__image {
    grid-column: auto !important;
  }
}
@media (max-width: 1200px) {
  .project__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .project__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

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