/*/ FONTS IMPORT /*/
/*/ ROBOTO /*/
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
/*/ MARTEL SANS /*/
@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap");
/*/ LOCAL IMPORT /*/
/*/ CHILLAX /*/
@font-face {
  font-family: "Chillax";
  src: url("../font/Chillax-Regular.otf");
}
@font-face {
  font-family: "Chillax-bold";
  src: url("../font/Chillax-Bold.otf");
}
@font-face {
  font-family: "Chillax-semibold";
  src: url("../font/Chillax-Semibold.otf");
}
@font-face {
  font-family: "Chillax-medium";
  src: url("../font/Chillax-Medium.otf");
}
@font-face {
  font-family: "Chillax-light";
  src: url("../font/Chillax-Light.otf");
}
@font-face {
  font-family: "Chillax-extralight";
  src: url("../font/Chillax-Extralight.otf");
}
/*/ VARIABLES /*/
/*/ FONTS /*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
}

.container {
  max-width: 1440px;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in;
}
a:hover {
  text-decoration: none;
}

p {
  margin: 0;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Chillax", sans-serif;
  font-weight: 400;
  font-size: 65px;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-family: "Chillax-bold", sans-serif;
  font-weight: 700;
}

h2, h3, h4, h5, h6 {
  font-size: 40px;
}

.wrapper > div:first-child {
  padding-top: 150px;
}

/*/ BURGER TRIGGER /*/
.burger-trigger {
  position: relative;
  height: 22px;
  width: 30px;
  z-index: 15;
  margin-right: 12px;
  display: none;
  cursor: pointer;
}
.burger-trigger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #000;
  transition-duration: 0.3s;
}
.burger-trigger span:first-child {
  top: 0px;
}
.burger-trigger span.center {
  top: calc(50% - 1px);
}
.burger-trigger span:last-child {
  bottom: 0px;
}
.burger-trigger.burger-active span:nth-of-type(1) {
  rotate: -135deg;
  top: 9.5px;
}
.burger-trigger.burger-active span.center {
  opacity: 0;
}
.burger-trigger.burger-active span:nth-of-type(4) {
  rotate: 135deg;
  bottom: 9.5px;
}

/*/ THEME BUTTON /*/
.theme-button {
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 16px 32px;
}
.theme-button__white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.theme-button__white:hover {
  color: #CDCC95;
  border-color: #CDCC95;
}
.theme-button__black {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}
.theme-button__black:hover {
  color: #CDCC95;
  border-color: #CDCC95;
}

/*/ THEME STYLING /*/
.theme-wrapper {
  padding: 75px 0;
}

.theme-header {
  padding: 24px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  z-index: 20;
  background-color: #fff;
}
.theme-header-logo a {
  display: block;
  max-width: 200px;
}
.theme-header-navmenu {
  font-family: "Martel Sans", sans-serif;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.theme-header-navmenu ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.theme-header-navmenu ul li {
  position: relative;
  padding: 0 16px;
}
.theme-header-navmenu ul li a {
  color: #000;
}
.theme-header-navmenu ul li a:hover {
  color: #CDCC95;
}
.theme-header-navmenu ul li:hover::after {
  transform: scaleY(-1);
}
.theme-header-navmenu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.theme-header-navmenu ul li.menu-item-has-children::after {
  content: "";
  width: 9px;
  height: 6px;
  background-image: url("../img/menu-arrow.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 6px;
  right: 0;
  transition: 0.2s ease-in;
}
.theme-header-navmenu ul li .sub-menu {
  background-color: #fff;
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 25%);
  transition: 0.2s ease-in;
  z-index: 10;
  padding: 16px 0;
  min-width: 275px;
}
.theme-header-navmenu ul li .sub-menu li {
  margin: 4px 0px;
}
.theme-header-wrapper {
  font-family: "Martel Sans", sans-serif;
  text-transform: uppercase;
  display: flex;
}
.theme-header-wrapper-search {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.theme-header-wrapper-search-form {
  display: flex;
  align-items: center;
  border: 1px solid #000;
  border-radius: 999px;
}
.theme-header-wrapper-search-form-input {
  margin: 0 5px;
  border: none;
  width: 90%;
}
.theme-header-wrapper-search-form-input:focus {
  outline: none;
}
.theme-header-wrapper-search-form-button {
  border: none;
  background-color: #414042;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 999px;
  position: relative;
}
.theme-header-wrapper-search-form-button i {
  padding-top: 4px;
}
.theme-header-wrapper-language {
  position: relative;
}
.theme-header-wrapper-language-current {
  background-color: #414042;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-header-wrapper-language-current > div {
  margin-top: 4px;
}
.theme-header-wrapper-language-current a {
  color: #fff;
}
.theme-header-wrapper-language-current:hover a {
  color: #CDCC95;
}
.theme-header-wrapper-language-current:hover + .theme-header-wrapper-language-swap {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.theme-header-wrapper-language-swap {
  position: absolute;
  padding-top: 24px;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 10;
  transform: translate(0, 100%);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in;
}
.theme-header-wrapper-language-swap:hover {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.theme-header-wrapper-language-swap a {
  background-color: #414042;
  width: 40px;
  height: 40px;
  margin: 1.5px 0;
  padding-top: 2px;
  color: #fff;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-header-wrapper-language-swap a:hover {
  color: #CDCC95;
}
.theme-header-quote {
  font-size: 18px;
  margin: 0;
  padding-right: 16px;
}

.theme-hero {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  border-bottom: 4px solid #CDCC95;
}
.theme-hero-card {
  position: absolute;
  right: 0;
  top: 20vh;
  width: 576px;
  padding: 16px 100px 16px 32px;
  color: #fff;
  text-transform: uppercase;
  background-color: #CDCC95;
}

.theme-content-content {
  font-size: 18px;
}
.theme-content-traits {
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(65, 64, 66, 0.2509803922);
}
.theme-content-traits-trait {
  position: relative;
  padding-top: 9.09%;
  width: 9.09%;
}
.theme-content-traits-trait-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 12px;
}
.theme-content-traits-trait-text {
  font-size: 12px;
  text-align: center;
}

.theme-double-image {
  height: 100vh;
  display: flex;
  position: relative;
}
.theme-double-image-image {
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.theme-double-image-title {
  position: absolute;
  width: 100%;
  top: 20vh;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  text-align: center;
}

.theme-products-title {
  margin-bottom: 60px;
}
.theme-products-title h1, .theme-products-title h2, .theme-products-title h3, .theme-products-title h4, .theme-products-title h5, .theme-products-title h6 {
  font-family: "Chillax-semibold", sans-serif;
}
.theme-products-card {
  display: block;
  margin-bottom: 40px;
}
.theme-products-card::after {
  content: "";
  position: absolute;
  top: -15px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 0 100px;
  background-color: #C9C179;
  transform: rotate(90deg);
}
.theme-products-card:hover .theme-products-card-title {
  color: #CDCC95;
}
.theme-products-card-image {
  height: 450px;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
}
.theme-products-card-image img {
  height: 100%;
}
.theme-products-card-title {
  font-family: "Chillax-semibold", sans-serif;
  position: absolute;
  bottom: 48px;
  left: 40px;
  color: #fff;
  transition: 0.2s ease-in;
}

.theme-single-products-hero {
  position: relative;
  height: 50vw;
  margin-bottom: 48px;
}
.theme-single-products-hero-prev, .theme-single-products-hero-next {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7490196078);
  border-radius: 999px;
  z-index: 25;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-single-products-hero-prev img, .theme-single-products-hero-next img {
  width: 25px;
  height: 13px;
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-single-products-hero-prev {
  left: 25px;
}
.theme-single-products-hero-prev img {
  transform: rotate(90deg);
}
.theme-single-products-hero-slider {
  height: 100%;
}
.theme-single-products-hero-slider .slick-list {
  height: 100% !important;
}
.theme-single-products-hero-slider .slick-list .slick-track {
  height: 100% !important;
}
.theme-single-products-hero-slider-slide {
  height: 100%;
}
.theme-single-products-hero-slider-slide img {
  height: 100%;
}
.theme-single-products-hero-slider .slick-dots {
  padding: 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  list-style-type: none;
  align-items: center;
}
.theme-single-products-hero-slider .slick-dots li {
  height: 2px;
  width: 13px;
  margin: 0 3px;
  background-color: #C5C5C6;
  border-radius: 0;
  cursor: pointer;
}
.theme-single-products-hero-slider .slick-dots li.slick-active {
  background-color: #414042;
}
.theme-single-products-hero-slider .slick-dots li button {
  display: none;
}
.theme-single-products-hero-next {
  right: 25px;
}
.theme-single-products-hero-next img {
  transform: rotate(270deg);
}
.theme-single-products-information {
  padding: 100px 0;
}
.theme-single-products-information-wrapper-title {
  font-size: 65px;
  font-family: "Chillax-bold", sans-serif;
  color: #CDCC95;
  line-height: 0.8;
  margin: 0;
}
.theme-single-products-information-wrapper-category {
  font-size: 65px;
  font-family: "Chillax", sans-serif;
  color: #CDCC95;
}
.theme-single-products-information-wrapper-content {
  margin-bottom: 48px;
}
.theme-single-products-information-wrapper-buttons a {
  display: inline-block;
  margin: 8px 0;
}
.theme-single-products-information-features-title {
  font-size: 24px;
  font-family: "Chillax-semibold", sans-serif;
  margin-bottom: 20px;
}
.theme-single-products-information-features-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
}
.theme-single-products-information-features-list-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 20%;
  padding: 0 20px;
  margin-bottom: 32px;
}
.theme-single-products-information-features-list-feature-image {
  padding-top: 100%;
  position: relative;
  width: 100%;
  margin-bottom: 8px;
}
.theme-single-products-information-features-list-feature-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-single-products-information-features-list-feature-title {
  text-align: center;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}
.theme-single-products-information-features-list-technical {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  padding: 0 20px;
  margin-bottom: 32px;
}
.theme-single-products-information-features-list-technical-image {
  padding-top: 100%;
  position: relative;
  width: 100%;
  margin-bottom: 8px;
}
.theme-single-products-information-features-list-technical-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-single-products-information-features-list-technical-title {
  text-align: center;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}
.theme-single-products-information-features-wrapper {
  display: flex;
  flex-direction: column;
}
.theme-single-products-information-features-wrapper-feature {
  display: flex;
  font-family: "Roboto", sans-serif;
  margin-right: 4px;
}
.theme-single-products-information-features-wrapper-feature-name {
  font-weight: 700;
}
.theme-single-products-information-features-wrapper-feature-value {
  font-weight: 300;
  padding-left: 6px;
}
.theme-single-products-information-features-button {
  margin-top: 24px;
}
.theme-single-products-information-features-button a {
  display: inline-block;
}
.theme-single-products-iframe {
  padding: 100px 0;
}
.theme-single-products-iframe-title {
  margin-bottom: 32px;
}
.theme-single-products-related {
  padding-bottom: 100px;
}
.theme-single-products-related-wrapper-slider {
  height: 330px;
}
.theme-single-products-related-wrapper-slider .slick-list {
  height: 100% !important;
}
.theme-single-products-related-wrapper-slider .slick-list .slick-track {
  height: 100% !important;
}
.theme-single-products-related-wrapper-slider-slide {
  margin: 0 12px;
  position: relative;
}
.theme-single-products-related-wrapper-slider-slide::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 0 100px;
  background-color: #CDCC95;
  transform: rotate(90deg);
}
.theme-single-products-related-wrapper-slider-slide-image {
  height: 100%;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 50px;
  overflow: hidden;
}
.theme-single-products-related-wrapper-slider-slide-image img {
  height: 100%;
}
.theme-single-products-related-wrapper-slider-slide-title {
  position: absolute;
  bottom: 16px;
  left: 32px;
  color: #fff;
  font-family: "Chillax-bold", sans-serif;
  font-size: 40px;
}
.theme-single-products-related-wrapper-prev, .theme-single-products-related-wrapper-next {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7490196078);
  border-radius: 999px;
  z-index: 25;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-single-products-related-wrapper-prev img, .theme-single-products-related-wrapper-next img {
  width: 25px;
  height: 13px;
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-single-products-related-wrapper-prev {
  left: -25px;
}
.theme-single-products-related-wrapper-prev img {
  transform: rotate(90deg);
}
.theme-single-products-related-wrapper-next {
  right: -25px;
}
.theme-single-products-related-wrapper-next img {
  transform: rotate(270deg);
}
.theme-single-products-cta {
  display: flex;
  background-color: #C7C588;
}
.theme-single-products-cta-left {
  width: 50%;
}
.theme-single-products-cta-right {
  width: 50%;
  margin-right: calc((100% - 1440px) / 2);
  padding-left: 175px;
  color: #fff;
  display: flex;
  align-items: center;
}
.theme-single-products-cta-right-wrapper-title {
  font-family: "Chillax-bold", sans-serif;
  font-size: 40px;
}
.theme-single-products-cta-right-wrapper-content {
  font-family: "Chillax", sans-serif;
  font-size: 24px;
}
.theme-single-products-cta-right-wrapper a {
  display: inline-block;
}
.theme-single-products-cta-right-wrapper a:hover {
  color: #000;
  border-color: #000;
}

.theme-cta {
  display: flex;
  height: 400px;
}
.theme-cta-left {
  width: 25%;
}
.theme-cta-left img {
  height: 100%;
}
.theme-cta-center {
  width: 25%;
  background-color: #414042;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.theme-cta-right {
  width: 50%;
}
.theme-cta-right img {
  height: 100%;
}

.theme-image-card {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
}
.theme-image-card-image {
  width: 74%;
  position: relative;
  padding-top: 25%;
}
.theme-image-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.theme-image-card-card {
  width: 24%;
  background-color: #414042;
  color: #fff;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  padding: 50px 50px;
}
.theme-image-card-card-image {
  margin-bottom: 40px;
}
.theme-image-card-card-content {
  line-height: 1.8;
}

.theme-banner {
  margin: 100px 0;
  display: flex;
  background-color: #F5F5EA;
}
.theme-banner-left {
  width: 50%;
  padding: 100px 100px 100px calc((100% - 1440px) / 2);
}
.theme-banner-left-title {
  padding-left: 15px;
}
.theme-banner-left-content {
  padding-left: 15px;
  font-size: 18px;
}
.theme-banner-right {
  position: relative;
  display: flex;
  width: 50%;
}
.theme-banner-right-first {
  width: 100%;
}
.theme-banner-right-title {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
}
.theme-banner-right img {
  height: 100%;
}

.theme-category-archive {
  padding-top: 200px;
}
.theme-category-archive-title {
  color: #CDCC95;
  text-align: center;
}
.theme-category-archive-wrapper {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.theme-category-archive-wrapper-hash {
  border: 1px solid #000;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 16px 24px;
  margin: 4px 12px;
  display: block;
  color: #000;
}
.theme-category-archive-wrapper-hash:hover {
  color: #CDCC95;
  border-color: #CDCC95;
}
.theme-category-archive-wrapper-hash.active {
  background-color: #414042;
  color: #fff;
}
.theme-category-archive-cards-card {
  display: flex;
  flex-direction: row;
  margin: 75px 0;
  min-height: 400px;
}
.theme-category-archive-cards-card.reverse {
  flex-direction: row-reverse;
}
.theme-category-archive-cards-card.reverse .theme-category-archive-cards-card-featured {
  margin: 0 0 0 24px;
}
.theme-category-archive-cards-card-featured {
  width: calc(980px + (100% - 1440px) / 2);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  margin: 0 24px 0 0;
}
.theme-category-archive-cards-card-product {
  width: 420px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 100% 50%;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  position: relative;
  background-color: #F1F2F2;
}
.theme-category-archive-cards-card-product:hover .theme-category-archive-cards-card-product-title {
  color: #CDCC95;
}
.theme-category-archive-cards-card-product::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 0 100px;
  background-color: #C9C179;
  transform: rotate(90deg);
}
.theme-category-archive-cards-card-product-title {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: "Chillax-semibold", sans-serif;
  transition: 0.2s ease-in;
  color: #000;
}
.theme-category-archive-item {
  background-color: #F7F8F6;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  position: relative;
  padding: 32px;
  padding-bottom: 140px;
  height: 400px;
  display: block;
  color: #000;
  margin: 16px 0;
}
.theme-category-archive-item:hover {
  color: #CDCC95;
}
.theme-category-archive-item::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 0 100px;
  background-color: #C9C179;
  transform: rotate(90deg);
}
.theme-category-archive-item-image {
  height: 100%;
}
.theme-category-archive-item-image img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-category-archive-item-text {
  position: absolute;
  bottom: 16px;
  left: 32px;
}
.theme-category-archive-item-text-title {
  font-family: "Chillax-semibold", sans-serif;
  margin: 0;
}
.theme-category-archive-item-text-content {
  font-size: 24px;
}

.theme-collection-archive-title {
  color: #CDCC95;
  text-align: center;
}
.theme-collection-archive-wrapper {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.theme-collection-archive-wrapper-hash {
  border: 1px solid #000;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 16px 24px;
  margin: 4px 12px;
  display: block;
  color: #000;
}
.theme-collection-archive-wrapper-hash:hover {
  color: #CDCC95;
}
.theme-collection-archive-wrapper-hash.active {
  background-color: #414042;
  color: #fff;
}
.theme-collection-archive-cards-card {
  display: flex;
  flex-direction: row;
  margin: 75px 0;
  min-height: 400px;
}
.theme-collection-archive-cards-card.reverse {
  flex-direction: row-reverse;
}
.theme-collection-archive-cards-card.reverse .theme-collection-archive-cards-card-featured {
  margin: 0 0 0 24px;
  border-bottom-right-radius: 0;
  border-top-left-radius: 80px;
}
.theme-collection-archive-cards-card-featured {
  width: calc(980px + (100% - 1440px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-right-radius: 80px;
  margin: 0 48px 0 0;
}
.theme-collection-archive-cards-card-product {
  position: relative;
  width: 420px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.theme-collection-archive-cards-card-product:hover .theme-category-archive-cards-card-product-title {
  color: #CDCC95;
}
.theme-collection-archive-item {
  background-color: #F7F8F6;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  position: relative;
  padding: 32px;
  padding-bottom: 140px;
  height: 400px;
  display: block;
  color: #000;
  margin: 16px 0;
}
.theme-collection-archive-item:hover {
  color: #CDCC95;
}
.theme-collection-archive-item::after {
  content: "";
  position: absolute;
  top: -15px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 0 100px;
  background-color: #C9C179;
  transform: rotate(90deg);
}
.theme-collection-archive-item-image {
  height: 100%;
}
.theme-collection-archive-item-image img {
  height: 100%;
}
.theme-collection-archive-item-text {
  position: absolute;
  bottom: 16px;
  left: 32px;
}
.theme-collection-archive-item-text-title {
  font-family: "Chillax-semibold", sans-serif;
  margin: 0;
}
.theme-collection-archive-item-text-content {
  font-size: 24px;
}

.theme-collection-taxonomy {
  padding: 100px 0;
}
.theme-collection-taxonomy-text {
  text-align: center;
  margin-bottom: 60px;
}
.theme-collection-taxonomy-text-title {
  color: #CDCC95;
}
.theme-collection-taxonomy-text-content {
  font-size: 18px;
}
.theme-collection-taxonomy-card {
  position: relative;
  background-color: #F7F8F6;
  display: block;
  padding: 32px 32px 120px 32px;
  margin: 20px 0;
}
.theme-collection-taxonomy-card::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 0 100px;
  background-color: #C9C179;
  transform: rotate(90deg);
}
.theme-collection-taxonomy-card-text {
  color: #000;
  position: absolute;
  bottom: 16px;
  left: 32px;
}
.theme-collection-taxonomy-card-text-title {
  font-family: "Chillax-semibold", sans-serif;
  color: #414042;
}
.theme-collection-taxonomy-card-text-cat {
  font-size: 24px;
}

.theme-loader {
  text-align: center;
  margin-top: 34px;
}
.theme-loader .wpgb-button {
  border: none;
  box-shadow: none;
}
.theme-loader .wpgb-load-more {
  background-image: url("../img/loader.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: spin 1s linear infinite;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background-color: transparent !important;
  border: none !important;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.theme-shoppable {
  padding: 0 0 50px 0;
  border-radius: 40px 0 0 0;
  margin-top: -40px;
}
.theme-shoppable .shoppable-segment {
  padding-bottom: 0px;
  text-align: left;
  font-weight: 700;
  border-bottom: 3px solid #C7C588;
  line-height: 68px;
}
.theme-shoppable-single {
  padding: 130px 0 170px 0;
}
.theme-shoppable-single .theme-shoppable-grid-item {
  margin: 0;
}
.theme-shoppable-single .theme-shoppable-wrapper-side-content {
  width: 100%;
}
.theme-shoppable h2 {
  text-align: center;
  padding-bottom: 80px;
}
.theme-shoppable-grid {
  flex-wrap: wrap;
}
.theme-shoppable-grid-sizer {
  width: 50%;
}
.theme-shoppable-grid-item {
  width: 50%;
  padding: 16px 16px;
}
.theme-shoppable-grid2 {
  flex-wrap: wrap;
}
.theme-shoppable-grid2-sizer2 {
  width: 100%;
}
.theme-shoppable-grid2-item2 {
  width: 100%;
  padding: 16px 16px;
}
.theme-shoppable-wrapper-side-content {
  position: relative;
}
.theme-shoppable-wrapper-side-content-image img {
  border-radius: 80px 0 80px 0;
}
.theme-shoppable-wrapper-side-content-image2 img {
  height: 70vh;
}
.theme-shoppable-wrapper-side-content-points-point {
  display: flex;
  align-items: center;
  position: absolute;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.theme-shoppable-wrapper-side-content-points-point.point-active {
  z-index: 20;
}
.theme-shoppable-wrapper-side-content-points-point.point-active .theme-shoppable-wrapper-side-content-points-point-image {
  border-radius: 0 100px;
}
.theme-shoppable-wrapper-side-content-points-point.point-active .theme-shoppable-wrapper-side-content-points-point-product {
  opacity: 1;
  visibility: visible;
  margin: 0;
}
.theme-shoppable-wrapper-side-content-points-point-image {
  padding: 14px;
  background-color: #C9C179;
  display: inline-flex;
  z-index: 10;
  border-radius: 0 100px;
}
.theme-shoppable-wrapper-side-content-points-point-image img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7499%) hue-rotate(335deg) brightness(103%) contrast(101%);
  width: 25px;
  height: 25px;
  opacity: 0;
}
.theme-shoppable-wrapper-side-content-points-point-product {
  position: absolute;
  background-color: #F7F8F6;
  border-radius: 40px 0 40px 0;
  visibility: hidden;
  opacity: 0;
  margin: 0 0 0 18px;
  transition: 0.2s cubic-bezier(0.47, 0, 0.75, 0.72);
}
.theme-shoppable-wrapper-side-content-points-point-product-errow {
  text-align: right;
}
.theme-shoppable-wrapper-side-content-points-point-product-errow img {
  rotate: 180deg;
  transform: scaleX(-1);
  filter: invert(22%) sepia(61%) saturate(1752%) hue-rotate(195deg) brightness(102%) contrast(102%);
  width: 12px;
  position: absolute;
  top: 7.5px;
  right: 8px;
}
.theme-shoppable-wrapper-side-content-points-point-product-content-top {
  height: 220px;
  padding: 18px;
}
.theme-shoppable-wrapper-side-content-points-point-product-content-top img {
  border-radius: 999px;
  height: 100%;
  transition: 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-shoppable-wrapper-side-content-points-point-product-content-bottom {
  padding: 15px 20px 15px 33px;
  border-top: 1px solid #DBD8D2;
}
.theme-shoppable-wrapper-side-content-points-point-product-content-bottom-title {
  padding-bottom: 4px;
  width: 185px;
  font-weight: 700;
  color: #000;
}
.theme-shoppable-wrapper-side-content-points-point-product-content-bottom-sku {
  overflow-y: hidden;
  font-size: 12px;
  color: #414042;
  font-weight: 500;
}
.theme-shoppable-wrapper-side-content-points-point-product-content-bottom-category {
  color: #414042;
}
.theme-shoppable-wrapper-side-content-points-point-product_position-right-top {
  transform: translateY(calc(50% - 66px)) translateX(20px);
}
.theme-shoppable-wrapper-side-content-points-point-product_position-right-bottom {
  transform: translateY(calc(-50% + 66px)) translateX(20px);
}
.theme-shoppable-wrapper-side-content-points-point-product_position-left-top {
  transform: translateY(calc(50% - 66px)) translateX(-100%) translateX(20px);
}
.theme-shoppable-wrapper-side-content-points-point-product_position-left-bottom {
  transform: translateY(calc(-50% + 66px)) translateX(-100%) translateX(20px);
}
.theme-shoppable-wrapper-side-content-points-point-product:hover .theme-shoppable-wrapper-side-content-points-point-product-content-top img {
  scale: 1.05;
}

.theme-shoppable-assortiment {
  padding: 0 0 50px 0;
  border-radius: 40px 0 0 0;
  margin-top: -40px;
  background: #DBD8D2;
}
.theme-shoppable-assortiment-single {
  padding: 174px 0 130px 0;
}
.theme-shoppable-assortiment-single .theme-shoppable-grid-item {
  margin: 0;
}
.theme-shoppable-assortiment-single .theme-shoppable-wrapper-side-content {
  width: 100%;
}
.theme-shoppable-assortiment h2 {
  padding-bottom: 40px;
}
.theme-shoppable-assortiment-grid {
  flex-wrap: wrap;
}
.theme-shoppable-assortiment-grid-sizer {
  width: 50%;
}
.theme-shoppable-assortiment-grid-item {
  padding: 0 16px;
}
.theme-shoppable-assortiment-wrapper-side-content {
  position: relative;
  border-radius: 40px 0 0 0;
  overflow: hidden;
}
.theme-shoppable-assortiment-wrapper-side-content-image {
  height: 50vh;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point {
  display: flex;
  align-items: center;
  position: absolute;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.theme-shoppable-assortiment-wrapper-side-content-points-point.point-active {
  z-index: 20;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point.point-active .theme-shoppable-wrapper-side-content-points-point-image {
  border-radius: 999px;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point.point-active .theme-shoppable-wrapper-side-content-points-point-product {
  opacity: 1;
  visibility: visible;
  margin: 0;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-image {
  padding: 9px;
  background-color: #000;
  display: inline-flex;
  z-index: 10;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-image img {
  width: 22px;
  height: 22px;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product {
  position: absolute;
  background-color: #F7F8F6;
  border-radius: 40px 0 40px 0;
  visibility: hidden;
  opacity: 0;
  margin: 0 0 0 18px;
  transition: 0.2s cubic-bezier(0.47, 0, 0.75, 0.72);
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product-errow {
  text-align: right;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product-errow img {
  rotate: 180deg;
  transform: scaleX(-1);
  filter: invert(22%) sepia(61%) saturate(1752%) hue-rotate(195deg) brightness(102%) contrast(102%);
  width: 12px;
  position: absolute;
  top: 7.5px;
  right: 8px;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product-content-top {
  height: 240px;
  border-radius: 999px;
  padding: 18px;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product-content-top img {
  border-radius: 999px;
  height: 100%;
  transition: 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product-content-bottom {
  padding: 15px 20px;
  border-top: 1px solid #DBD8D2;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product-content-bottom-title {
  padding-bottom: 4px;
  width: 185px;
  font-weight: 700;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product-content-bottom-sku {
  overflow-y: hidden;
  font-size: 12px;
  color: #414042;
  font-weight: 500;
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product_position-right-top {
  transform: translateY(calc(50% - 66px)) translateX(20px);
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product_position-right-bottom {
  transform: translateY(calc(-50% + 66px)) translateX(20px);
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product_position-left-top {
  transform: translateY(calc(50% - 66px)) translateX(-100%) translateX(20px);
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product_position-left-bottom {
  transform: translateY(calc(-50% + 66px)) translateX(-100%) translateX(20px);
}
.theme-shoppable-assortiment-wrapper-side-content-points-point-product:hover .theme-shoppable-wrapper-side-content-points-point-product-content-top img {
  scale: 1.05;
}

.theme-gallery {
  display: flex;
  flex-wrap: wrap;
  min-height: 650px;
}
.theme-gallery-image {
  width: 25%;
}
.theme-gallery-image img {
  height: 100%;
}

.theme-contact {
  overflow: hidden;
}
.theme-contact .row {
  margin: 0;
}
.theme-contact .row > div {
  padding: 0;
}
.theme-contact-left {
  height: 100%;
}
.theme-contact-left-top {
  padding: 75px 0;
  background-color: #FAFAF4;
  height: 60%;
  position: relative;
}
.theme-contact-left-top::after {
  content: "";
  background-color: #FAFAF4;
  position: absolute;
  top: 0;
  left: -295%;
  width: 300%;
  height: 100%;
  z-index: -1;
}
.theme-contact-left-top-title {
  padding-bottom: 16px;
}
.theme-contact-left-top-content a {
  color: #000;
}
.theme-contact-left-top-content a:hover {
  color: #CDCC95;
}
.theme-contact-left-bottom {
  padding: 50px 0;
  background-color: #F5F5EA;
  height: 40%;
  position: relative;
}
.theme-contact-left-bottom::after {
  content: "";
  background-color: #F5F5EA;
  position: absolute;
  top: 0;
  left: -295%;
  width: 300%;
  height: 100%;
  z-index: -1;
}
.theme-contact-left-bottom-title {
  padding-bottom: 16px;
}
.theme-contact-left-bottom-content a {
  color: #000;
}
.theme-contact-left-bottom-content a:hover {
  color: #CDCC95;
}
.theme-contact-right {
  background-color: #EBEBD4;
  position: relative;
  padding: 75px 100px;
}
.theme-contact-right::after {
  content: "";
  background-color: #EBEBD4;
  position: absolute;
  top: 0;
  right: -95%;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.theme-contact-right-title {
  padding-bottom: 16px;
}
.theme-contact-right-form input, .theme-contact-right-form textarea {
  border: none !important;
  border-radius: 0 !important;
}
.theme-contact-right-form button {
  border-radius: 0 !important;
  border-top-left-radius: 15px !important;
  border-bottom-right-radius: 15px !important;
  padding: 16px 60px !important;
  background-color: transparent !important;
  border: 1px solid #000 !important;
  color: #000 !important;
  transition: 0.2s ease-in !important;
}
.theme-contact-right-form button:hover {
  color: #CDCC95 !important;
}

.theme-footer {
  font-size: 14px;
  font-family: "Martel Sans", sans-serif;
  padding: 40px 0;
}
.theme-footer-wrapper-logo {
  display: block;
  max-width: 140px;
  margin-bottom: 16px;
}
.theme-footer-wrapper-copyright {
  margin-bottom: 8px;
}
.theme-footer-wrapper-links a {
  color: #000;
}
.theme-footer-wrapper-links a:hover {
  color: #CDCC95;
}
.theme-footer-wrapper-links a:not(:last-child) {
  border-right: 1px solid #000;
  padding-right: 8px;
  margin-right: 4px;
}
.theme-footer-wrapper-navmenu ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
}
.theme-footer-wrapper-navmenu ul li {
  margin-left: 32px;
}
.theme-footer-wrapper-navmenu ul li a {
  color: #000;
}
.theme-footer-wrapper-navmenu ul li a:hover {
  color: #CDCC95;
}
.theme-footer-wrapper-socials {
  display: flex;
  justify-content: flex-end;
}
.theme-footer-wrapper-socials-link {
  background-color: #414042;
  color: #fff;
  margin-left: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
}
.theme-footer-wrapper-socials-link:hover {
  color: #fff;
  background-color: #CDCC95;
}

.theme-404 {
  padding-top: 200px;
}

.theme-offcanvas {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translate(100%, 0);
  width: 100%;
  max-width: 300px;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  background-color: #fff;
  transition: 0.4s ease-in;
}
.theme-offcanvas.canvas-open {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.theme-offcanvas-wrapper {
  padding: 16px 20px;
}
.theme-offcanvas-wrapper-logo {
  display: flex;
  margin-bottom: 32px;
  align-items: center;
  justify-content: space-between;
}
.theme-offcanvas-wrapper-logo a {
  display: inline-block;
}
.theme-offcanvas-wrapper-menu ul {
  list-style-type: none;
  padding: 0;
}
.theme-offcanvas-wrapper-menu ul li {
  margin: 4px 0;
}
.theme-offcanvas-wrapper-menu ul li a {
  color: #000;
  font-size: 20px;
}

/*/ Media Query /*/
@media screen and (max-width: 1400px) {
  .theme-image-card-image {
    width: 66%;
  }
  .theme-image-card-card {
    width: 32%;
  }
  .theme-products-card-title {
    font-size: 32px;
    padding-right: 16px;
  }
  .theme-category-archive-cards-card-product {
    width: 32%;
  }
  .theme-gallery-image {
    width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .burger-trigger {
    display: block;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: 56px;
  }
  h2, h3, h4, h5, h6 {
    font-size: 40px;
  }
  .theme-header-navmenu {
    display: none;
  }
  .theme-header-wrapper-search-form-input {
    transform: translate(0, 0);
  }
  .theme-cta-left {
    width: 33.334%;
  }
  .theme-cta-center {
    width: 33.334%;
  }
  .theme-cta-right {
    width: 33.334%;
  }
  .theme-image-card-image {
    width: 49%;
  }
  .theme-image-card-card {
    width: 49%;
  }
  .theme-category-archive-cards-card-featured {
    width: 60%;
  }
  .theme-category-archive-cards-card-product {
    width: 36%;
  }
  .theme-banner {
    flex-direction: column;
  }
  .theme-banner-left {
    width: 100%;
  }
  .theme-banner-right {
    width: 100%;
  }
  .theme-content-traits-trait {
    padding-top: 16.667%;
    width: 16.667%;
  }
  .theme-contact-left {
    display: flex;
  }
  .theme-contact-left-top {
    height: 100%;
    width: 50%;
  }
  .theme-contact-left-bottom {
    height: 100%;
    width: 50%;
    padding: 50px 15px;
  }
  .theme-contact-left-bottom::after {
    left: unset;
    right: -50%;
  }
  .theme-contact-right {
    width: unset;
    left: -15px;
    right: -15px;
  }
  .theme-single-products-related-wrapper-prev {
    left: 40px;
  }
  .theme-single-products-related-wrapper-next {
    right: 40px;
  }
  .theme-single-products-cta-right {
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 48px;
  }
  h2, h3, h4, h5, h6 {
    font-size: 36px;
  }
  .theme-double-image {
    flex-direction: column;
  }
  .theme-double-image-image {
    width: 100%;
    height: 50%;
  }
  .theme-shoppable-grid-item {
    width: 100%;
  }
  .theme-category-archive-cards-card {
    flex-direction: column;
    align-items: center;
  }
  .theme-category-archive-cards-card.reverse {
    flex-direction: column;
    align-items: center;
  }
  .theme-category-archive-cards-card.reverse .theme-category-archive-cards-card-featured {
    margin: 0;
  }
  .theme-category-archive-cards-card-featured {
    min-height: 300px;
    width: 100%;
    margin: 0;
  }
  .theme-category-archive-cards-card-product {
    margin: 16px 0;
    min-height: 300px;
    width: 90%;
  }
  .theme-collection-archive-cards-card {
    flex-direction: column;
  }
  .theme-collection-archive-cards-card.reverse {
    flex-direction: column;
  }
  .theme-collection-archive-cards-card.reverse .theme-collection-archive-cards-card-featured {
    height: 350px;
    width: 100%;
    border-radius: 0;
    margin: 0;
  }
  .theme-collection-archive-cards-card-featured {
    height: 350px;
    width: 100%;
    border-radius: 0;
  }
  .theme-collection-archive-cards-card-product {
    margin: 16px 0;
    padding: 0 15px;
    width: 100%;
  }
  .theme-cta-left {
    width: 50%;
  }
  .theme-cta-center {
    width: 50%;
  }
  .theme-cta-right {
    display: none;
  }
  .theme-single-products-hero {
    height: 100vw;
  }
  .theme-single-products-cta {
    flex-direction: column;
  }
  .theme-single-products-cta-left {
    width: 100%;
  }
  .theme-single-products-cta-right {
    width: 100%;
    padding: 48px 15px;
  }
}
@media screen and (max-width: 576px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 40px;
  }
  h2, h3, h4, h5, h6 {
    font-size: 32px;
  }
  .theme-header-quote {
    display: none;
  }
  .theme-hero-card {
    width: 100%;
  }
  .theme-cta {
    flex-direction: column;
    height: unset;
  }
  .theme-cta-left {
    width: 100%;
  }
  .theme-cta-center {
    width: 100%;
    padding: 32px 0;
  }
  .theme-image-card {
    flex-direction: column;
  }
  .theme-image-card-image {
    width: 100%;
    min-height: 400px;
  }
  .theme-image-card-card {
    width: 100%;
    margin: 32px 0;
  }
  .theme-single-products-information-wrapper-title {
    font-size: 48px;
  }
  .theme-single-products-information-features-list-feature {
    width: 25%;
  }
  .theme-banner {
    flex-direction: column;
    margin: 32px 0 0 0;
  }
  .theme-banner-left {
    width: 100%;
    padding: 32px 15px;
  }
  .theme-banner-right {
    flex-direction: column;
    width: 100%;
  }
  .theme-banner-right > div {
    width: 100%;
  }
  .theme-banner-right img {
    min-height: 300px;
  }
  .theme-content-traits-trait {
    padding-top: 25%;
    width: 25%;
  }
  .theme-shoppable-wrapper-side-content-points-point-image {
    scale: 0.7;
  }
  .theme-shoppable-wrapper-side-content-image2 img {
    height: 40vh;
  }
  .theme-shoppable-grid-item {
    width: 100%;
  }
  .theme-shoppable-wrapper-side-content-points-point-product-content {
    width: 140px;
  }
  .theme-shoppable-wrapper-side-content-points-point-product-content-top {
    height: 140px;
    padding: 4px;
  }
  .theme-shoppable-wrapper-side-content-points-point-product-content-bottom {
    padding: 10px 20px;
    font-size: 12px;
  }
  .theme-shoppable-wrapper-side-content-points-point-product-content-bottom-title {
    width: unset;
  }
  .theme-shoppable-single {
    padding: 80px 0px 120px 0px;
  }
  .theme-contact-left {
    flex-direction: column;
  }
  .theme-contact-left-top {
    width: 100%;
  }
  .theme-contact-left-top::after {
    width: unset;
    left: -15px;
    right: -15px;
  }
  .theme-contact-left-bottom {
    width: 100%;
    padding: 50px 0;
  }
  .theme-contact-left-bottom::after {
    width: unset;
    left: -15px;
    right: -15px;
  }
  .theme-contact-right {
    padding: 75px 15px;
  }
  .theme-gallery-image {
    width: 100%;
  }
  .theme-footer-wrapper-navmenu {
    margin: 16px 0;
  }
  .theme-footer-wrapper-navmenu ul {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
  }
  .theme-footer-wrapper-navmenu ul li {
    margin: 0;
  }
  .theme-footer-wrapper-socials {
    justify-content: flex-start;
  }
}/*# sourceMappingURL=style.css.map */