/* ----------------------------------------------------------------
	Basic
-----------------------------------------------------------------*/

dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
}

::selection {
  background: #ff0004;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #ff0004; /* Firefox */
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #ff0004; /* Safari */
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

/* ----------------------------------------------------------------
	Typography
-----------------------------------------------------------------*/

body {
  line-height: 1.5;
  color: #555;
  font-family: "Lato", sans-serif;
}

a {
  text-decoration: none !important;
  color: #ff0004;
}

a:hover {
  color: #222;
}

a img {
  border: none;
}

img {
  max-width: 100%;
}

iframe {
  width: 100%;
  border: 0 !important;
  overflow: hidden !important;
}

/* ----------------------------------------------------------------
	Basic Layout Styles
-----------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
  font-family: "Poppins", sans-serif;
}

h5,
h6 {
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 0.875rem;
}

h6 {
  font-size: 12px;
}

h4 {
  font-weight: 600;
}

h5,
h6 {
  font-weight: bold;
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1rem;
  }
}

p,
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset,
form {
  margin-bottom: 30px;
}

#main {
  min-height: 100vh;
}

#main > section:nth-child(1) {
  margin-top: 0;
}

#main > section {
  margin-top: 120px;
}

#navbar {
  width: 100%;
  position: relative;
  min-height: 65px;
  display: flex;
  opacity: 1;
  transition: all 200ms ease;
}

.header__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hide {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

.search-bar__wrap.show {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: all;
}

.button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  margin: 5px;
  padding: 8px 22px;
  font-size: 0.875rem;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

button:disabled {
  background-color: #ddd;
  color: #888;
  pointer-events: none;
  cursor: not-allowed;
}

.button--x-lg {
  padding: 9px 32px;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 34px;
}

.icon {
  height: 20px;
  width: 20px;
  transition: all 400ms ease;
}

.icon--small {
  height: 15px;
  width: 15px;
}

.btn__close {
  top: 0;
  right: 0;
  height: 100%;
  z-index: 100;
  position: absolute;
  display: flex;
  align-items: center;
}

.btn--icon {
  border: 0;
  background-color: transparent;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  transition: all 100ms ease;
}

button.btn__close:hover,
button#delete:hover {
  color: #ff0004;
}

.breadcrumb-wrapper {
  margin: 2.5rem 0;
  display: flex;
  justify-content: end;
}

.card {
  background-color: transparent;
}

header {
  width: 100%;
  z-index: 50;
  transition: all 200ms ease;
}

header.transparent {
  top: 30px;
  background-color: transparent;
}

.drawer__toggle {
  display: flex;
  align-items: center;
}

.search-bar__wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: stretch;
  top: 0;
  left: 0;
  transition: all 200ms ease;
}

.search__form input {
  box-shadow: none !important;
  border-radius: 0;
  border: 0;
  outline: none !important;
  padding: 10px 80px 10px 0;
  height: 100%;
  background-color: transparent !important;
  font-weight: 700;
  font-size: 32px;
  margin-top: 0 !important;
  letter-spacing: 2px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.navbar__logo {
  opacity: 1;
  padding: 0.5rem 0;
  align-items: center;
  justify-content: center;
}

.navbar__logo img {
  width: var(--logo-width-mobile);
}

.navbar__logo.logo--start {
  margin-left: 1rem;
}

.navbar__logo.logo--start,
.navbar__logo.logo--center {
  display: none;
}

.navbar__wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.navbar__menu {
  display: none;
  flex-grow: 1;
  justify-content: center;
}

.navbar__misc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.misc__item {
  padding: 0.5rem;
  cursor: pointer;
}

.menu__wrap {
  list-style: none;
  margin: 0;
  display: flex;
  height: inherit;
  justify-content: start;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.menu__item {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  width: max-content;
  transition: all 200ms ease;
}

.menu__list > .menu__item {
  padding: 1rem 2rem 1rem 2rem;
  width: 100%;
  transition: all 200ms ease;
}

.menu__list > .menu__item:hover {
  background-color: rgba(200, 200, 200, 0.5);
}

.sub-navigation__container {
  top: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 501;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 300ms cubic-bezier(0.13, 0.15, 0.26, 0.97);
}

.menu__list > .menu__item.sub__item.active + .sub-navigation__container {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.menu.menu__list {
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu__link {
  padding-left: 1rem;
  padding-right: 1rem;
  text-transform: uppercase;
  width: 100%;
}

.sub-menu__container > .menu__item:hover {
  padding-left: 18px;
  background-color: rgba(200, 200, 200, 0.2);
}

.menu__item.sub__item:hover > .sub-menu__container {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.menu__wrap > .menu__item.sub__item:hover > .sub-menu__container {
  margin-top: 0;
  top: 100%;
}

.sub-menu__container > .menu__item.sub__item:hover > .sub-menu__container {
  margin-top: 0;
  left: 100%;
}

.sub-menu__container {
  position: absolute;
  visibility: hidden;
  background-color: #fff;
  box-shadow: 0px 13px 42px 11px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  padding: 0;
  min-width: 220px;
  transition: all 200ms cubic-bezier(0.13, 0.15, 0.26, 0.97);
}

.menu__wrap > .menu__item.sub__item > .sub-menu__container {
  top: 80%;
  left: 0;
}

.menu__item.sub__item > .sub-menu__container {
  top: -2px;
  left: 80%;
}

.sub-menu__container > .menu__item {
  padding: 10px 15px;
  width: 100%;
  min-width: max-content;
  justify-content: space-between;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .menu__wrap {
    height: 100%;
  }

  .menu__item:last-child {
    margin-bottom: 2rem;
  }
}

.scroll-to-top {
  z-index: 50;
  right: 0;
  bottom: 150px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

.whatsapp-floating-button {
  background: #25d366;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 40px;
  z-index: 500;
  box-shadow: 2.8px 2.8px 2.2px rgba(0, 0, 0, 0.008),
    6.7px 6.7px 5.3px rgba(0, 0, 0, 0.012),
    12.5px 12.5px 10px rgba(0, 0, 0, 0.015),
    22.3px 22.3px 17.9px rgba(0, 0, 0, 0.018),
    41.8px 41.8px 33.4px rgba(0, 0, 0, 0.022),
    100px 100px 80px rgba(0, 0, 0, 0.03);
  transition: all 200ms ease;
}

.drawer__wrap {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(200, 200, 200, 0.5);
  z-index: 200;
  transition: all 300ms cubic-bezier(0.13, 0.15, 0.26, 0.97);
}

.drawer__wrap.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  height: 100%;
  width: 440px;
  box-shadow: 0px 13px 42px 11px rgba(0, 0, 0, 0.05);
  pointer-events: all;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  z-index: 500;
  transition: all 300ms cubic-bezier(0.13, 0.15, 0.26, 0.97);
}

.drawer.drawer__cart {
  right: -440px;
}

.drawer.drawer__navigation {
  left: -440px;
  box-shadow: none;
  transition: all 200ms cubic-bezier(0.13, 0.15, 0.26, 0.97);
}

.drawer.drawer__navigation.active {
  left: 0;
  top: 0;
  bottom: 0;
}

.drawer__wrap.active .drawer.drawer__cart {
  right: 0;
}

.drawer__wrap.active .drawer.drawer__navigation {
  left: 0;
}

.drawer__title {
  width: 100%;
  max-height: 100px;
  position: relative;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.drawer__title .btn__close {
  position: relative;
  padding: 2rem;
  background-color: rgba(220, 220, 220, 0.5);
  cursor: pointer;
  transition: all 200ms linear;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.drawer__title .btn__close:hover {
  background-color: rgba(220, 220, 220, 0.3);
}

.drawer__title .btn__close:hover svg.icon {
  transform: rotate(180deg);
}

.drawer__title h2 {
  font-size: 20pt;
  transition: font-size 200ms ease;
}

.drawer__content {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-grow: 1;
  position: relative;
}

.drawer__content.mobile {
  flex-direction: column;
  justify-content: start;
}

.cart__empty {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  margin: 50% 0;
}

.cart__empty button {
  width: fit-content;
  text-shadow: none;
}

.drawer__content .item__list {
  position: absolute;
  width: 95%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: scroll;
}

.cart__item {
  width: 100%;
  height: fit-content;
}

.item__summary {
  display: flex;
  gap: 0.5rem;
}

.item__img {
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
}

.item__img > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.item__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item__action {
  display: flex;
  justify-content: end;
  gap: 0.25rem;
}

.item__quantity {
  display: flex;
  border: 1px solid #cdcdcd;
  width: 35%;
  border-radius: 10px;
}

.item__quantity input {
  border: 0;
  background-color: transparent;
  width: 100%;
  text-align: center;
}

.cart__item .item__summary .item__info h3 {
  margin: 0;
}

.drawer__action {
  display: flex;
  width: 100%;
}

.drawer__action a {
  width: 100%;
}

.drawer__menu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  height: 100vh;
  justify-content: start;
  overflow-y: scroll;
}

.drawer__menu .menu__wrap {
  display: grid;
  justify-content: stretch;
}

.page__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.page__title h3 {
  font-size: 2rem;
  font-weight: bold;
}

.btn__back {
  padding: 0.5rem;
  padding-left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 200ms ease;
  cursor: pointer;
}

.btn__back:hover {
  background-color: rgba(200, 200, 200, 0.5);
}

.btn__back h3 {
  margin: 0;
  font-size: 11pt;
  font-weight: 400;
}

section:is(.categories__slider) {
  position: relative;
  display: flex;
  min-height: 500px;
  overflow: hidden;
}

section:is(.categories__slider) .background-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.category__list {
  display: flex;
  width: 100%;
  align-items: center;
  justify-self: center;
}

.category__list.list--row {
  justify-content: center;
  margin: 0;
}

.category__item {
  height: 320px;
  border-width: 0;
  border-radius: 15px;
  overflow: hidden;
}

.category__item img {
  object-fit: cover;
  height: 100%;
}

.category__item .item__text {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 200ms ease;
}

.item__text h5 {
  color: #eee;
  font-weight: 700;
}

.category__item:hover .item__text {
  background-color: rgba(0, 0, 0, 0.3);
}

.background-wrap img,
.background-wrap source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  height: 750px;
  position: relative;
  background-size: 300% 100%;
  overflow: hidden;
  display: flex;
}

.hero__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.hero__loader {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: 0;
  left: 0;
  z-index: 20;
}

.hero__loader.done {
  display: none;
}

.hero__player {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
}

.hero__player iframe,
.hero__player video {
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
}

.hero__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  left: -100%;
  max-width: none;
}

@media screen and (min-width: 1140px) {
  .hero__player iframe {
    width: 100%;
    height: 300%;
    left: auto;
    top: -100%;
  }
}

@media only screen and (min-width: 769px) {
  .hero {
    height: 720px;
  }
}

@media only screen and (max-width: 768px) {
  .hero--mobile-90vh {
    height: 90vh;
  }
}

.hero__content-wrapper {
  position: absolute;
  z-index: 10;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
}

.hero__content {
  position: absolute;
  width: 80%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.hero__content-wrapper.position--top-left {
  justify-content: start;
  align-items: start;
}

.hero__content-wrapper.position--top-center {
  justify-content: center;
  align-items: start;
}

.hero__content-wrapper.position--top-right {
  justify-content: end;
  align-items: start;
}

.hero__content-wrapper.position--center-left {
  justify-content: start;
  align-items: center;
}

.hero__content-wrapper.position--center {
  justify-content: center;
  align-items: center;
}

.hero__content-wrapper.position--center-right {
  justify-content: end;
  align-items: center;
}

.hero__content-wrapper.position--bottom-left {
  justify-content: start;
  align-items: end;
}

.hero__content-wrapper.position--bottom-center {
  justify-content: center;
  align-items: end;
}

.hero__content-wrapper.position--bottom-right {
  justify-content: end;
  align-items: end;
}

.content__typography.text-left {
  text-align: start;
}

.content__typography.text-right {
  text-align: end;
}

.content__button {
  display: flex;
}

.content__button.position--top-left,
.content__button.position--bottom-left {
  justify-content: start;
}

.content__button.position--top-center,
.content__button.position--bottom-center,
.content__button.position--center {
  justify-content: center;
}

.content__button.position--top-right,
.content__button.position--bottom-right {
  justify-content: end;
}

.image-with-text__wrapper {
  align-items: center;
}

.image-with-text__wrapper .content__typography {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.content__typography p {
  white-space: pre-line;
}

.image-hero {
  display: flex;
  position: relative;
  height: fit-content;
  min-height: 500px;
  max-height: 801px;
}

.image-hero .content__typography {
  width: 80%;
  padding-left: 3rem;
  padding-right: 3rem;
  flex-direction: column;
}

.background-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.swiper-navigation {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  margin: 0 1rem;
  position: absolute;
  top: calc(50% - 20px);
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  transition: all 200ms ease;
}

.swiper.products:hover .swiper-navigation {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  margin: 0 0.25rem;
}

.swiper-navigation.next,
.slider-navigation.btn__next {
  right: 0;
}

.product__card {
  cursor: pointer;
}

.product__card:hover .product__thumb .btn__add-item,
.product__card:hover .product__thumb .btn__product-variants {
  transform: scale(1);
  visibility: visible;
  pointer-events: all;
}

.product__thumb {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

.product__thumb .badge {
  position: absolute;
  z-index: 2;
  transform: translate(10px, 10px);
  padding: 0.5rem;
}

.product__thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  transition: all 500ms ease;
}

.product__thumb .main-img {
  top: 0;
}

.product__thumb .variant-img {
  top: 100%;
}

.product__thumb:has(.variant-img):hover .main-img {
  top: -100%;
}

.product__thumb:hover .variant-img {
  top: 0;
}

.product__desc {
  padding: 0.875rem 0;
  text-align: center;
}

.product__name {
  font-size: 14px;
  letter-spacing: -1px;
  line-height: 1.3;
  font-weight: 500 !important;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-transform: capitalize;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem !important;
}

.product__price del {
  color: #888;
  font-weight: 400;
  font-size: 90%;
}

.product__price ins {
  text-decoration: none;
  font-weight: 700;
}

.btn__add-item,
.btn__product-variants {
  position: absolute;
  bottom: 15px;
  left: calc(50% - 25px);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  transition: all 200ms ease;
  transform: scale(0);
  pointer-events: none;
  visibility: hidden;
}

.blog__thumb {
  aspect-ratio: 16/9;
  border-radius: 0;
  overflow: hidden;
}

.blog__thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 500ms ease;
}

.blog__thumb:hover img {
  transform: scale(1.1);
}

.slider-navigation {
  position: absolute;
  z-index: 2;
  top: calc(50% - 24px);
  border-radius: 0;
  opacity: 0.7;
}

footer {
  padding-top: 3rem;
  margin-top: 120px;
}

.footer-wrapper .row:first-child > div {
  margin: 0.875rem 0;
}

.social-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1/1;
  height: 38px;
  width: 38px;
  border: 1px solid #aaa;
  border-radius: 50%;
  overflow: hidden;
}

.social-icon.fill {
  color: #fff !important;
}

.social-link .outline {
  top: 0;
}

.social-link .fill {
  top: 100%;
}

.social-link:hover .outline {
  top: -100%;
}

.social-link:hover .fill {
  top: 0;
}

.social-link #facebook {
  background-color: rgba(24, 119, 242, 1);
}
.social-link #twitter {
  background-color: rgba(29, 161, 242, 1);
}
.social-link #instagram {
  background-image: linear-gradient(
    to right,
    rgba(216, 32, 76, 1),
    rgba(131, 58, 180, 1)
  );
}
.social-link #whatsapp {
  background-color: rgba(37, 211, 102, 1);
}
.social-link #youtube {
  background-color: rgba(255, 0, 0, 1);
}
.social-link #tiktok {
  background-color: rgba(0, 0, 0, 1);
}

.social-icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border-radius: 50%;
  transition: all 300ms ease;
}

@media (min-width: 992px) {
  .navbar__logo img {
    width: var(--logo-width);
  }

  .drawer__toggle {
    display: none;
  }

  .misc__item#account {
    display: block;
  }

  .navbar__menu {
    display: flex;
  }

  .navbar__logo.logo--start {
    margin-left: 0;
  }

  .drawer.drawer__cart {
    right: -440px;
  }
}

@media (max-width: 991px) {
  .swiper.products .swiper-navigation {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    margin: 0 0.25rem;
  }

  .product__card .product__thumb .btn__add-item,
  .product__card .product__thumb .btn__product-variants {
    transform: scale(1);
    visibility: visible;
    pointer-events: all;
  }
}

@media (max-width: 525px) {
  .drawer {
    width: 100%;
  }

  .drawer.drawer__navigation {
    left: -100%;
  }

  .banner-heading h2 {
    font-size: 1.25rem !important;
  }
}

@media (max-width: 375px) {
  .drawer.drawer__cart {
    right: -90%;
  }

  .drawer.drawer__navigation {
    left: -100%;
  }

  .drawer__wrap.active
    .drawer.drawer__cart
    .drawer__title
    .btn__close
    svg.icon {
    transform: rotate(180deg);
  }

  .drawer__title .btn__close {
    transform: scale(0.8) translateX(-10px);
  }

  .drawer__title h2 {
    font-size: 18pt;
  }

  .item__quantity {
    width: 50%;
  }

  .page__title {
    margin-top: 2.5rem;
  }

  .breadcrumb-wrapper {
    margin: 0.5rem 0;
  }
}

/* Testimonial */
.testimonial-body {
  min-height: 210px;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  border: 1px solid #0a0100;
}

.testimonial-carousel .carousel-indicators .active {
  background-color: #0a0100;
}

.testimonial-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.testimonial-footer-image,
.testimonial-footer-text {
  float: left;
}

.testimonial-footer-image {
  margin-right: 30px;
}

.testimonial-footer-image img {
  height: 60px;
  width: 60px;
  border-radius: 100%;
}

.testimonial-footer-text p {
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}

.testimonial-footer-text span {
  font-size: 14px;
}

.categories-wrapper {
  max-height: 300px;
  overflow-y: auto;
}

/* ----------------------------------------------------------------
	Rich Text
-----------------------------------------------------------------*/
.rich-text {
  overflow: hidden;
}
.rich-text h2 {
  font-size: 1.5rem !important;
}

.rich-text h3 {
  font-size: 1.2rem !important;
}

.rich-text strong {
  font-weight: bold;
}

.rich-text blockquote {
  border-left: 6px solid #ccc;
  margin: 0 10px 1.5rem;
  padding: 0.5rem 1.5rem;
  quotes: "\201C""\201D""\2018""\2019";
}

.rich-text blockquote p {
  white-space: pre-line;
  font-style: italic;
}

.rich-text blockquote p:last-child {
  margin-bottom: 0;
}

.rich-text .image-style-align-left {
  max-width: 50%;
  float: left;
  margin: 0 1.5rem 2rem 0;
}

.rich-text .image-style-align-right {
  max-width: 50%;
  float: right;
  margin: 0 0 1.5rem 2rem;
}

.rich-text figcaption {
  background-color: #f7f7f7;
  padding: 0.6em;
  outline-offset: -1px;
  opacity: 0.8;
  display: flex;
  justify-content: center;
  font-size: 0.875rem;
}

.rich-text figure img {
    height: auto !important;
    width: 100% !important;
}

@media screen and (max-width: 576px) {
  .rich-text .image {
    float: none;
    max-width: 100%;
    margin: 0 0 1rem;
  }
}
