body {
  background: #FAF7F2;
  color: #685844;
  position: relative;
}

section {
  margin: 70px 0 5%;
}

.course-intro {
  display: flex;
  padding: 7% 25px 8%;
  margin: 27% 0 0;
  position: relative;
}
.course-intro:after {
  content: "";
  position: absolute;
  width: 90%;
  height: 10px;
  left: 4%;
  top: 0;
  background: #A89F94;
}
.course-intro .container {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.course-intro h1 {
  margin-top: 2%;
}
.course-intro img {
  width: 25%;
  margin-top: 3%;
}

.course-content {
  margin-top: 0;
}
.course-content h2 {
  padding-bottom: 0.5%;
  border-bottom: 4px solid #A76545;
  margin-bottom: 1%;
}
.course-content h3 {
  color: #C9A07A;
  margin-bottom: 1%;
}
.course-content article {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.course-content article:first-of-type {
  margin-top: 10%;
}
.course-content article + article {
  margin-top: 24%;
}
.course-content .link-box {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 10%;
}
.course-content .link-box a {
  margin-right: 3%;
  color: #C9A07A;
  font-size: 20px;
}
.course-content .link-box a:hover .arrow {
  animation: arrowMove 0.6s infinite alternate ease-in-out;
}
.course-content .link-box img {
  width: 40%;
  filter: drop-shadow(0 3px 5px rgba(57, 54, 54, 0.5));
}

.dna-image-wrapper {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 500px;
  max-height: 960px;
  overflow: hidden;
  z-index: -1;
}

.DNA-img {
  position: absolute;
  left: 0;
  top: 6%;
  width: 100vw;
  height: auto;
  opacity: 0.8;
}

.testimonial-before-after {
  background: #969492;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8%;
  padding-top: 5%;
}
.testimonial-before-after .title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 3%;
}
.testimonial-before-after h1 {
  color: #fff;
}
.testimonial-before-after .gray-box {
  width: 100%;
  height: 20px;
  background: #757471;
  margin-left: auto;
}
.testimonial-before-after img {
  width: 100%;
}
.testimonial-before-after img.product-img {
  width: 10%;
  filter: drop-shadow(0 3px 5px rgba(57, 54, 54, 0.5));
  margin-left: 8%;
}

.product-extract-serum {
  display: flex;
  flex-direction: column;
  margin: 18% 0;
}
.product-extract-serum .d-flex {
  width: 100%;
  align-items: center;
}
.product-extract-serum img {
  width: 38%;
}
.product-extract-serum .text {
  width: 75%;
}
.product-extract-serum h1 {
  color: #847767;
  padding: 0 0 1% 5%;
  border-bottom: 3px solid #C9A07A;
  margin-bottom: 1%;
  width: 85%;
}
.product-extract-serum p {
  color: #685844;
  padding: 0 25px 0 0;
  font-style: oblique;
  margin: 3% 0 0 42%;
}

.product-details-section {
  margin: 0;
  position: relative;
  padding-bottom: 25%;
  border-bottom: 20px solid #9E7559;
}
.product-details-section .img-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: url("../img/chickpeas-bg.jpg") center center/cover;
  height: 200px;
  width: 100%;
  position: relative;
}
.product-details-section .img-box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #393636;
  opacity: 0.5;
}
.product-details-section img {
  width: 10%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 3px 5px rgba(57, 54, 54, 0.5));
}
.product-details-section h3 {
  color: #fff;
  position: relative;
  z-index: 2;
}
.product-details-section h3:first-of-type {
  margin-left: 3%;
}
.product-details-section h3:last-of-type {
  margin-right: 3%;
}
.product-details-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-details-section ul {
  margin: 18% 0 30%;
  list-style: none;
  padding-left: 0;
}
.product-details-section li {
  color: #393636;
}
.product-details-section li + li {
  margin-top: 1.2%;
}
.product-details-section .container h3 {
  margin: 0;
  color: #847767;
  align-self: start;
}
.product-details-section .container h3 + h3 {
  margin-top: 2%;
}
.product-details-section .brown-bg {
  background: rgb(145.6446808511, 131.8425531915, 114.8553191489);
  position: absolute;
  left: 0;
  bottom: 27%;
  width: 10%;
  height: 40px;
}
.product-details-section .logo {
  width: 55%;
  position: absolute;
  right: 0;
  bottom: -1.2%;
  filter: none;
}

@media (min-width: 700px) {
  section {
    margin: 10% 0 5%;
  }
}
@media (min-width: 700px) and (max-width: 1042px) {
  .course-intro {
    padding: 3% 0 0;
    margin: 15% 0 5%;
  }
  .course-intro:after {
    height: 15px;
  }
  .course-intro img {
    width: 18%;
    margin-top: 0;
  }
  .course-content article {
    width: 48%;
  }
  .course-content article:first-of-type {
    align-items: end;
    margin-left: auto;
    margin-top: 4%;
  }
  .course-content .link-box img {
    width: 25%;
  }
  .dna-image-wrapper {
    top: 37%;
    height: 800px;
  }
  .DNA-img {
    top: 0;
  }
  .testimonial-before-after {
    padding-top: 0;
    flex-direction: row;
    align-items: end;
    justify-content: center;
    margin-top: 5%;
  }
  .testimonial-before-after h1 {
    margin-left: 4%;
    padding-bottom: 1%;
    font-size: 30px;
  }
  .testimonial-before-after .gray-box {
    width: 6%;
    height: -webkit-fill-available;
  }
  .testimonial-before-after img {
    width: 47%;
  }
  .product-extract-serum {
    margin: 20% 0 16%;
  }
  .product-extract-serum img {
    width: 25%;
  }
  .product-extract-serum h1 {
    padding: 0 0 0.5% 2%;
    margin-bottom: 2%;
  }
  .product-extract-serum p {
    padding: 0;
    margin: 0 0 0 27%;
  }
  .product-details-section {
    padding-bottom: 20%;
    border-bottom: 30px solid #9E7559;
  }
  .product-details-section img {
    width: 7%;
  }
  .product-details-section h3:first-of-type {
    margin-left: 6%;
  }
  .product-details-section h3:last-of-type {
    margin-right: 6%;
  }
  .product-details-section ul {
    margin: 15% 0 22%;
  }
  .product-details-section .container h3 {
    margin-left: 5%;
  }
  .product-details-section .brown-bg {
    bottom: 32%;
    width: 8%;
    height: 60px;
  }
  .product-details-section .logo {
    width: 40%;
    bottom: -1.5%;
  }
}
@media (min-width: 1024px) {
  .course-intro {
    padding: 3% 15px 1%;
    margin: 10% 0 0;
  }
  .course-intro:after {
    height: 20px;
  }
  .course-intro img {
    width: 18%;
    margin-top: 2%;
  }
  .course-content article {
    width: 45%;
  }
  .course-content article:first-of-type {
    align-items: end;
    margin-left: auto;
    margin-top: 4%;
  }
  .course-content article + article {
    margin-top: 12%;
  }
  .course-content .link-box {
    margin-top: 4%;
  }
  .course-content .link-box a {
    margin-right: 1%;
  }
  .course-content .link-box img {
    width: 15%;
  }
  .dna-image-wrapper {
    top: 60%;
    height: 960px;
  }
  .DNA-img {
    top: 0;
    opacity: 0.6;
    transform: rotate(5deg) translateX(-5%);
  }
  .testimonial-before-after {
    padding-top: 0;
    flex-direction: row;
    align-items: end;
    justify-content: center;
    margin-top: 5%;
  }
  .testimonial-before-after .title {
    align-items: end;
  }
  .testimonial-before-after h1 {
    margin-left: 10%;
  }
  .testimonial-before-after .gray-box {
    width: 6%;
    height: -webkit-fill-available;
  }
  .testimonial-before-after img {
    width: 50%;
  }
  .testimonial-before-after img.product-img {
    width: 11%;
    margin-left: 5%;
  }
  .product-extract-serum {
    margin-top: 15%;
    margin-bottom: 10%;
  }
  .product-extract-serum img {
    width: 17%;
  }
  .product-extract-serum .text {
    width: 83%;
  }
  .product-extract-serum h1 {
    padding: 0 0 0.5% 2%;
  }
  .product-extract-serum p {
    margin: 0 0 0 19%;
    padding: 0;
  }
  .product-details-section {
    padding-bottom: 10%;
    border-bottom: 40px solid #9E7559;
  }
  .product-details-section .img-box {
    height: 300px;
  }
  .product-details-section img {
    width: 4.5%;
  }
  .product-details-section h3:first-of-type {
    margin-left: 10%;
  }
  .product-details-section h3:last-of-type {
    margin-right: 10%;
  }
  .product-details-section ul {
    margin: 10% 0 18%;
  }
  .product-details-section .container h3:first-of-type {
    margin: 0;
  }
  .product-details-section .brown-bg {
    bottom: 32%;
    width: 5%;
    height: 100px;
  }
  .product-details-section .logo {
    width: 35%;
    bottom: -2.6%;
  }
}
@media (min-width: 800px) and (max-width: 999px) {
  .dna-image-wrapper {
    top: 47%;
    height: 820px;
  }
}
@media (min-width: 1000px) and (max-width: 1099px) {
  .dna-image-wrapper {
    top: 55%;
    height: 820px;
  }
}
@media (min-width: 1100px) and (max-width: 1199px) {
  .dna-image-wrapper {
    top: 55%;
    height: 820px;
  }
  .DNA-img {
    top: 0;
    width: 100vw;
    transform: rotate(0) translateX(0);
  }
}
@media (min-width: 1024px) and (max-width: 1500px) {
  .dna-image-wrapper {
    height: 820px;
  }
}
@media (min-width: 2000px) {
  .dna-image-wrapper {
    top: 40%;
  }
}/*# sourceMappingURL=course-introduction.css.map */