@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,400&display=swap");
.teal {
  color: #0C807E;
}

@font-face {
  font-family: "KazimirRegular";
  src: url("../Assets/Fonts/Kazimir/KazimirText-Regular.ttf");
}
@font-face {
  font-family: "KazimirMedium";
  src: url("../Assets/Fonts/Kazimir/KazimirText-Medium.ttf");
}
@font-face {
  font-family: "KazimirSemibold";
  src: url("../Assets/Fonts/Kazimir/KazimirText-Semibold.ttf");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  font-synthesis: none !important;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

a {
  cursor: pointer;
  color: #0C807E;
  text-decoration: underline;
  transition: color 350ms;
}
a:hover {
  color: rgb(15.06, 160.64, 158.13);
}

img {
  max-width: 100%;
  display: block;
}

html, body {
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  min-width: 320px;
  max-width: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background: #FFFFFF;
  color: #041F38;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-variant-ligatures: no-common-ligatures !important;
  font-variant-ligatures: no-common-ligatures !important;
}
body main {
  max-width: 1400px;
  margin: 0 auto;
}
body h1 {
  font-family: KazimirSemibold, serif;
}
body h2, body h3 {
  font-weight: 600;
}
body h2 {
  font-size: 1.625rem;
  line-height: 1.2;
}
@media only screen and (min-width: 680px) {
  body h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1100px) {
  body h2 {
    font-size: 2.375rem;
  }
}
body p, body ul {
  font-size: 0.875rem;
}
@media only screen and (min-width: 680px) {
  body p, body ul {
    font-size: 1rem;
  }
}
body .button {
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 1.25rem 2.5rem;
  margin-top: 2.5rem;
  border-radius: 5rem;
  border: none;
  background-color: #F9C639;
  color: #041F38;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 350ms, background-color 350ms;
}
body .button:hover {
  transform: scale(1.025);
  background-color: rgb(250.05, 207.975, 91.65);
}
body .button:focus-visible {
  outline: 0.1875rem solid #041F38;
  outline-offset: 0.125rem;
}
@media only screen and (min-width: 680px) {
  body .button {
    font-size: 1.0625rem;
    padding: 1.25rem 2.5rem;
  }
}
body .hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  min-height: min-content;
  padding: 5rem 5vw;
  gap: 2.5rem;
}
@media only screen and (min-width: 680px) {
  body .hero {
    padding: 8.75rem 5vw;
    gap: 5rem;
  }
}
body .hero h1 {
  font-size: 2.625rem;
}
@media only screen and (min-width: 680px) {
  body .hero h1 {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 1100px) {
  body .hero h1 {
    font-size: 4rem;
  }
}
body .hero .subtitle {
  display: inline-block;
  font-family: KazimirRegular, serif;
  font-size: 1.25rem;
  color: #7C8899;
  margin-top: 10px;
}
@media only screen and (min-width: 680px) {
  body .hero .subtitle {
    font-size: 1.5rem;
  }
}
body .hero .description {
  font-family: KazimirMedium, serif;
  font-size: 4.25vw;
  max-width: 45rem;
}
@media only screen and (min-width: 680px) {
  body .hero .description {
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 1100px) {
  body .hero .description {
    font-size: 2rem;
  }
}
body .hero .description span {
  display: inline-block;
}
body .hero .description .middle {
  position: relative;
}
body .hero .description .middle::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% + 0.125em);
  z-index: 1;
  width: 0;
  height: 0.125em;
  background: #0C807E;
  animation-name: extend;
  animation-delay: 1s;
  animation-duration: 600ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes extend {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
body .hero .description .bottom {
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 1.6s;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body .hero .sticker {
  width: 70%;
  max-width: 573px;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity, filter;
  animation: slap 350ms cubic-bezier(0.72, 0.041, 0.967, 0.441) 3s forwards;
}
@keyframes slap {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(1.4) rotate(8deg);
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(1.5deg);
    filter: blur(0.01px);
  }
}
@media only screen and (min-width: 680px) {
  body .hero .sticker {
    width: 60%;
  }
}
body .block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 5vw;
}
body .block p {
  max-width: 45.625rem;
}
body .block p.subtitle {
  font-size: 1rem;
  font-weight: 600;
  max-width: 22.5rem;
  margin-top: 1.5625rem;
}
@media only screen and (min-width: 680px) {
  body .block p.subtitle {
    font-size: 1.125rem;
    max-width: 25rem;
  }
}
@media only screen and (min-width: 1100px) {
  body .block p.subtitle {
    font-size: 1.25rem;
    max-width: 27.5rem;
  }
}
body .block p + p {
  margin-top: 1.5625rem;
}
body .block h2 + p,
body .block h3 + p,
body .block p.subtitle + p {
  margin-top: 1.5625rem;
}
@media only screen and (min-width: 680px) {
  body .block h2 + p,
  body .block h3 + p,
  body .block p.subtitle + p {
    margin-top: 2.1875rem;
  }
}
body .block p + ul {
  margin-top: 1.25rem;
}
body .block ul + p {
  margin-top: 1.25rem;
}
body .about {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 680px) {
  body .about {
    margin-top: 3.125rem;
  }
}
body .about div.images {
  position: relative;
  width: 100%;
  height: 7.5rem;
  margin-top: 3.75rem;
}
@media only screen and (min-width: 680px) {
  body .about div.images {
    height: 10rem;
    margin-top: 6.25rem;
  }
}
@media only screen and (min-width: 1100px) {
  body .about div.images {
    height: 12.5rem;
    margin-top: 8.75rem;
  }
}
body .about div.images .grid {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
}
@media only screen and (min-width: 680px) {
  body .about div.images .grid {
    gap: 1.375rem;
  }
}
@media only screen and (min-width: 1100px) {
  body .about div.images .grid {
    gap: 1.875rem;
  }
}
body .about div.images .grid img {
  height: 100%;
  max-width: none;
  aspect-ratio: 7/6;
  object-fit: cover;
  border-radius: 0.3125rem;
}
@media only screen and (min-width: 680px) {
  body .about div.images .grid img {
    aspect-ratio: 4/3;
  }
}
@media only screen and (min-width: 1100px) {
  body .about div.images .grid img {
    aspect-ratio: 3/2;
  }
}
body .content {
  margin-top: 5.625rem;
}
@media only screen and (min-width: 680px) {
  body .content {
    margin-top: 9.375rem;
  }
}
body .content .grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  row-gap: 4.375rem;
  column-gap: 6.25rem;
  margin-top: 3.125rem;
  padding: 1.875rem 0;
}
@media only screen and (min-width: 1100px) {
  body .content .grid {
    column-gap: 10rem;
  }
}
@media only screen and (min-width: 680px) {
  body .content .grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 0;
    margin-top: 5rem;
    padding: 2.5rem 0 8.75rem;
    margin-bottom: 5rem;
  }
  body .content .grid::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    width: 0.125rem;
    z-index: -1;
    background: #E2E5E9;
  }
}
body .content .grid.extra-bottom-padding {
  padding-bottom: 3.125rem;
}
@media only screen and (min-width: 680px) {
  body .content .grid.extra-bottom-padding {
    padding-bottom: 15.625rem;
  }
}
body .content .grid .cells {
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media only screen and (min-width: 680px) {
  body .content .grid .cells {
    grid-row-start: var(--grid-row-start, auto);
    grid-row-end: span var(--grid-row-end, 1);
  }
  body .content .grid .cells:nth-child(odd) {
    align-items: start;
    text-align: start;
    grid-column: 1;
  }
  body .content .grid .cells:nth-child(odd) ul {
    padding: 0.625rem 0 0.625rem 1.875rem;
  }
  body .content .grid .cells:nth-child(even) {
    align-items: end;
    text-align: right;
    grid-column: 2;
  }
  body .content .grid .cells:nth-child(even) ul {
    border-left: none;
    border-right: 0.125rem solid #E2E5E9;
    text-align: right;
    padding: 0.625rem 1.875rem 0.625rem 0;
  }
}
body .content .grid .cells .pharmacist {
  font-size: 1.25rem;
  font-family: KazimirSemibold, serif;
}
@media only screen and (min-width: 680px) {
  body .content .grid .cells .pharmacist {
    font-size: 1.5625rem;
  }
}
body .content .grid .cells h3 {
  font-size: 1.375rem;
  line-height: 1.4;
  margin-top: 1.875rem;
}
@media only screen and (min-width: 680px) {
  body .content .grid .cells h3 {
    font-size: 1.75rem;
  }
}
body .content .grid .cells ul {
  list-style: none;
  font-style: italic;
  border-left: 0.125rem solid #E2E5E9;
  text-align: left;
  padding: 0.3125rem 0 0.3125rem 1.25rem;
}
body .content .grid .cells ul li + li {
  margin-top: 0.625rem;
}
@media only screen and (min-width: 680px) {
  body .content .grid .cells ul li + li {
    margin-top: 0.9375rem;
  }
}
body .content .card-container {
  position: relative;
  width: 100vw;
  margin-top: 1.875rem;
}
@media only screen and (min-width: 680px) {
  body .content .card-container {
    width: 100%;
    margin-top: 0;
  }
}
body .content .card-container .image {
  aspect-ratio: 3/2;
}
body .content .card-container .image img {
  width: 100%;
  height: 100%;
  border-radius: 0.9375rem;
  object-fit: cover;
}
@media only screen and (min-width: 680px) {
  body .content .card-container .image {
    position: absolute;
    height: 20rem;
  }
  body .content .card-container .image.left {
    top: 0;
    left: 0;
    transform: translate(-40%, -70%);
  }
  body .content .card-container .image.right {
    bottom: 0;
    right: 0;
    transform: translate(40%, 85%);
  }
}
@media only screen and (min-width: 1100px) {
  body .content .card-container .image {
    height: 21.875rem;
  }
  body .content .card-container .image.left {
    transform: translate(-40%, -60%);
  }
  body .content .card-container .image.right {
    transform: translate(40%, 60%);
  }
}
@media only screen and (max-width: 679px) {
  body .content .card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.125rem;
  }
  body .content .card-container .image {
    height: 18.75rem;
  }
  body .content .card-container .image.left {
    align-self: flex-end;
    margin-right: 3.125rem;
  }
  body .content .card-container .image.right {
    align-self: flex-start;
    margin-left: 3.125rem;
  }
}
body .content .card-container .card {
  width: 100%;
  background: #FAF6EC;
  padding: 3.75rem 2.5rem;
}
@media only screen and (min-width: 680px) {
  body .content .card-container .card {
    padding: 4.375rem 4.375rem 5.625rem;
    border-radius: 0.625rem;
  }
}
@media only screen and (min-width: 1100px) {
  body .content .card-container .card {
    padding: 4.375rem 10rem;
  }
}
body .content .card-container .card h2.small {
  font-size: 1.75rem;
  max-width: 33.75rem;
  margin: 0 auto;
}
body .content .card-container .card .columns {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  margin-top: 3.125rem;
}
@media only screen and (min-width: 680px) {
  body .content .card-container .card .columns {
    flex-direction: row;
    gap: 5rem;
  }
}
body .content .card-container .card .columns .column {
  flex: 1;
  text-align: center;
}
body .content .card-container .card .columns .column .subtitle {
  margin: 0 auto;
}
@media only screen and (min-width: 680px) {
  body .content .card-container .card .columns .column {
    text-align: left;
  }
}
body .content .card-container .card .button {
  margin-top: 3.125rem;
}
body .footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.375rem 5vw;
  gap: 3.125rem;
  background: #041F38;
  color: #FFFFFF;
}
@media only screen and (min-width: 680px) {
  body .footer {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 6.25rem;
  }
}
body .footer .logo {
  transition: transform 350ms, opacity 350ms;
}
body .footer .logo:hover {
  transform: scale(1.025);
  opacity: 0.75;
}
body .footer .logo img {
  height: 6.25rem;
}
body .footer a:focus-visible {
  outline-color: #FFFFFF;
  border-radius: 0.3125rem;
}
body .footer div {
  text-align: center;
}
@media only screen and (min-width: 680px) {
  body .footer div {
    text-align: right;
  }
}
body .footer div .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}
@media only screen and (min-width: 680px) {
  body .footer div .icons {
    justify-content: flex-end;
  }
}
body .footer div .icons a {
  display: block;
  height: 3.4375rem;
  aspect-ratio: 1;
  padding: 0.9375rem;
  transition: transform 350ms, opacity 350ms;
}
body .footer div .icons a:hover {
  transform: scale(1.15);
  opacity: 0.75;
}
body .footer div .icons a img {
  height: 100%;
}
body .footer div p {
  padding: 0 0.9375rem;
  margin-top: 1rem;
}

.js--slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out;
}
.js--slide-up.slide-in {
  opacity: 1;
  transform: translateY(0);
}

.js--grow-divider::before {
  height: 0;
  transition: height 1s cubic-bezier(0.347, 0.081, 0.796, 0.191);
}
.js--grow-divider.divider-grown::before {
  height: 100%;
}

/*# sourceMappingURL=styles.css.map */
