<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "GothamNarrow-Bold";
  src: url("../assets/fonts/GothamNarrow-Bold.ttf");
}
@font-face {
  font-family: "GothamNarrow-Book";
  src: url("../assets/fonts/GothamNarrow-Book.ttf");
}

:root {
  --dark-grey: #333333;
  --orange: #eb641e;
}

body,
html {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.row {
  padding: 0;
  margin: 0;
}

/* HEADER */
#header {
  position: relative;
}

.banner {
  position: relative;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100vw;
  margin: 0;
  padding: 1rem 0;
  max-width: 100%;
}

.navbar-brand {
  margin-left: 12px;
}

.dropdown-divider {
  color: white;
}

.banner-caption {
  position: absolute;
  top: 40%;
  left: 15%;
  -ms-transform: translate(-15%, -50%);
  transform: translate(-15%, -50%);
  width: calc(60vw - 60px);
  z-index: 1;
}

.text-1 {
  font-size: 7vw;
  color: #007464;
  font-weight: 550;
  font-family: "GothamNarrow-Bold";
}

.text-2 {
  margin-top: -4%;
  font-size: 10vw;
  color: #eb641e;
  font-weight: 550;
  font-family: "GothamNarrow-Bold";
}

.text-3 {
  margin-top: -4%;
  font-size: 5vw;
  color: #95c537;
  font-weight: 550;
  font-family: "GothamNarrow-Bold";
}

.text-description {
  margin-top: -1%;
  font-size: 2.5vw;
  color: #007464;
  font-family: "GothamNarrow-Book";
}

/* INTRO */
#intro {
  margin: 100px auto;
  text-align: center;
}

.intro-body {
  color: var(--dark-grey);
  font-size: 16px;
  margin-top: 50px;
}

#intro img {
  max-width: 100%;
}

/* INGRIDIENTS */
#ingridients {
  margin-top: 4.688rem;
  text-align: center;
}

.ingridients-body {
  color: var(--dark-grey);
  font-size: 1rem;
}

.ingridients-text {
  font-weight: 600;
}

/* TESTIMONY */
#testimony {
  position: relative;
  margin: 5.5rem auto 0 auto;
  padding-top: 10.5rem;
  padding-bottom: 9.375rem;

  background-color: #f4cfbc;

  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 3.75rem);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 3.75rem);
}

.testimony-box {
  position: relative;
}

.testimony-icon {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.testimony-card {
  background-color: white;
  padding: 50px 40px;
  text-align: center;
  /* color: white; */
  /* box-shadow: 3px 3px 3px 3px #bebebe; */
  height: 100%;
  border-radius: 8px;
}

.testimony-cn {
  font-size: 20px;
  font-weight: 700;
  color: black;
}

.testimony-title {
  margin-top: 12px;
  margin-bottom: 30px;
  color: #eb641e;
  font-weight: 600;
  font-size: 20px;
}

.testimony-details {
  font-size: 1rem;
  color: var(--dark-grey);
}

.glide__slide {
  height: auto !important;
}

.glide__arrow {
  background-color: white !important;
  color: black !important;
  border-radius: 50% !important;
  font-size: 15px;
}

.glide__arrow--left {
  left: -50px !important;
}

.glide__arrow--right {
  right: -50px !important;
  margin-right: 0 !important;
}

/* FOOTER */
footer {
  position: relative;
  top: -3.75rem;
  margin-bottom: -3.75rem;
  padding-top: 10.25rem;
  padding-bottom: 2.25rem;
  text-align: center;

  background-image: url("../assets/procumin-propolis-assets/footer.png");
  background-repeat: no-repeat;
  background-size: cover;

  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 3.75rem);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 3.75rem);
}

.footer-body {
  text-align: center;
  color: #585858;
  font-size: 1rem;
  font-weight: 500;
}

.footer-cta {
  background-color: var(--orange);
  font-size: 18px;
  letter-spacing: 2px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 2em;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: white;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.footer-cta:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: white;
  z-index: -1;
}

.footer-cta:hover,
.footer-cta:focus {
  color: var(--orange);
}

.footer-cta:hover:before,
.footer-cta:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.footer-bottom {
  border-radius: 2rem;
  color: white;
  background-color: var(--orange);
  padding: 1.625rem 2.25rem;
  margin-left: 2.25rem;
  margin-right: 2.25rem;
  width: calc(100vw - 4.5rem);

  vertical-align: center;
  line-height: auto;
}

.footer-socmed-link a {
  margin-right: 1rem;
}

.footer-socmed-link:last-child {
  margin-right: 0;
}

.footer-socmed-link {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.footer-socmed-link a {
  margin-bottom: 18px;
}

.footer-socmed-link img {
  height: 23px;
}

@media (max-width: 375px) {
  .footer-cta {
    font-weight: 0.875rem;
    padding: 1rem;
  }

  .testimony-icon {
    top: -0.25rem;
  }

  .footer-bottom {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 620px) {
  .banner-caption {
    top: 50%;
    left: 23%;
  }

  .text-1 {
    font-size: 5vw;
  }

  .text-2 {
    font-size: 7vw;
    margin-top: -5%;
  }

  .text-3 {
    font-size: 3vw;
    margin-top: -5%;
  }

  .text-description {
    font-size: 2vw;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .navbar {
    padding: 24px 48px;
  }

  .intro-body,
  .ingridients-body {
    font-size: 1.5rem;
  }

  .testimony-icon {
    top: -1.25rem;
  }

  .testimony-details {
    font-size: 1.125rem;
  }

  .footer-cta {
    font-weight: 600;
    font-size: 1.75rem;
    padding: 12px 32px;
  }

  .footer-body {
    font-size: 1.625rem;
  }

  .footer-socmed-link a {
    margin-right: 26px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .footer-caption {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 50px;
  }

  .footer-cta {
    font-size: 32px;
    font-weight: 600;
    padding: 18px 50px;
  }

  .footer-socmed-link {
    justify-content: right;
  }

  .footer-socmed-link a {
    margin-bottom: 0;
  }

  .footer-copyright {
    text-align: left;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}
</pre></body></html>