/* CORE CLASSES ------------------------------------------------- */
body {
  background-color: #f7f3ee;
  color: #000000;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-size: 18px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 21px;
}

h3 {
  font-size: 24px;
}

a {
  color: #546a76;
  text-decoration: underline;
}
a:hover {
  color: #ca9932;
}

img {
  max-width: 100%;
}

.media-wrapper {
  overflow: hidden;
}
.media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#content .content-area {
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  z-index: 0;
}

.ms-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0;
}

.hidden {
  display: none;
}

.container-fluid {
  width: 100%;
  border-bottom: 2px white solid;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 15px;
}

/* GRID & FLEX ------------------------------------------------------- */
.flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.flex .col {
  width: 100%;
}

.flex-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.flex-grid .col {
  margin: 15px;
}
.flex-grid .col-25 {
  width: calc(25% - 30px);
}
.flex-grid .col-33 {
  width: calc(33% - 30px);
}
.flex-grid .col-50 {
  width: calc(50% - 30px);
}
.flex-grid .col-66 {
  width: calc(66% - 30px);
}
.flex-grid .col-75 {
  width: calc(75% - 30px);
}
.flex-grid .col-100 {
  width: calc(100% - 30px);
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.justify-content-start {
  justify-content: start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: end;
}

.flex-end {
  justify-content: flex-end;
}

.flex-start {
  justify-content: flex-start;
}

@media screen and (min-width: 640px) {
  .flex-grid .col-md-25 {
    width: calc(25% - 30px);
  }
  .flex-grid .col-md-33 {
    width: calc(33% - 30px);
  }
  .flex-grid .col-md-50 {
    width: calc(50% - 30px);
  }
  .flex-grid .col-md-66 {
    width: calc(66% - 30px);
  }
  .flex-grid .col-md-75 {
    width: calc(75% - 30px);
  }
  .flex-grid .col-md-100 {
    width: calc(100% - 30px);
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .justify-content-md-start {
    justify-content: start;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-end {
    justify-content: end;
  }
  .flex-md-end {
    justify-content: flex-end;
  }
  .flex-md-start {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .flex-grid .col-lg-25 {
    width: calc(25% - 30px);
  }
  .flex-grid .col-lg-33 {
    width: calc(33% - 30px);
  }
  .flex-grid .col-lg-50 {
    width: calc(50% - 30px);
  }
  .flex-grid .col-lg-66 {
    width: calc(66% - 30px);
  }
  .flex-grid .col-lg-75 {
    width: calc(75% - 30px);
  }
  .flex-grid .col-lg-100 {
    width: calc(100% - 30px);
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .justify-content-lg-start {
    justify-content: start;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-end {
    justify-content: end;
  }
  .flex-lg-end {
    justify-content: flex-end;
  }
  .flex-lg-start {
    justify-content: flex-start;
  }
}
/* TEXT AND FONT ------------------------------------------------------ */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

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

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 30px;
}
.social-links svg {
  min-height: 30px;
  height: 100%;
  margin: 10px;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 640px) {
  .hidden-sm {
    display: none !important;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .hidden-md {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .hidden-lg {
    display: none !important;
  }
}
.nav-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0px;
  background: #546a76;
  position: sticky;
  z-index: 1;
  border-bottom: 5px solid #ca9932;
  padding: 20px 0;
}
.nav-wrap .container {
  justify-content: space-between;
  align-items: center;
}
.nav-wrap .navbar-logo {
  position: relative;
}
.nav-wrap .navbar-logo img {
  max-height: 150px;
  height: auto;
  width: auto;
}

.search-field {
  border: 2px #ca9932 solid;
  border-radius: 20px 0 0 20px;
  height: 30px;
  padding: 10px;
  border-right: none;
}

form[role=search] {
  display: flex;
  align-items: center;
}

button[type=submit] {
  background-color: #94a8b3;
  color: #FFFFFF;
  border: 2px #ca9932 solid;
  border-left: none;
  border-radius: 0px 20px 20px 0;
  height: 30px;
  padding: 5px 10px 10px 10px;
  font-size: 14px;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-left: 0px;
}
.menu .menu-item a {
  color: #FFFFFF;
  text-decoration: none;
}

.navbar-stacked .top-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #FFFFFF;
}
.navbar-stacked .top-nav .top-menu {
  justify-content: space-between;
}
.navbar-stacked .bottom-nav .menu {
  justify-content: space-between;
}

.mobile-navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  background-color: #546a76;
}
.mobile-navigation .mobile-nav-wrap {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
}
.mobile-navigation .mobile-nav-wrap #menuToggle {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  user-select: none;
}
.mobile-navigation .mobile-nav-wrap #menuToggle input {
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}
.mobile-navigation .mobile-nav-wrap #menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: #ffffff;
}
.mobile-navigation .mobile-nav-wrap #menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.mobile-navigation .mobile-nav-wrap #menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
.mobile-navigation .mobile-nav-wrap #menuToggle input:checked ~ .mobile-nav {
  transform: none;
  opacity: 1;
  display: unset;
}
.mobile-navigation .mobile-nav-wrap #menuToggle span {
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #FFFFFF;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.mobile-navigation .mobile-nav-wrap #menuToggle span:first-child {
  transform-origin: 0% 0%;
}
.mobile-navigation .mobile-nav-wrap #menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
.mobile-navigation .mobile-nav-wrap #menuToggle .mobile-nav {
  width: 300px;
  position: absolute;
  top: 48px;
  right: -15px;
  padding: 20px 40px 20px 40px;
  background-color: #546a76;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(0, -10px);
  transition: opacity 0.5s linear, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  opacity: 0;
  display: none;
}
.mobile-navigation .mobile-nav-wrap #menuToggle .mobile-nav .mobile-search input {
  display: block;
  width: 100%;
  height: 30px;
  position: relative;
  opacity: 1;
}
.mobile-navigation .mobile-nav-wrap #menuToggle .mobile-nav .menu {
  list-style: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  padding-left: 0px;
  flex-direction: column;
}
.mobile-navigation .mobile-nav-wrap #menuToggle .mobile-nav .top-menu {
  border-bottom: 2px solid #ca9932;
  padding-bottom: 20px;
}
.mobile-navigation .mobile-nav-wrap #menuToggle .mobile-nav ul {
  list-style-type: none;
  font-size: 24px;
  text-align: right;
}
.mobile-navigation .mobile-nav-wrap #menuToggle .mobile-nav ul li {
  padding: 10px 0;
  transition-delay: 2s;
}
.mobile-navigation .mobile-nav-wrap #menuToggle .mobile-nav ul li a {
  text-decoration: none;
}

.hero {
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  position: relative;
  margin: 0px;
}

.hero-home {
  color: #FFFFFF;
  min-height: 700px;
}
.hero-home .hero-text img {
  max-width: 80%;
}
.hero-home .hero-text p {
  margin-left: 115px;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: center;
}
.gallery-grid .tall {
  grid-row: span 2;
}
.gallery-grid .big {
  grid-column: span 2;
}
.gallery-grid .gallery-img {
  width: 100%;
  height: 100%;
}
.gallery-grid .gallery-img .img-wrap {
  overflow: hidden;
  border: 2px solid #ed2224;
  width: 100%;
  height: 100%;
}
.gallery-grid .gallery-img .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  background: #546a76;
  color: #FFF;
}
footer .navbar-logo {
  position: relative;
}
footer .navbar-logo img {
  max-height: 150px;
  height: auto;
  width: auto;
}
footer .menu {
  align-items: flex-start;
  flex-direction: column;
}
footer .menu li {
  padding-bottom: 10px;
}

.cta, .cta-global {
  padding: 200px 0 100px 0;
}
.cta .img-btn .img-btn-link, .cta-global .img-btn .img-btn-link {
  text-decoration: none;
}
.cta .img-btn .img-btn-link h3, .cta-global .img-btn .img-btn-link h3 {
  font-size: 40px;
  text-align: center;
  margin: 0 0 -20px 0;
  z-index: 2;
  position: relative;
  text-decoration: none;
  text-shadow: #000000 5px 5px;
}
.cta .img-btn .img-wrap, .cta-global .img-btn .img-wrap {
  border: 2px solid #ed2224;
  width: 100%;
  height: 100%;
}
.cta .img-btn .img-wrap img, .cta-global .img-btn .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-img {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}

.quick-links {
  background-color: #eee4db;
  margin: 0;
  padding: 50px 0;
}

.quicklink-grid {
  display: flex;
  gap: 30px;
  justify-items: center;
  align-items: center;
  justify-content: center;
}
.quicklink-grid .ql-button {
  background-color: #94a8b3;
  color: #ffffff;
  border-radius: 50%;
  height: 155px;
  width: 155px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quicklink-grid .ql-button img {
  width: 75%;
  height: auto;
}

.category-nav {
  background-color: #eee4db;
  margin: 0;
  padding: 50px 0;
}

.category-grid .category-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.category-grid .category-list .category-item .category-link {
  background-color: #94a8b3;
  color: #ffffff;
  border-radius: 50%;
  height: 110px;
  width: 110px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
}

a.button {
  color: #FFFFFF !important;
  background-color: #94a8b3 !important;
  border-radius: 20px;
}

.woocommerce-breadcrumb {
  margin: 25px 0 !important;
  color: #546a76 !important;
}

.woocommerce {
  justify-content: center;
}

.entry-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.alignwide {
  max-width: 1200px;
  padding-top: 50px;
}

.product-slider, .bestsellers-slider, .featured-slider {
  max-width: 98%;
}
.product-slider .woo-slider .post_card, .bestsellers-slider .woo-slider .post_card, .featured-slider .woo-slider .post_card {
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
}
.product-slider .woo-slider .post_card a, .bestsellers-slider .woo-slider .post_card a, .featured-slider .woo-slider .post_card a {
  display: flex;
  justify-content: center;
  width: 80%;
}
.product-slider .woo-slider .post_card a img, .bestsellers-slider .woo-slider .post_card a img, .featured-slider .woo-slider .post_card a img {
  border: 2px solid #ca9932;
  border-radius: 30px;
  object-fit: contain;
  aspect-ratio: 1/1;
  background-color: #FFFFFF;
}
.product-slider .woo-slider .post_card .wwo_card_details, .bestsellers-slider .woo-slider .post_card .wwo_card_details, .featured-slider .woo-slider .post_card .wwo_card_details {
  width: 80%;
  align-items: flex-start;
  padding-top: 5px;
}
.product-slider .woo-slider .post_card .wwo_card_details .p_title, .bestsellers-slider .woo-slider .post_card .wwo_card_details .p_title, .featured-slider .woo-slider .post_card .wwo_card_details .p_title {
  text-align: left;
}
.product-slider .woo-slider .post_card .wwo_card_details .price, .bestsellers-slider .woo-slider .post_card .wwo_card_details .price, .featured-slider .woo-slider .post_card .wwo_card_details .price {
  justify-content: start;
  font-weight: 100;
  margin: 0;
}

.bundles-slider {
  max-width: 98%;
}
.bundles-slider .woo-slider .post_card {
  border: 2px solid #546a76;
  background-color: #546a76;
  border-radius: 40px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.bundles-slider .woo-slider .post_card a {
  display: flex;
  justify-content: center;
}
.bundles-slider .woo-slider .post_card a:first-child {
  width: 100%;
}
.bundles-slider .woo-slider .post_card a img {
  width: 100%;
  border: none;
  border-radius: 0;
}
.bundles-slider .woo-slider .post_card .wwo_card_details {
  width: 80%;
  padding-top: 15px;
}
.bundles-slider .woo-slider .post_card .wwo_card_details .p_title {
  color: #FFFFFF;
  width: 100%;
  text-align: left;
  margin-bottom: 0;
}
.bundles-slider .woo-slider .post_card .wwo_card_details p {
  font-size: 14px;
  font-weight: 100;
}
.bundles-slider .woo-slider .post_card .wwo_card_details .price {
  display: none;
}
.bundles-slider .woo-slider .post_card .wwo_card_details .button {
  color: #546a76 !important;
  background-color: #f7f3ee !important;
}