*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
a,
ul,
li,
dl,
dt,
dd,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

@font-face {
  font-family: NunitoSans;
  src: url("https://assets.lettucesocial.com/fonts/NunitoSans-Regular.ttf");
}
body {
  background-color: rgb(202, 216, 203);
  font-family: NunitoSans;
  min-height: 100svh;
}

nav {
  margin-top: 16px;
  border-bottom: 0.1px solid black;
  padding-bottom: 6px;
}
nav ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
nav ul li dl {
  display: grid;
  grid-template-columns: max-content max-content;
}
nav ul li dl dt {
  display: none;
}
nav ul li dl .profile-image {
  grid-row: span 2;
  margin-right: 8px;
}
nav ul li dl .profile-image img {
  width: 85px;
  height: 85px;
  border-radius: 35%;
}
nav ul li dl .full-name {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  align-self: center;
}
nav ul li dl .job {
  color: rgb(147, 134, 128);
  font-size: 14px;
  text-transform: capitalize;
}
nav ul li .work-link {
  background: rgb(187, 219, 221);
  background: linear-gradient(135deg, rgb(187, 219, 221), rgb(250, 155, 187));
  border-radius: 16px;
  text-decoration: none;
  display: block;
  width: 100%;
  color: #000;
  text-align: center;
  padding: 8px;
  border: 1px solid #fff;
  font-weight: bold;
  position: absolute;
  bottom: -50px;
  right: 0;
  left: 0;
}
nav ul li .share {
  text-indent: -9000px;
  background-image: url("/assets/images/share.png");
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  color: transparent;
}

#result-header {
  display: flex;
  flex-direction: column-reverse;
  margin: 16px 0;
}
#result-header ul {
  display: flex;
  justify-content: center;
}
#result-header ul li:nth-child(1) {
  text-transform: uppercase;
  margin-right: 4px;
}
#result-header ul li:nth-child(1)::after {
  content: "|";
  margin-left: 4px;
}
#result-header h1 {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: normal;
}

#product-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
#product-list li {
  background-color: rgb(248, 232, 172);
  border-radius: 24px;
  padding: 16px;
  flex: 100% 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#product-list li dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#product-list li dl dt {
  display: none;
}
#product-list li dl img {
  width: 100%;
  border-radius: 12px;
}
#product-list li dl .a a {
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 18px;
  color: black;
  font-weight: bold;
}
#product-list li dl dd {
  position: relative;
}
#product-list li dl dd:nth-child(2)::after {
  content: "";
  background: url("../images/Expiration-Badge.png");
  background-position: center;
  width: 70px;
  height: 70px;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -15px;
  left: -15px;
}
#product-list li dl dd:nth-child(6) {
  font-style: italic;
}
#product-list li dl .b {
  font-size: 16px;
  text-transform: capitalize;
}
#product-list li dl .c {
  font-weight: bold;
  font-size: 20px;
}
#product-list li dl .d {
  font-size: 12px;
}
#product-list li dl .e {
  font-size: 14px;
}
#product-list li .buy {
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  text-decoration: none;
  background-color: rgb(46, 129, 77);
  display: block;
  width: 100%;
  border-radius: 16px;
  text-align: center;
  padding: 12px 0;
  margin-top: 16px;
  font-weight: 200;
}

footer {
  margin: 32px 0 16px 0;
}
footer a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer a::before {
  content: "";
  background: url("/assets//images/logo-type.svg");
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 992.8px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1320px;
  }
}
@media (min-width: 992.8px) {
  #result-header ul {
    justify-content: left;
  }
  #product-list {
    -moz-column-gap: 14%;
         column-gap: 14%;
    row-gap: 32px;
    justify-content: left;
  }
  #product-list li {
    flex: 24% 0 0;
  }
  #product-list li dl img {
    width: 100%;
    border-radius: 12px;
  }
}/*# sourceMappingURL=service_detail.css.map */