.hero {
  width: 100%;
  height: 90vh;
  background-image: url("../images/hero.png");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-content {
  width: 75%;
  color: white;
  font-size: 4rem;
  text-align: center;
}
.hero-thin-heading {
  font-family: Raleway;
  font-weight: Light;
}
.hero-bold-heading {
  font-family: Raleway;
  font-weight: Bold;
}
.hero-button {
  background: rgba(91, 67, 44, 1);
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-family: Raleway;
  display: inline-block;
  margin: 2rem auto;
}
@media screen and (max-width: 768px) {
  .hero-content {
    font-size: 2rem;
  }
  .hero-button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}
.quote-section {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(90, 66, 43, 1);
  font-family: Raleway;
  font-weight: bold;
  font-style: italic;
}
.quote-container {
  width: 60%;
  text-align: center;
  padding: 4rem;
}
.quote-symbol {
  font-size: 8rem;
  line-height: 0.4;
}
.quote-text {
  font-size: 4rem;
}
.quote-by {
  font-size: 2rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .quote-container {
    width: 100%;
    padding: 2rem;
  }
  .quote-symbol {
    font-size: 4rem;
  }
  .quote-text {
    font-size: 2rem;
  }
  .quote-by {
    font-size: 1rem;
  }
}
.desktop.about {
  background-color: rgba(90, 66, 43, 1);
  padding: 4rem 0;
}
.desktop.contact {
  font-family: Raleway;
  padding: 4rem 0;
}
.mobile.about {
  background: url("../images/about.png");
}
.mobile.contact {
  color: #fffbf3;
  background: url("../images/contact2.png");
}
.mobile.about,
.mobile.contact {
  background-color: rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 4rem 0;
}
.desktop .about-two-sections {
  display: flex;
  justify-content: space-evenly;
}
.desktop .about-heading {
  margin: 4px;
  color: rgba(254, 251, 243, 1);
  font-family: Tenor Sans;
  font-size: 48px;
  text-decoration: underline;
}
.mobile .about-heading {
  color: rgba(254, 251, 243, 1);
  font-family: Tenor Sans;
  font-size: 32px;
  text-decoration: underline;
  text-align: center;
}
.desktop .about-description {
  margin: 2rem 0;
  color: rgba(254, 251, 243, 1);
  font-family: Raleway;
  font-weight: 200;
  line-height: 1.3;
  font-size: 22px;
}
.mobile .about-description {
  padding: 2rem;
  color: rgba(254, 251, 243, 1);
  font-family: Raleway;
  font-weight: 200;
  line-height: 1.6;
  font-size: 16px;
  text-align: center;
}
.about-link-holder {
  display: flex;
  justify-content: center;
}
.desktop .about-link-holder {
  justify-content: flex-start;
}
.about-link {
  margin: 4px;
  color: rgba(254, 251, 243, 1);
  font-family: Raleway;
  font-weight: 400;
}
.about-link:hover {
  text-decoration: underline;
}
.desktop .about-link {
  font-size: 24px;
}
.mobile .about-link {
  text-align: center;
  font-size: 16px;
}
.desktop .first-about-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 4rem 2rem;
  margin-right: 0;
  margin-left: 4rem;
}
.desktop .second-about-section {
  margin: 16px;
  text-align: center;
  flex: 1;
}
.second-contact-section {
  max-height: 90vh;
}
.desktop .second-about-section img {
  max-height: 90vh;
  max-width: 100%;
  border-radius: 25px;
  object-fit: cover;
}
.our-services {
  background-color: #fffbf3;
  color: rgba(90, 66, 43, 1);
  font-family: Tenor Sans;
  padding: 4rem;
}
@media screen and (max-width: 768px) {
  .our-services {
    text-align: center;
  }
}
.our-services .heading {
  margin: 3rem 0;
  text-decoration: underline;
  font-size: 48px;
}
.our-services .list-item {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  .our-services .list-item {
    display: block;
    margin: 4rem 0;
  }
}
.our-services .list-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.our-services .list-item .picture,
.our-services .list-item .text {
  flex: 1;
}
.our-services .list-item .picture img {
  width: 100%;
}
.our-services .text {
  display: flex;
}
.our-services .heading-num {
  margin: 0rem 4rem;
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .our-services .heading-num {
    display: none;
  }
  .our-services .title {
    margin: 1rem 0;
  }
}
.our-services .description {
  flex: 1;
  padding-right: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .our-services .description {
    padding-right: 0rem;
  }
}
.our-services .description .title {
  line-height: 1.5;
  font-size: 2rem;
  font-family: Raleway;
  font-weight: bold;
}
.our-services .description .content {
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: Raleway;
  font-weight: 300;
}
.recent-products {
  padding: 4rem;
}
.recent-products .heading {
  text-align: center;
  font-family: Tenor Sans;
  margin: 4rem 0;
  color: rgba(90, 66, 43, 1);
  text-decoration: underline;
  font-size: 48px;
}
.carousel-content {
  margin: 2rem 0;
  position: relative;
}
.carousel-content img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  border-radius: 25px;
}
.carousel-text {
  color: rgba(254, 251, 243, 1);
  position: absolute;
  bottom: 32px;
  left: 112px;
  font-family: Raleway;
  font-weight: Bold;
  font-size: 40px;
}
.carousel-pagination-holder {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.carousel-pagination-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #5b432c;
  margin: 0 0.5rem;
}
.carousel-pagination-dot:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .carousel-text {
    font-size: 24px;
    left: 16px;
    bottom: 16px;
  }
  .carousel-pagination-holder {
    margin-top: 0.5rem;
  }
  .carousel-pagination-dot {
    width: 1rem;
    height: 1rem;
    margin: 0 0.25rem;
  }
}
.carousel-pagination-dot.selected {
  background-color: #5b432c;
}
.contact-us {
  height: 100vh;
  background: url("../images/contact.png");
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-us .text {
  color: rgba(255, 255, 255, 1);
  max-width: 60%;
  font-family: Raleway;
  font-weight: Regular;
  font-size: 64px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-us .text {
    max-width: 80%;
    font-size: 48px;
  }
}
.contact-us-btn {
  margin-top: 3rem;
  display: block;
  color: rgba(255, 255, 255, 1);
  font-family: Raleway;
  font-weight: SemiBold;
  font-size: 24px;
  text-align: center;
}
.contact-us-btn:hover {
  text-decoration: underline;
}
