.orders {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  gap: 300px;
  margin-bottom: 150px;
}
.orders h2 {
  text-align: left;
  margin-bottom: 4px;
}
.order-row {
  position: relative;
}
.order-row:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 125%;
  padding-left: 40%;
  background-color: #fae1ad;
  z-index: -1;
  transform: translateY(-50%);
  border-radius: 30px 0px 0px 30px;
}
.order-row:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 125%;
  padding-right: 40%;
  background-color: #fae1ad;
  z-index: -1;
  transform: translateY(-50%);
  border-radius: 0px 30px 30px 0px;
}
.order-croissant {
  position: absolute;
  top: 75%;
  left: 0;
  width: 101%;
  z-index: -2;
}
.order-row .container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.order-content {
  flex-basis: 44%;
}
.order-img {
  flex-basis: 56%;
  height: 450px;
}
.order-img img {
  height: 100%;
  border-radius: 30px;
}
.order-content .btn {
  margin-top: 24px;
}
.order-content p {
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.order-sites {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}
.order-site {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .orders {
    gap: 200px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .order-croissant {
    top: -20%;
    transform: scale(1.3) translateX(5%);
  }
  .order-croissant-2 {
    transform: scale(1.3) translateX(-10%);
  }
  .order-row .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .order-row:nth-child(2) .container {
    flex-direction: column-reverse;
  }
  .order-img {
    margin-top: 64px;
    position: relative;
  }
  .order-row:nth-child(1) .order-img::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 125%;
    padding-left: 70%;
    background-color: #fae1ad;
    z-index: -1;
    transform: translate(32px, -50%);
    border-radius: 30px 0px 0px 30px;
  }
  .order-row:nth-child(2) .order-img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 125%;
    padding-right: 70%;
    background-color: #fae1ad;
    z-index: -1;
    transform: translate(-32px, -50%);
    border-radius: 0px 30px 30px 0px;
  }
  .order-row::before {
    content: none !important;
  }
}
@media screen and (max-width: 768px) {
  .orders {
    gap: 150px;
  }
  .order-site {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 576px) {
  .order-img {
    height: 205px;
    margin-top: 32px;
  }
}
