@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@600;700&family=Poppins:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  background: #ddd6f3;
  background: -webkit--webkit-linear-gradient(left, #ff9b9b, #ffd6d5);
  background: -webkit--moz-linear-gradient(left, #ff9b9b, #ffd6d5);
  background: -webkit--o-linear-gradient(left, #ff9b9b, #ffd6d5);
  background: -webkit--ms-linear-gradient(left, #ff9b9b, #ffd6d5);
  background: -webkit-linear-gradient(to right, #ff9b9b, #ffd6d5);
  background: -webkit-linear-gradient(left, #ff9b9b, #ffd6d5);
  background: -moz-linear-gradient(left, #ff9b9b, #ffd6d5);
  background: -o-linear-gradient(left, #ff9b9b, #ffd6d5);
  background: -ms-linear-gradient(left, #ff9b9b, #ffd6d5);
  background: linear-gradient(to right, #ff9b9b, #ffd6d5);
  width: calc(min(1440px, 90%));
  margin: 0 auto;
  display: grid;
  min-height: 100vh;
  padding-block: 2em;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}
main {
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-shadow: 0px 6px 18px rgba(0,0,0,0.161);
  box-shadow: 0px 6px 18px rgba(0,0,0,0.161);
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -o-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media screen and (min-width: 900px) {
  main {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
main .content {
  padding: 3em 2em;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  main .content {
    padding: 5em 4.5em;
  }
}
main .content a {
  text-decoration: none;
  color: #838383;
  font-size: 0.9rem;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
main .content a:hover {
  color: #eb8a88;
}
main .content span {
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.125rem;
  color: #00801d;
  font-weight: 500;
}
main .content h1 {
  text-transform: capitalize;
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  margin: 0.2em 0 0.6rem 0;
}
main .content p {
  max-width: 350px;
}
main .content svg {
  width: 26px;
  margin-right: 10px;
}
main .img-container {
  width: 100%;
  position: relative;
  min-height: 380px;
  height: 30vh;
}
@media screen and (min-width: 900px) {
  main .img-container {
    height: auto;
  }
}
main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .order {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  padding: 2em 2em;
  -webkit-box-shadow: 0px 9px 18px rgba(0,0,0,0.9);
  box-shadow: 0px 9px 18px rgba(0,0,0,0.9);
  height: min-content;
}
@media screen and (min-width: 600px) {
  main .order {
    width: 80%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
  }
}
@media screen and (min-width: 900px) {
  main .order {
    min-width: 360px;
    width: auto;
    top: 50%;
    left: 75%;
    -webkit-transform: translate(-75%, -50%);
    -moz-transform: translate(-75%, -50%);
    -o-transform: translate(-75%, -50%);
    -ms-transform: translate(-75%, -50%);
    transform: translate(-75%, -50%);
    padding: 3em 2.8em;
    display: block;
  }
}
main .order h4{
  color: #fff;
  max-width: 200px;
}
main .order a {
  display: inline-block;
  background: #ffff00;
  color: #000;
  display: inline-block;
  padding: 0.7em 2.2em;
  border-radius: 60px;
  text-transform: capitalize;
  text-decoration: none;
  margin-top: 2em;
  font-size: 0.9rem;
}
main .order a:hover {
  background: #ffff00;
}
@media screen and (min-width: 900px) {
  main .order a {
    font-size: 1rem;
  }
}
main .order span {
  font-size: 1.3rem;
color: #fff;
}
@media screen and (min-width: 900px) {
  main .order span {
    font-size: 1.5rem;
    color: #fff;
  }
}
main .order .price {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  -o-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  font-size: 1rem;
  color: #ffff00;
}
main .order .price span {
  font-size: 1.5rem;
  margin-bottom: -3px;
  font-weight: 300;
}
@media screen and (min-width: 900px) {
  main .order .price span {
    font-size: 2.5rem;
    margin-bottom: -10px;
  }
}
main .order .price h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: -10px;
  margin-inline: 5px;
}
@media screen and (min-width: 900px) {
  main .order .price h2 {
    font-size: 5rem;
    margin-bottom: -15px;
  }
}
main hr {
  background: #ffff00;
  width: 30%;
  height: 1px;
  border: none;
  display: block;
  margin: 4em 0 1em 0;
}
@media screen and (min-width: 600px) {
  main hr {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (min-width: 900px) {
  main hr {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: section;
  margin: 2em 0 2.5em 0;
}
li {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
li+li {
  margin-top: 1em;
}
li::before {
  counter-increment: section;
  content: counters(section, '.') ' ';
  background: #000;
  color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-width: 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 200;
  margin-right: 1em;
  position: relative;
  z-index: 66;
}
li:not(:last-child):after {
  content: '';
  width: 1px;
  height: 200%;
  background: #000;
  position: absolute;
  left: 12.5px;
  top: 50%;
}