@import url(https://db.onlinewebfonts.com/c/466bde28f618f6ea76902f48da3d4c7a?family=Neue+Haas+Unica+Pro);
@import url(https://db.onlinewebfonts.com/c/30cd0c22964347e3059810de8593dc76?family=Neue+Haas+Unica+Pro+Light);
/*@import url(https://db.onlinewebfonts.com/c/8f249c4281a2b12f6e5f57b9b3a01216?family=NeueEinstellung-Light);*/



@font-face {
  font-family: 'NeueEinstellung-Light';
  src: url('../assets/fonts/NeueEinstellung-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'NeueHaasUnicaPro';
  src: url('../assets/fonts/NeueHaasUnicaPro.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Saol Text";
  src: url("../assets/fonts/saol-text/Saol-Text-Light.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Saol Text";
  src: url("../assets/fonts/saol-text/Saol-Text-Regular.otf");
  font-weight: 400;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4d4d4;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Saol Text", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #707070;
  -webkit-font-smoothing: antialiased;
  user-select: none;
}
body.active {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

input {
  border: 0;
  outline: 0;
}

button {
  background: unset;
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 1.5;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word; font-weight: 400;
}

 .vimeo-fs {
   display: none;
   height: 0px;
   border: 0px;
 }

 .video-click-layer {
   position: absolute;
   inset: 0;
   z-index: 2;
   cursor: pointer;
 }

 .sendisok { color: #B88A7E; }
 .sendisnon { color: #aa0000; }

 .video-fullscreen-btn {
   position: absolute;
   bottom: 16px;
   right: 16px;
   z-index: 4;
   background: rgba(0, 0, 0, 0.6);
   color: #fff;
   border: 0;
   border-radius: 50%;
   width: 42px;
   height: 42px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   opacity: 0;
   transition: opacity .2s ease, transform .2s ease;
   z-index: 1;
 }

 .workshop_video:hover .video-fullscreen-btn {
   opacity: 1;
 }

 .video-fullscreen-btn:hover {
   transform: scale(1.1);
 }

 .video_container .videoToggle {
   z-index: 3;
 }

#root,
#__next {
  isolation: isolate;
}

.link {
  width: fit-content;
  padding-block: 10px;
  display: flex;
  align-items: center;
  gap: 44px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 22px;
  color: #424b53;
  text-transform: uppercase;
}
.link svg {
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: left;
}


.auto-container {
  margin-inline: auto;
  max-width: 1920px;
  padding-inline: 77px;
}

.locateRetailer-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 50;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #80878d;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: transform 0.2s;
}
.locateRetailer-btn.show {
  display: flex;
}
.locateRetailer-btn:hover {
  transform: scale(1.1);
}
.locateRetailer-btn span {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.custom-select {
  position: relative;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  text-align: right;
}
.custom-select select {
  display: none;
}
.custom-select .select-selected {
  color: #565656;
  padding: 5px 24px;
  font-size: 18px;
  cursor: pointer;
}
.custom-select .select-selected:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 7px;
  background: url("../assets/svgs/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease-in-out;
}
.custom-select .select-selected.select-arrow-active:after {
  transform: translateY(-50%) rotate(-180deg);
}
.custom-select .select-items {
  overflow: hidden;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  top: 100%;
  /*right: 0;*/
  width: 100%;
  min-width: 200px;
  z-index: 99;
}
.custom-select .select-items div {
  white-space: nowrap;
  padding: 5px 24px;
  font-size: 18px;
}
.custom-select .select-items div {
  cursor: pointer;
}
.custom-select .select-hide {
  display: none;
}
.custom-select .select-items div:hover,
.custom-select .same-as-selected {
  background: rgba(225, 225, 225, 0.6);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  padding-top: 13px;
  background: rgba(232, 237, 241, 0.8);
}
.header.sticky {
  padding: 0;
}
.header.sticky .header__container {
  display: none;
}
.header.sticky .header__logo {
  margin-block: 40px;
}
.header.sticky .header__logo img:first-child {
  display: none;
}
.header.sticky .header__logo img:last-child {
  display: block;
}
.header.sticky .nav-button-desktop {
  display: flex;
}
.header .nav-button-desktop {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 30px;
  display: none;
  align-items: center;
}
.header .nav-button-desktop span {
  width: 100%;
  height: 1px;
  background: #798189;
}
.header .nav-button-desktop::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 1px;
  background: #798189;
}
.header .nav-button-desktop::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 1px;
  background: #798189;
}
.header .nav-button-mobile {
  display: none;
}
.header__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__logo {
  margin-block: 30px;
}
.header__logo img {
  animation: fade-in 0.75s ease-out;
}
.header__logo img:last-child {
  display: none;
}
.header__container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 140px;
  animation: fade-in 0.75s ease-out;
}
.header__buttons {
  display: flex;
  gap: 18px;
}
.header__buttons button {
  padding: 10px;
}

.nav {
  flex-grow: 1;
}
.nav__close {
  display: none;
}
.nav__search {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 110px 30px 30px;
  width: 480px;
  height: 100%;
  display: block;
  background: #fff;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  border-left: 1px solid #d3d3d3;
  box-shadow: -5px 0 15px rgb(142 142 142 / 30%);
}

 .jewelry {
   position: relative;
 }

 .jewelry .jewelry__inner {
   position: absolute;
   bottom: 20vh;
   right: 0px;
   width: 45vw;
   text-align: right;
   padding-right: 3%;
 }

@media (max-width: 840px) {
  .nav__search {
      border-left: none;
      box-shadow:none;
    }
}
.nav__search-input {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #798189;
}
.nav__search-input input {
  flex-grow: 1;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  color: #626262;
  background: inherit;
}
.nav__search-input input::placeholder {
  color: inherit;
}
.nav__Wishlist-close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #707070;
}
.nav__search-close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #707070;
}
.nav__search.active {
  opacity: 1;
  transform: translateX(0);
}
.nav__inner {
  display: flex;
  justify-content: space-between;
}
.nav__item-link {
  position: relative;
  padding-block: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  color: #5a656d;
}
.nav__item-link:hover::before {
  width: 100%;
}
.nav__item-link::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #5a656d;
  /*transition: all 0.5s;*/
}
.nav__item-link svg {
  transition: all 0.3s ease-in-out;
}
.nav__item-content {
  position: relative;
  padding-block: 80px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.nav__item-content-button {
  display: none;
}
.nav__item-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2000px;
  z-index: -1;
  width: 6000px;
  height: 100%;
  background: #e8edf1;
}
.nav__item.active .nav__item-link svg {
  transform: rotate(-180deg);
}
.nav__item.active .nav__item-content {
  opacity: 1;
  pointer-events: auto;
}
.nav__item-category {
  display: flex;
}
.nav__item-category.active .nav__item-category-name {
  border-left: 1px solid #707070;
}
.nav__item-category.active .nav__item-category-content {
  opacity: 1;
}
.nav__item-category-name {
  padding-left: 20px;
  margin-bottom: 30px;
  width: 30%;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 20px;
  cursor: pointer;
}
.nav__item-category-content {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 30%;
  width: 70%;
  height: 100%;
  display: flex;
  transition: opacity 0.3s ease-in-out;
}
.nav__item-category-image {
  width: 50%;
  object-fit: cover;
}
.nav__item-category-info {
  padding: 30px;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav__item-category-info-inner {
  max-width: 390px;
  text-align: center;
}
.nav__item-category-info h3 {
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 400;
}
.nav__item-category-info p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 16px;
}

.retailer {
  overflow: hidden;
  position: relative;
}
.retailer__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.retailer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.retailer__inner {
  padding-block: 125px;
  min-height: 55vh;
  min-height: 55dvh;
  display: flex;
  align-items: flex-end;
}
.retailer__inner h4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
}
.retailer__inner h4 a {
  padding-block: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.retailer__inner h4 a svg {
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card__image {
  display: block;
  margin-bottom: 43px;
  aspect-ratio: 1/1;
  
}
.card__title {
  font-size: 26px;
  margin-bottom: 5px;
}
.card a {
  text-transform: unset;
  font-family: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}

.breadcrumb {
  display: none;
}

.customize {
  padding-block: 120px;
}
.customize__inner {
  position: relative;
  margin-inline: auto;
  padding: 110px 100px;
  max-width: 1700px;
}
.customize__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.customize__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.customize__bg img:last-child {
  display: none;
}
.customize__content {
  margin-left: auto;
  width: 50%;
}
.customize__content-inner {
  max-width: 580px;
}
.customize__content h3 {
  margin-bottom: 30px;
  font-size: 36px;
}
.customize__content p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}

.collections {
  padding-block: 100px;
}
.collections h3 {
  margin-bottom: 100px;
  font-size: 36px;
  text-align: center;
}
.collections__content {
  display: flex;
  gap: 15px;
}
.collections.no-container .collections__content {
  gap: 0;
}
.collections.no-container .collection span {
  font-size: 110px;
}

.collection {
  overflow: hidden;
  position: relative;
  flex: 1;
}
.collection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease-in-out;
}
.collection.macHover::before {
  background: rgba(0, 0, 0, 0.7);
}
.collection.macHover span {
  opacity: 1;
  transform: translateY(32px);
}
.collection.windowsHover::before {
  background: rgba(0, 0, 0, 0.7);
}
.collection.windowsHover span {
  opacity: 1;
  transform: translateY(17px);
}
.collection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection span {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  font-size: 90px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(100px);
}
.collection span svg {
  display: none;
}

.products__inner {
  margin-inline: auto;
  max-width: 1650px;
}
.products__top {
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
}
.products__filter {
  display: flex;
  align-items: center;
  gap: 70px;
}
.products__filter-title {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
  color: #565656;
}
.products__filter-title svg {
  display: none;
}
.products__filter-close {
  display: none;
}
.products__filter-content {
  display: flex;
  gap: 70px;
}
.products__filter-content-mobile {
  display: none;
}
.products__filter-item-top {
  cursor: pointer;
}
.products__sort {
  width: 250px;
  position: relative;
  padding: 8px 12px;
  border: 1px solid #707070;
  cursor: pointer;
}
.products__sort.active .products__sort-content {
  opacity: 1;
  pointer-events: all;
}
.products__sort-title {
  color: #565656;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}
.products__sort-title span {
  text-transform: capitalize;
}
.products__sort-title svg {
  display: none;
}
.products__sort-content {
  display: flex;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 10;
  width: 100%;
  flex-direction: column;
  background: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.products__sort-item {
  cursor: pointer;
}
.products__sort-item:not(:last-child) {
  border-bottom: 0.4px solid rgba(166, 166, 166, 0.3);
}
.products__sort-item input {
  position: absolute;
  width: 0;
  height: 0;
  font-size: 0;
  opacity: 0;
  display: none;
}
.products__sort-item input:checked ~ span {
  background: rgba(225, 225, 225, 0.6);
}
.products__sort-item span {
  display: block;
  padding: 7px 10px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 16px;
}
.products__list {
  margin-bottom: 60px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
}
.products__loadMore {
  position: relative;
  margin-inline: auto;
  display: block;
  width: fit-content;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  border: 1px solid #707070;
}
.products__loadMore:hover::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.products__loadMore:hover::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.products__loadMore::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 45%;
  background: #707070;
  transition: transform 0.3s ease;
}
.products__loadMore::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 1px;
  background: #707070;
  transition: transform 0.3s ease;
}

.product:hover .product__image img:first-child {
  opacity: 0;
}
.product:hover .product__image img:nth-child(2) {
  opacity: 1;
}
.product:hover .product__content {
  opacity: 1;
}
.product._sm .product__image img:first-child {
  opacity: 1;
}
.product._sm .product__image img:nth-child(2) {
  opacity: 1;
}
.product._sm:hover .product__image img:first-child {
  opacity: 1;
}
.product._sm:hover .product__image img:nth-child(2) {
  opacity: 1;
}
.product__image {
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}
.product__image img {
  margin-inline: auto;
  width: 100%;
  transition: opacity 0.9s ease;
}
.product__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.product__content {
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 14px;
  transition: opacity 0.9s ease;
  opacity: 0;
}
.product__content span {
  margin-right: 30px;
}
.product__content a {
  margin: 15px auto 0;
  display: block;
  width: fit-content;
  padding: 5px 40px;
  border: 1px solid #707070;
  transition: all 0.2s;
  text-transform: lowercase;
}
.product__content a:hover {
  color: #fff;
  background: #707070;
}
.product__addToFavorites {
  padding: 5px;
  position: absolute;
  top: 0;
  right: 0;
}
.product--link {
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1/1;
}
.product--link img {
  position: absolute;
  top: 70px;
  right: 70px;
  width: calc(100% - 70px);
  height: calc(100% - 70px);
  object-fit: cover;
}
.product--link .link-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  font-size: 26px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product--link svg {
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product--banner {
  position: relative;
  aspect-ratio: 30/29;
  width: 100%;
  height: 38vw;
  grid-column: span 2;
  grid-row: span 2;
}
.product--banner.left img {
  right: -50px;
}
.product--banner.left img:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  right: unset;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.product--banner.right img {
  left: -50px;
}
.product--banner img {
  position: absolute;
  top: 0;
  width: calc(50vw - 5px);
  max-width: unset;
  height: auto;
}
.product--banner._show img:nth-child(1) {
  opacity: 0;
}
.product--banner._show img:nth-child(2) {
  opacity: 1;
}

.hero {
  overflow: hidden;
  position: relative;
  height: 1020px;
}
.hero img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero img:last-child {
  display: none;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video-button {
  position: absolute;
  bottom: 15px;
  right: 24px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: border 0.15s;
}
.hero__video-button:hover {
  color: #959595;
  border-color: #959595;
}
.hero__video-button svg {
  pointer-events: none;
  transition: color 0.15s;
}
.hero__video-button svg:last-child {
  display: none;
}
.hero__video-button.active svg:first-child {
  display: none;
}
.hero__video-button.active svg:last-child {
  display: block;
}
.hero__text-desktop {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 200px;
  line-height: 1;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}
.hero__text-desktop.macDevice {
  margin-bottom: -35px;
}
.hero__text-mobile {
  display: none;
}
.hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block !important;
}
.hero__error {
  display: flex;
  flex-direction: column;
  gap: 65px;
  text-align: center;
}
.hero__error-box {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.hero__error h1 {
  font-size: 50px;
  line-height: 1;
  font-weight: 400;
  color: #82878b;
}
.hero__error p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  color: #82878b;
}
.hero__error a {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  color: #82878b;
  transition: 0.3s ease;
  position: relative;
  margin: 0 auto;
}
.hero__error a::before {
  content: "";
  width: 100%;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 0;
  bottom: 5%;
}
.hero__error a:hover {
  opacity: 0.7;
}
.hero--error {
  height: auto;
  min-height: 100vh;
  padding: 156px 0 10vh;
  display: flex;
  flex-direction: column;
}
.hero--error .auto-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hero--error .hero__inner {
  margin: auto 0;
}

.promo {
  overflow: hidden;
  padding-block: 65px;
  display: flex;
  flex-direction: column;
  gap: 110px;
}
.promo__inner {
  margin-inline: auto;
  max-width: 1460px;
}
.promo p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}
.promo__top {
  margin-inline: auto;
  max-width: 850px;
  text-align: center;
}
.promo__top h3 {
  margin-bottom: 30px;
  font-size: 36px;
}
.promo__bottom {
  display: flex;
  align-items: center;
}
.promo__video {
  width: 50%;
  /*aspect-ratio: 1.6/1;*/
  aspect-ratio: 13 / 7.7 !important;
  position: relative;
}
.promo__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo__video-button {
  position: absolute;
  bottom: 45px;
  right: 45px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: border 0.15s;
}
.promo__video-button:hover {
  color: #959595;
  border-color: #959595;
}
.promo__video-button svg {
  pointer-events: none;
  transition: color 0.15s;
}
.promo__video-button svg:last-child {
  display: none;
}
.promo__video-button.active svg:first-child {
  display: none;
}
.promo__video-button.active svg:last-child {
  display: block;
}
.promo__content {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promo__content h3 {
  margin-bottom: 30px;
  font-size: 36px;
  max-width: 580px;
}
.promo__content p {
  max-width: 580px;
}

.productsSlider {
  margin-bottom: 40px;
}
.productsSlider.imagesWithBackground .productSlide__image {
  background: #f5f5f5;
}
.productsSlider.marginBlock {
  margin-block: 150px;
}
.productsSlider__inner {
  margin-inline: auto;
  max-width: 1660px;
}
.productsSlider__inner h3 {
  margin-bottom: 70px;
  font-size: 36px;
  text-align: center;
}
.productsSlider__button {
  margin: 120px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 298px;
  height: 58px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  border: 0.5px solid #707070;
  transition: all 0.15s;
}
.productsSlider__button:hover {
  color: #fff;
  background: #707070;
}
.productsSlider .swiper {
  padding-bottom: 30px;
}
.productsSlider .swiper-button-prev {
  top: unset;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 30px;
  transition: transform 0.3s ease;
}
.productsSlider .swiper-button-prev:hover {
  transform: scale(0.9);
}
.productsSlider .swiper-button-prev::after {
  content: "";
  width: 72px;
  height: 8px;
  background: url("../assets/svgs/arrow-left.svg");
}
.productsSlider .swiper-button-next {
  top: unset;
  bottom: 0;
  right: 0;
  width: 72px;
  height: 30px;
  transition: transform 0.3s ease;
}
.productsSlider .swiper-button-next:hover {
  transform: scale(0.9);
}
.productsSlider .swiper-button-next::after {
  content: "";
  width: 72px;
  height: 8px;
  background: url("../assets/svgs/arrow-right.svg");
}

.productSlide {
  display: block;
  transform-origin: top;
  transition: transform 0.3s ease;
}

.productSlide:hover .productSlide__model {
  opacity: 1;
}
.productSlide__image {
  margin-bottom: 15px;
  padding-inline: 45px;
  aspect-ratio: 0.85/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.productSlide__model {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 20px;
  opacity: 0;
  text-align: center;
  transition: opacity 0.3s ease;
}

.slider {
  overflow: hidden;
  margin-block: 200px;
  margin-block-start: 50px;
}
.slider__top {
  margin-inline: auto;
  max-width: 1040px;
  text-align: center;
}
.slider__top h1 {
  margin-bottom: 20px;
  font-size: 150px;
  line-height: 1.33;
  color: #5a656d;
}
.slider__top p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
  color: #82878b;
}
.slider .swiper-wrapper {
  align-items: normal;
}
.slider .swiper-button-prev, .slider .swiper-button-next {
  margin: 0;
  top: unset;
  left: unset;
  bottom: 0;
  right: 0;
  width: 108px;
  height: 108px;
  color: #fff;
  background: rgba(90, 101, 109, 0.25);
}
.slider .swiper-button-prev:hover, .slider .swiper-button-next:hover {
  background: rgba(122, 132, 139, 0.25);
}
.slider .swiper-button-prev {
  right: 108px;
}
.slider .swiper-button-disabled {
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
  background: rgba(90, 101, 109, 0.25);
}
.slider .swiper-pagination-progressbar {
  position: relative;
  background-color: transparent;
  margin-inline: 5%;
  height: 4px;
  width: 80%;
}
.slider .swiper-pagination-progressbar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 113%;
  height: 2px;
  background: #c3c3c3;
}
.slider .swiper-pagination-progressbar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 113%;
  height: 22px;
  border-inline: 2px solid #5a656d;
}
.slider .swiper-pagination-progressbar-fill {
  background-color: #5a656d;
  height: 3px;
  top: 2px;
}
.slider .swiper-pagination-custom {
  position: relative;
  list-style: none;
  margin-inline: 5%;
  padding-block: 150px 16px;
  display: flex;
  line-height: 1.66;
  bottom: 0;
  z-index: 11;
  width: 80%;
  display: flex;
}
.slider .swiper-pagination-custom::before {
  content: "Then";
  position: absolute;
  bottom: -50px;
  right: 100%;
  font-size: 40px;
  color: #5a656d;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.slider .swiper-pagination-custom::after {
  content: "Now";
  position: absolute;
  bottom: -50px;
  left: 113%;
  font-size: 40px;
  color: #5a656d;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.slider .swiper-pagination-custom .swiper-pagination-switch {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  display: block;
}
.slider .swiper-pagination-custom .swiper-pagination-switch .switch-title {
  position: absolute;
  font-size: 40px;
  font-weight: 400;
  right: 0;
  transform: translateX(50%);
  transition: 0.2s all ease-in-out;
  transition-delay: 0s;
  cursor: pointer;
  z-index: 1;
}
.slider .swiper-pagination-custom .swiper-pagination-switch .switch-title:after {
  position: absolute;
  top: calc(100% + 19px);
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  width: 12px;
  height: 12px;
  background: #5a656d;
  border-radius: 2rem;
  content: "";
  transition: 0.2s all ease-in-out;
  transition-delay: 0s;
  z-index: 1;
}
.slider .swiper-pagination-custom .swiper-pagination-switch.active .switch-title {
  color: #5a656d;
  font-weight: 400;
  transition-delay: 0.4s;
}
.slider .swiper-pagination-custom .swiper-pagination-switch.active .switch-title:after {
  background: #5a656d;
  width: 25px;
  height: 25px;
  transition-delay: 0.4s;
}
.slider .swiper-pagination-custom .swiper-pagination-switch.active ~ .swiper-pagination-switch .switch-title {
  color: #c3c3c3;
}
.slider .swiper-pagination-custom .swiper-pagination-switch.active ~ .swiper-pagination-switch .switch-title:after {
  background: #c3c3c3;
}
.slider--discover {
  padding-block: 140px 180px;
  background: #f1f2f6;
  margin-top: 0;
}

.slide {
  display: flex;
  align-items: flex-end;
}
.slide__block {
  position: relative;
}
.slide__block:first-child {
  width: 55%;
  display: flex;
  align-items: flex-end;
}
.slide__block:last-child {
  margin-bottom: 220px;
  width: 45%;
}
.slide__block h1 {
  white-space: nowrap;
  font-weight: 400;
  font-size: 7.8vw;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.slide__content {
  max-width: 600px;
}
.slide__content h3 {
  margin-bottom: 40px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 400;
  font-size: 44px;
  text-transform: uppercase;
}
.slide__content p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}
.slide__images {
  flex-grow: 1;
  position: relative;
}
.slide__image {
  position: relative;
}
.slide__image:first-child {
  padding-top: 22%;
  padding-right: 10%;
}
.slide__image:nth-child(2) {
  width: 80%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.slide__image img {
  width: 100%;
}
.slide__link {
  position: absolute;
  bottom: 14px;
  right: 12%;
  padding: 5px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide__link span {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
}
.slide__link span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #707070;
}
.slide__link span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #707070;
}

.workshop {
  background: #f1f2f6;
}
.workshop__top {
  margin-bottom: 115px;
  position: relative;
  display: flex;
  align-items: center;
}
.workshop__top h1 {
  position: absolute;
  top: -120px;
  left: 40px;
  z-index: 99;
  font-size: 200px;
  line-height: 1;
  color: #5a656d;
}
.workshop__top-content {
  width: 43%;
  padding: 70px;
  display: flex;
  justify-content: flex-end;
}
.workshop__top-content p {
  max-width: 612px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 34px;
  color: #969696;
}
.workshop__top-image {
  overflow: hidden;
  width: 57%;
}
.workshop__top-image img {
  position: relative;
  z-index: 2;
  width: 100%;
}
.workshop__bottom {
  display: flex;
  justify-content: space-between;
}
.workshop__item {
  display: flex;
  flex-direction: column;
  gap: 75px;
}
.workshop__item:first-child {
  width: 50%;
}
.workshop__item:first-child .workshop__item-content {
  margin-left: auto;
  margin-right: -120px;
}
.workshop__item:last-child {
  width: 43%;
  align-items: flex-start;
}
.workshop__item:last-child .workshop__item-content {
  margin-right: 70px;
}
.workshop__item:last-child .workshop__item-image:first-child img {
  margin-left: auto;
  width: 75%;
}
.workshop__item-image {
  overflow: hidden;
  width: 100%;
}
.workshop__item-image h3 {
  display: none;
}
.workshop__item-image img {
  width: 100%;
}
.workshop__item-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #82878b;
}
.workshop__item-content h3 {
  font-size: 50px;
  text-transform: capitalize;
}
.workshop__item-content p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 20px;
}
.workshop__item-card {
  padding-inline: 95px;
  position: relative;
  aspect-ratio: 1/1.25;
  display: flex;
  align-items: center;
}
.workshop__item-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.workshop__item-card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  line-height: 1.8;
}
.workshop__item-card-content h3 {
  margin-bottom: 75px;
  font-size: 44px;
}
.workshop__item-card-content span {
  font-size: 36px;
}
.workshop--retailer {
  padding-block: 120px;
}
.workshop--retailer .workshop__item:first-child {
  max-width: 750px;
}
.workshop--retailer .workshop__item:first-child .workshop__item-content {
  gap: 70px;
  margin-bottom: 130px;
}
.workshop--retailer .workshop__item:first-child .workshop__item-content p {
  font-size: 34px;
  color: #969696;
}
.workshop--retailer .workshop__item:last-child img {
  width: unset !important;
}
.workshop--retailer .workshop__item:last-child .workshop__item-content h3 {
  margin-bottom: 40px;
}

.founder {
  overflow: hidden;
  display: flex;
  background: #f1f2f6;
}
.founder__image {
  width: 50%;
}
.founder__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder__info {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.founder__info-inner {
  max-width: 400px;
}
.founder__info h3 {
  position: relative;
  width: fit-content;
  margin-bottom: 150px;
}
.founder__info h3 span:first-child {
  position: relative;
  z-index: 2;
  font-size: 40px;
  color: #424b53;
}
.founder__info h3 span:last-child {
  position: absolute;
  top: -160px;
  left: -240px;
  font-size: 240px;
  color: #fff;
}
.founder__info p {
  margin-bottom: 40px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 24px;
  color: #424b53;
}
.founder--discover {
  align-items: flex-start;
  padding-block: 220px 180px;
}
@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.founder--discover .fade-left {
  animation: fade-left 1s ease;
}
.founder--discover .founder__image {
  position: relative;
}
.founder--discover .founder__image h3 {
  position: absolute;
  top: 0;
  left: 100%;
}
.founder--discover .founder__image h3 span:first-child {
  font-size: 240px;
  color: #fff;
}
.founder--discover .founder__image h3 span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  color: #424b53;
}
.founder--discover .founder__info {
  padding: 330px 60px 60px;
  align-items: flex-end;
}
.founder--discover .founder__info-inner {
  max-width: 612px;
}
.founder--discover .founder__info h4 {
  margin-bottom: 60px;
  font-family: "NeueHaasUnicaPro", sans-serif;
  font-size: 34px;
  line-height: 1.5;
}
.founder--discover .founder__info-text p {
  display: inline;
  margin-bottom: 0;
  font-size: 20px;
  max-width: unset;
}

.contact {
  padding-block: 250px 110px;
  background: #f1f2f6;
}
.contact__inner {
  margin-inline: auto;
  max-width: 900px;
}
.contact__top {
  margin-bottom: 80px;
  text-align: center;
}
.contact__top h3 {
  margin-bottom: 32px;
  font-size: 36px;
}
.contact__top p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}
.contact__form {
  position: relative;
}
.contact__form.submitted .contact__form-message {
  display: flex;
}
.contact__form-inputs {
  margin-bottom: 85px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.contact__form-inputs input,
.contact__form-inputs textarea {
  width: 100%;
  padding: 16px 36px;
  background: inherit;
  border: 0.5px solid #707070;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 15px;
  color: #707070;
  transition: all 0.2s;
}
.contact__form-inputs input::placeholder,
.contact__form-inputs textarea::placeholder {
  color: inherit;
}
.contact__form-inputs input:focus,
.contact__form-inputs textarea:focus {
  background: #fff;
}
.contact__form-inputs textarea {
  resize: none;
  height: 260px;
}
.contact__form-inputs input:nth-child(1), .contact__form-inputs input:nth-child(2) {
  width: calc(50% - 12px);
}
.contact__form button {
  margin-inline: auto;
  display: block;
  width: 414px;
  padding: 10px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  background: #5a656d;
  outline: 0;
  transition: all 0.2s;
}
.contact__form button:hover {
  background: #75838d;
}
.contact__form-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f1f2f6;
  display: none;
  justify-content: center;
  align-items: center;
}
.contact__form-message h3 {
  font-size: 36px;
  line-height: 1.5;
  text-align: center;
  animation: fade-up 1s;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.75);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact--retailer {
  padding-block: 0 100px;
}

.footer {
  padding-block: 30px;
  position: relative;
}
.footer h6 {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
  font-weight: 400;
  color: #424b53;
}
.footer__image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 385px;
  height: 385px;
}
.footer__goTop {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(122, 132, 139, 0.25);
  transition: background 0.15s;
}
.footer__goTop:hover {
  background: rgba(181, 181, 181, 0.25);
}
.footer__top {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__top span {
  width: 110px;
  height: 1px;
  background: #707070;
}
.footer__container {
  margin-left: 490px;
}
.footer__content {
  margin-bottom: 90px;
  display: flex;
  justify-content: space-between;
}
.footer__copyright {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 10px;
  color: #626262;
}
.footer__nav {
  display: flex;
  gap: 130px;
}
.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  padding-block: 5px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 14px;
  color: #626262;
  transition: color 0.15s;
}
.footer__nav a:hover {
  color: #959595;
}
.footer__contact h6 {
  margin-bottom: 22px;
}
.footer__form {
  margin-bottom: 35px;
  padding-block: 8px;
  width: 414px;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #707070;
}
.footer__form input {
  flex-grow: 1;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 16px;
  color: #626262;
}
.footer__form button {
  width: 72px;
}
.footer__form button svg {
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__social a {
  padding: 5px;
}
.footer__social a svg {
  color: #424b53;
  transition: all 0.15s;
}
.footer__social a:hover svg {
  color: #82878b;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.intro {
  overflow: hidden;
  position: relative;
  height: 55vw;
}
.intro__video {
  position: relative;
  width: 100%;
  height: 56vw;
}
.intro__video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.intro__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro__text-mobile {
  display: none;
}
.intro__text-desktop {
  position: absolute;
  top: 40%;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 200px;
  letter-spacing: 10px;
  color: #fff;
}
.intro__text-desktop small {
  margin-right: 20px;
  font-family: "Neue Haas Unica Pro Light", sans-serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: normal;
}
.intro__video-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: border 0.15s;
}
.intro__video-button:hover {
  color: #959595;
  border-color: #959595;
}
.intro__video-button svg {
  pointer-events: none;
  transition: color 0.15s;
}
.intro__video-button svg:last-child {
  display: none;
}
.intro__video-button.active svg:first-child {
  display: none;
}
.intro__video-button.active svg:last-child {
  display: block;
}

.gallery {
  padding-block: 60px;
}
.gallery__slide {
  display: flex;
  gap: 25px;
  align-items:stretch;
}
.gallery__slide-col:first-child {
  width: 70%;
}
.gallery__slide-col:first-child .gallery__slide-item {
  height: 100%;
}
.gallery__slide-col:last-child {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}
.gallery__slide-col:last-child .gallery__slide-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.gallery__slide-col {
  position: relative;
}
.gallery__slide-item img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 100%;
}
.gallery__slide-item span {
  position: absolute;
  writing-mode: vertical-rl;
  transform: rotate(-180deg);
  bottom: 0;
  right: -12px;
  color: #fff;
  font-size: 80px;
  
  letter-spacing: 2px;
}



.gallery .swiper-button-prev, .gallery .swiper-button-next {
  top: unset;
  bottom: 0;
  left: 0;
  width: 160px;
  height: 160px;
  color: #fff;
  background: rgba(90, 101, 109, 0.25);
}
.gallery .swiper-button-prev:hover, .gallery .swiper-button-next:hover {
  background: rgba(122, 132, 139, 0.25);
}
.gallery .swiper-button-next {
  left: 160px;
}
.gallery .swiper-button-disabled {
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
  background: rgba(90, 101, 109, 0.25);
}

.jewelry__bg {
  width: 100%;
}
.jewelry__bg img {
  width: 100%;
}
.jewelry__bg img:last-child {
  display: none;
}
.jewelry h2 {
      font-size: 8vw;
        font-weight: 100;
        color: #fff;
}

.story {
  position: relative;
  z-index: 2;
  margin-bottom: -2px;
  overflow: hidden;
  display: flex;
}
.story__content {
  padding: 100px;
  flex-grow: 1;
  display: flex;
  justify-content: left;
}
.story__content-inner {
  max-width: 516px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story__content h3 {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #424b53;
}
.story__content p {
  margin-bottom: 40px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 24px;
  color: #424b53;
}
.story__video {
  position: relative;
  width: 57%;
  aspect-ratio: 11/7.7;
}
.story__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 106px;
  height: 106px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: border 0.15s;
}
.story__video-button:hover {
  color: #959595;
  border-color: #959595;
}
.story__video-button svg {
  pointer-events: none;
  transition: color 0.15s;
}
.story__video-button svg:last-child {
  display: none;
}
.story__video-button.active svg:first-child {
  display: none;
}
.story__video-button.active svg:last-child {
  display: block;
}

.events {
  padding-block: 245px 20px;
  background: #ecf0f4;
}
.events__inner {
  margin-inline: auto;
  max-width: 1370px;
}
.events__inner h3 {
  margin-bottom: 48px;
  font-size: 36px;
  color: #5a656d;
  text-align: center;
}
.events__video {
  position: relative;
  aspect-ratio: 16/9;
  background: #601e1e;
}
.events__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.events__video-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: border 0.15s;
}
.events__video-button:hover {
  color: #959595;
  border-color: #959595;
}
.events__video-button svg {
  pointer-events: none;
  transition: color 0.15s;
}
.events__video-button svg:last-child {
  display: none;
}
.events__video-button.active svg:first-child {
  display: none;
}
.events__video-button.active svg:last-child {
  display: block;
}
.events__block {
  padding: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 35px;
}

.event {
  width: 480px;
  display: flex;
  gap: 5px;
}
.event span {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
}
.event span:first-child {
  white-space: nowrap;
}

.swiper--events .swiper-button-prev, .swiper--events .swiper-button-next {
  transition: transform 0.2s;
}
.swiper--events .swiper-button-prev:hover, .swiper--events .swiper-button-next:hover {
  transform: scale(1.1);
}
.swiper--events .swiper-button-prev {
  top: unset;
  bottom: 0;
  width: 72px;
  height: 30px;
}
.swiper--events .swiper-button-prev::after {
  font-size: unset;
  content: "";
  width: 72px;
  height: 8px;
  background: url("../assets/svgs/arrow-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.swiper--events .swiper-button-next {
  top: unset;
  bottom: 0;
  width: 72px;
  height: 30px;
}
.swiper--events .swiper-button-next::after {
  font-size: unset;
  content: "";
  width: 72px;
  height: 8px;
  background: url("../assets/svgs/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.news {
  padding-block: 120px;
}
.news__inner {
  margin-inline: auto;
  max-width: 1370px;
}
.news__inner h3 {
  margin-bottom: 71px;
  font-size: 36px;
  color: #5a656d;
  text-align: center;
  text-transform: capitalize;
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 73px;
}
.news__item {
  display: flex;
  align-items: center;
  gap: 150px;
}
.news__item-image {
  width: calc(53.5% - 75px);
  aspect-ratio: 4/3;
  /*background: #d5d5d5;*/
}
.news__item-image img {
  width: 100%;
  height: auto;
}
.news__item-content {
  width: calc(46.5% - 75px);
}
.news__item-content h4 {
  margin-bottom: 32px;
  font-size: 34px;
}
.news__item-content p {
  margin-bottom: 120px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}
.news__item-content-date {
  padding-left: 16px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 14px;
  color: #969696;
  border-left: 1px solid #707070;
}
.news__seeMore {
  display: none;
  padding: 6px 46px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 14px;
  border: 1px solid #707070;
}

.grid {
  padding-block: 80px 160px;
}
.grid__inner {
  margin-inline: auto;
  max-width: 1650px;
  display: flex;
  flex-wrap: wrap;
  gap: 110px 65px;
}
.grid__inner .card {
  width: calc(33.33% - 43.33px);
}

.article {
  padding-top: 280px;
}
.article__inner {
  margin-inline: auto;
  max-width: 1080px;
}
.article__top {
  margin-bottom: 80px;
  margin-inline: auto;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.article__top h3 {
  font-size: 36px;
}
.article__top p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}
.article__top span {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 14px;
  color: #969696;
}
.article__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.article__block {
  display: flex;
  flex-direction: column;
}
.article__block:first-child .article__image {
  /*aspect-ratio: 16/9;*/
  max-width: 100%;
  height: auto;
}

.article__block h1 {
  font-size: 24px;
  font-weight: 400;
  font-family: 'Neue Haas Unica Pro';
  margin: 26px 0px 0px 0px;
}
/*
.article__block h2 {
  font-size: 24px;
  font-weight: 400;
  font-family: 'Neue Haas Unica Pro';
  margin: 26px 0px 0px 0px;
}*/
.article__block p {
  font-family: 'Neue Haas Unica Pro';
  font-weight: 400;
  font-size: 18px;
  margin: 26px 0px 0px 0px;
  line-height: 1.5;
}

.article__block ul {
  font-family: 'Neue Haas Unica Pro';
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

 .article__block figure.image {
   margin: 0 auto;
 }

 .article__block figure.image.image-style-block-align-right {
   margin-left: auto !important;
   margin-right: 0 !important;
 }

 .article__block figure.image.image-style-block-align-left {
   margin-right: auto;
   margin-left: 0px;
 }
 
.article__row {
  display: flex;
  gap: 66px;
}
.article__row .article__image {
  /*aspect-ratio: 3/4;*/
  max-width: 100%;
  height: auto !important;
}
.article__image {
  flex: 1;
  /*background: #d5d5d5;*/
}

.stories {
  padding-block: 180px;
}
.stories__inner {
  margin-inline: auto;
  max-width: 1650px;
}
.stories__inner h3 {
  margin-bottom: 70px;
  font-size: 36px;
  text-align: center;
}

.productDesktop {
  padding-top: 204px;
}
.productDesktop__inner {
  display: flex;
  align-items: flex-start;
  gap: 84px;
}
.productDesktop__inner-container {
  width: 60%;
}
.productDesktop__inner-container.white .productDesktop__images-white {
  display: flex;
}
.productDesktop__inner-container.gold .productDesktop__images-gold {
  display: flex;
}
.productDesktop__inner-container.rose .productDesktop__images-rose {
  display: flex;
}
.productDesktop__images {
  display: flex;
  flex-wrap: wrap;
}
.productDesktop__images img {
  cursor: pointer;
}
.productDesktop__preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}
.productDesktop__preview.active {
  pointer-events: auto;
  opacity: 1;
}
.productDesktop__preview.active .productDesktop__preview-inner {
  transform: scale(1);
}

.productDesktop__preview-inner {
  position: relative;
  padding: 20px 50px;
  width: 65vw;
  height: 88vh;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  gap: 50px;
  transform: scale(0.5);
  transition: all 0.5s ease;
}
.productDesktop__preview-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #707070;
}
.productDesktop__preview-close svg {
  width: 30px;
  height: 30px;
}
.productDesktop__preview-slider {
  overflow: hidden;
}
.productDesktop__preview-slider .swiper {
  height: 100%;
  display: none;
}
.productDesktop__preview-slider .swiper-wrapper {
  justify-content: center;
}
.productDesktop__preview-slider .swiper-slide {
  height: auto !important;
}
.productDesktop__preview-slider.white .white {
  display: block;
}
.productDesktop__preview-slider.gold .gold {
  display: block;
}
.productDesktop__preview-slider.rose .rose {
  display: block;
}
.productDesktop__preview-slide {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.productDesktop__preview-slide img {
  width: 100%;
  height: 100%;
  transition: all 0.2s ease;
}
.productDesktop__preview-slide.active {
  border: 1px solid #707070;
}
.productDesktop__preview-slide.active img {
  width: 80%;
  height: 80%;
}
.productDesktop__preview-image {
  width: 75%;
  display: flex;
  align-items: center;
}
.productDesktop__preview-image img {
  width: auto;
  height: auto;
  margin: 0 auto;
  max-width: 85vh;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.productDesktop__images {
  width: 100%;
  flex-wrap: wrap;
  display: none;
}
.productDesktop__images img {
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.productDesktop__content {
  position: relative;
  flex-grow: 1;
  padding-right: 30px;
}
.productDesktop__content-inner {
  max-width: 420px;
}
.productDesktop__breadcrumb {
  margin-bottom: 40px;
}
.productDesktop__breadcrumb a, .productDesktop__breadcrumb span {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 9px;
}
.productDesktop__breadcrumb a:not(:last-child) {
  margin-right: 3px;
}
.productDesktop__breadcrumb span::after {
  margin-left: 3px;
  content: "/";
}
.productDesktop__title {
  margin-bottom: 15px;
  font-size: 36px;
}
.productDesktop__price {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 22px;
}
.productDesktop__price small {
  font-size: 9px;
}
.productDesktop__info {
  position: relative;
  margin-bottom: 20px;
  padding-block: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-block: 0.25px solid #707070;
}
.productDesktop__info::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 135px;
  width: 0.25px;
  height: calc(100% - 60px);
  background: #707070;
}
.productDesktop__info-item {
  display: -webkit-flex;
  display: flex;
  gap: 70px;
  align-items: center;
  -webkit-align-items: center;
}
.productDesktop__info-item span {
  width: 100px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 12px;
  height: 16px;
  display: inline-flex;
  align-items: flex-end;

}
.productDesktop__colors {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 18px;
}
.productDesktop__colors label {
  position: relative;
}
.productDesktop__colors label input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  width: 0;
  height: 0;
  font-size: 0;
}
.productDesktop__colors label input:checked ~ span {
  transform: scale(1.5);
  border-color: #c3c3c3;
}
.productDesktop__colors label span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.productDesktop__desc {
  margin-bottom: 30px;
}
.productDesktop__desc p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 12px;
  text-align: justify;
}
.productDesktop__buttons {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 90px;
}
.productDesktop__buttons button {
  padding-block: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 12px;
}
.productDesktop__locate-retailer {
  width: 340px;
  padding: 9px 30px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
  border: 1px solid #707070;
  transition: all 0.3s;
  display: block;
  margin: 0 auto;
}
.productDesktop__locate-retailer:hover {
  color: #fff;
  background: #707070;
}

.productMobile {
  display: none;
}

.bands {
  padding-block: 125px;
  background: #f5f5f5;
}
.bands__inner {
  margin-inline: auto;
  max-width: 1700px;
}
.bands__row {
  display: flex;
  gap: 40px;
}
.bands__link {
  display: none;
}

.band {
  width: 306px;
  height: 306px;
  background: #efefef;
}
.band--link {
  padding: 25px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 26px;
}
.band--link svg {
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: left;
}
.band--link:hover svg {
  transform: scaleX(50%);
}
.band--link:hover svg path:last-child {
  display: none;
}
.band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suggestions {
  padding-block: 150px 30px;
}
.suggestions h3 {
  margin-bottom: 150px;
  font-size: 36px;
  text-align: center;
}
.suggestions__inner {
  margin-inline: auto;
  max-width: 1620px;
}
.suggestions .swiper {
  padding-bottom: 80px;
}
.suggestions .swiper-button-prev, .suggestions .swiper-button-next {
  top: unset;
  bottom: 0;
  width: 72px;
  height: 30px;
  transition: transform 0.2s;
}
.suggestions .swiper-button-prev:hover, .suggestions .swiper-button-next:hover {
  transform: scale(1.1);
}
.suggestions .swiper-button-prev::after {
  content: "";
  width: 100%;
  height: 8px;
  background: url("../assets/svgs/arrow-left.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.suggestions .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 8px;
  background: url("../assets/svgs/arrow-right.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.suggestion {
  position: relative;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.suggestion__addToFavorites {
  padding: 5px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.suggestion__addToFavorites svg {
  width: 24px;
  height: 24px;
}
.suggestion:hover .suggestion__addToFavorites {
  opacity: 1;
}
.suggestion:hover .suggestion__image img:first-child {
  display: none;
}
.suggestion:hover .suggestion__image img:last-child {
  display: block;
}
.suggestion:hover .suggestion__title {
  opacity: 1;
}
.suggestion__image {
  margin-bottom: 40px;
  width: 100%;
}
.suggestion__image img {
  width: 100%;
  animation: fade-in 0.3s ease;
}
.suggestion__image img:last-child {
  display: none;
}
.suggestion__title {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
  transition: opacity 0.3s ease;
  text-align: center;
  opacity: 0;
}

.faqs {
  padding-block: 250px 100px;
  background: #f1f2f6;
}
.faqs__inner {
  margin-inline: auto;
  max-width: 1040px;
}
.faqs__top {
  margin-bottom: 60px;
  text-align: center;
}
.faqs__top h3 {
  margin-bottom: 32px;
  font-size: 36px;
}
.faqs__top p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}

.faq {
  padding-block: 30px;
  border-block: 1px solid #d5d5d5;
  cursor: pointer;
}
.faq.active .faq__top svg {
  transform: rotate(-180deg);
}
.faq.active .faq__content {
  opacity: 1;
}
.faq__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.faq__top h4 {
  font-size: 26px;
}
.faq__top svg {
  transition: transform 0.3s ease;
}
.faq__content {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.faq__content-inner {
  padding-top: 24px;
}
.faq__content p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
  color: #969696;
}

.findRetailer {
  padding-block: 250px 100px;
}
.findRetailer__top {
  margin-bottom: 94px;
  margin-inline: auto;
  max-width: 700px;
  text-align: center;
}
.findRetailer__top h3 {
  margin-bottom: 32px;
  font-size: 36px;
}
.findRetailer__top p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}
.findRetailer__bottom {
  display: flex;
  gap: 40px;
}
.findRetailer__content {
  width: 460px;
}
.findRetailer__form {
  margin-bottom: 86px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.findRetailer__form .custom-select,
.findRetailer__form input {
  border-bottom: 1px solid #707070;
}
.findRetailer__form .custom-select {
  text-align: left;
}
.findRetailer__form .custom-select .select-selected {
  padding: 15px 24px 15px 0;
}
.findRetailer__form .custom-select .select-items {
  background: #fff;
}
.findRetailer__form .custom-select .select-items div {
  padding-left: 0;
}
.findRetailer__form input {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
  padding-block: 15px;
  color: #707070;
  border-radius: 0px !important;
}
.findRetailer__form input::placeholder {
  color: inherit;
}
.findRetailer__form-container {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}
.findRetailer__form-container .custom-select {
  width: calc(50% - 20px);
}
.findRetailer__form-container span {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}
.findRetailer__form-container button {
  height: 32px;
  flex-grow: 1;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  background: #5a656d;
  transition: all 0.2s;
  min-width: 152px;
}
.findRetailer__form-container button:hover {
  background: #8899a5;
}
.findRetailer__offices {
  position: relative;
  height: 564px;
}
.findRetailer__offices .swiper {
  height: 100%;
}
.findRetailer__offices .swiper-slide {
  height: auto !important;
}
.findRetailer__offices .swiper-scrollbar {
  width: 6px;
  border-radius: 0;
  background: #fff;
}
.findRetailer__offices .swiper-scrollbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  width: 1px;
  height: 100%;
  background: rgba(112, 112, 112, 0.4);
}
.findRetailer__offices .swiper-scrollbar-drag {
  background: #fff;
  border-radius: 0;
  border: 1px solid #c3c3c3;
}
.findRetailer__office {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.findRetailer__office::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 130px;
  height: 1px;
  background: #707070;
}
.findRetailer__office span {
  text-transform: initial;
}

.findRetailer__office span,
.findRetailer__office a {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 22px;
  color: #626262;
  display: block;
}
.findRetailer__office a {
  transition: 0.3s ease; text-transform: uppercase;
}
.findRetailer__office a.active {
  color: #bf1965;
  font-weight: 700;
}
.findRetailer__map {
  flex-grow: 1;
}
.findRetailer .gm-style-iw-c {
  padding: 25px 20px !important;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0;
  border: 1px solid transparent;
  border-color: rgba(195, 195, 195, 0.8);
  box-shadow: unset;
}
.findRetailer .gm-style-iw-d div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #373737;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 13px;
}
.findRetailer .gm-style-iw-d div span:first-child {
  margin-bottom: 15px;
  font-weight: bold; font-size: 14px; color: #373737;
}
.findRetailer .gm-style-iw-chr {
  display: none;
}

.wearableArt {
  padding-block: 120px;
}
.wearableArt__inner {
  display: flex;
  align-items: center;
  gap: 100px;
}
.wearableArt p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}
.wearableArt__large {
  position: relative;
  width: calc(60% - 50px);
}
.wearableArt__large-title {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  font-size: 132px;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(-180deg);
  white-space: nowrap;
}
.wearableArt__large-content {
  position: relative;
  width: calc(100% - 150px);
  margin-left: auto;
}

.wearableArt__large-content p {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: justify;
}
.wearableArt__small {
  width: calc(40% - 50px);
}
.wearableArt__small img {
  margin-bottom: 70px;
}
.wearableArt__small p {
  margin-bottom: 35px;
  text-align: justify;
}
.wearableArt__small a {
  width: fit-content;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
}
.wearableArt__small a svg:last-child {
  display: none;
}

.uniqueStory {
  position: relative;
}
.uniqueStory__content {
  padding-bottom: 50vh;
  position: relative;
  z-index: 2;
  max-width: 1620px;
  margin-inline: auto;
}
.uniqueStory__content h1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 100px;
  opacity: 0.3;
}
.uniqueStory__video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75vh;
}
.uniqueStory__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uniqueStory__video-button {
  position: absolute;
  z-index: 3;
  bottom: 40px;
  left: 84px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f5f5f5;
  transition: border 0.15s;
}
.uniqueStory__video-button svg {
  pointer-events: none;
  transition: color 0.15s;
}
.uniqueStory__video-button svg:last-child {
  display: none;
}
.uniqueStory__video-button.active svg:first-child {
  display: none;
}
.uniqueStory__video-button.active svg:last-child {
  display: block;
}

.swiper--fineJewelry .swiper-slide img {
  width: 100%;
  aspect-ratio: 1/1.25;
  object-fit: cover;
}
.swiper--fineJewelry .swiper-button-prev, .swiper--fineJewelry .swiper-button-next {
  top: unset;
  bottom: 0;
  left: 0;
  width: 160px;
  height: 160px;
  color: #fff;
  background: rgba(90, 101, 109, 0.25);
}
.swiper--fineJewelry .swiper-button-prev:hover, .swiper--fineJewelry .swiper-button-next:hover {
  background: rgba(122, 132, 139, 0.25);
}
.swiper--fineJewelry .swiper-button-next {
  left: 160px;
}
.swiper--fineJewelry .swiper-button-disabled {
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
  background: rgba(90, 101, 109, 0.25);
}

.awardWinningDesigns {
  padding-block: 140px;
}
.awardWinningDesigns__inner {
  margin-inline: auto;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  gap: 55px;
}
.awardWinningDesigns h3 {
  margin-inline: auto;
  font-size: 36px;
}
.awardWinningDesigns p {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
}
.awardWinningDesigns__video {
  margin-bottom: 15px;
  position: relative;
}
.awardWinningDesigns__video-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f5f5f5;
  transition: border 0.15s;
}
.awardWinningDesigns__video-button svg {
  pointer-events: none;
  transition: color 0.15s;
}
.awardWinningDesigns__video-button svg:last-child {
  display: none;
}
.awardWinningDesigns__video-button.active svg:first-child {
  display: none;
}
.awardWinningDesigns__video-button.active svg:last-child {
  display: block;
}
.awardWinningDesigns__button {
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 298px;
  height: 58px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  border: 0.5px solid #707070;
  transition: all 0.15s;
}
.awardWinningDesigns__button:hover {
  color: #fff;
  background: #707070;
}

@media (max-width: 1680px) {
  .header__logo {
    margin-block: 26px;
  }
  .header.sticky .header__logo {
    margin-block: 30px;
  }
  .nav__search {
    padding-top: 100px;
  }
  .hero {
    height: 90vh;
    height: 90dvh;
  }
  .hero__text-desktop {
    font-size: 160px;
    letter-spacing: 8px;
  }
  .hero__text-desktop.macDevice {
    margin-bottom: -27px;
  }
  .hero--error {
    height: auto;
  }
  .products__loadMore {
    width: 90px;
    height: 90px;
  }
  .slider--discover {
    margin: 0;
    padding-block: 140px;
  }
  .slider--discover .slider__top h1 {
    font-size: 100px;
  }
  .slide__block:last-child {
    margin-bottom: 150px;
  }
  .slide__block h3 {
    font-size: 36px;
  }
  .productsSlider.marginBlock {
    margin-block: 120px;
  }
  .productsSlider__button {
    margin: 100px auto 0;
    width: 240px;
    height: 50px;
  }
  .collections.no-container .collection span {
    font-size: 90px;
  }
  .collection.macHover::before {
    background: rgba(0, 0, 0, 0.7);
  }
  .collection.macHover span {
    opacity: 1;
    transform: translateY(28px);
  }
  .collection.windowsHover::before {
    background: rgba(0, 0, 0, 0.7);
  }
  .collection.windowsHover span {
    opacity: 1;
    transform: translateY(12px);
  }
  .collection span {
    font-size: 66px;
  }
  .workshop__top {
    margin-bottom: 80px;
  }
  .workshop__top-content {
    padding: 50px;
  }
  .workshop__top-content p {
    font-size: 30px;
  }
  .workshop__top h1 {
    top: -75px;
    font-size: 150px;
  }
  .workshop__item {
    gap: 60px;
  }
  .workshop__item:first-child .workshop__item-content {
    margin-right: -50px;
  }
  .workshop__item:last-child .workshop__item-content {
    margin-right: 50px;
  }
  .workshop__item-content h3 {
    font-size: 44px;
  }
  .workshop__item-content p {
    font-size: 18px;
  }
  .workshop__item-card {
    padding-inline: 75px;
    width: 85%;
  }
  .workshop__item-card-content h3 {
    margin-bottom: 50px;
    font-size: 32px;
  }
  .workshop__item-card-content span {
    font-size: 28px;
  }
  .workshop--retailer {
    padding-block: 80px;
  }
  .workshop--retailer .workshop__item:first-child .workshop__item-content {
    margin-bottom: 80px;
    gap: 50px;
  }
  .workshop--retailer .workshop__item:first-child .workshop__item-content p {
    font-size: 28px;
  }
  .founder__info h3 {
    margin-bottom: 100px;
  }
  .founder__info h3 span:last-child {
    top: -100px;
    left: -160px;
    font-size: 160px;
  }
  .founder--discover .founder__image h3 span:first-child {
    font-size: 180px;
  }
  .founder--discover .founder__info {
    padding: 250px 40px 40px;
  }
  .founder--discover .founder__info h4 {
    margin-bottom: 40px;
    font-size: 30px;
  }
  .footer__goTop {
    width: 120px;
    height: 120px;
  }
  .footer__image {
    width: 300px;
    height: 300px;
  }
  .footer__container {
    margin-left: 350px;
  }
  .footer__content {
    margin-bottom: 60px;
  }
  .footer__form {
    width: 340px;
  }
  .wearableArt {
    padding-block: 100px;
  }
  .wearableArt__large-title {
    font-size: 100px;
  }
  .wearableArt__large-content {
    width: calc(100% - 130px);
    padding-top: 20px;
  }
        @supports (-webkit-hyphens:none) and (not (overflow:-webkit-marquee)) {
          .wearableArt__large-content {
            padding-top: 50px;
          }
        }

  .uniqueStory__content h1 {
    font-size: 80px;
    gap: 10px;
  }
  .swiper--fineJewelry .swiper-button-prev, .swiper--fineJewelry .swiper-button-next {
    width: 120px;
    height: 120px;
  }
  .swiper--fineJewelry .swiper-button-next {
    left: 120px;
  }
  .awardWinningDesigns__button {
    width: 240px;
    height: 50px;
  }
}
@media (max-width: 1340px) {
  .auto-container {
    padding-inline: 60px;
  }
  .custom-select .select-selected {
    font-size: 16px;
  }
  .header__container {
    gap: 40px;
  }
  .nav__item-link {
    font-size: 18px;
  }
  .hero__text-desktop {
    font-size: 130px;
    letter-spacing: 6px;
  }
  .hero__text-desktop.macDevice {
    margin-bottom: -22px;
  }
  .collections.no-container .collection span {
    font-size: 70px;
  }
  .collection span {
    font-size: 56px;
  }
  .footer__goTop {
    width: 80px;
    height: 80px;
  }
  .footer__goTop svg {
    width: 24px;
  }
  .footer__image {
    width: 240px;
    height: 240px;
  }
  .footer__container {
    margin-left: 290px;
  }
  .footer__nav {
    gap: 50px;
  }
  .footer__form {
    width: 300px;
  }
  .footer__content {
    margin-bottom: 40px;
  }
  .event__list-item {
    width: 400px;
  }
  .event__list-item span {
    font-size: 18px;
  }
  .news__item {
    gap: 60px;
  }
  .news__item-image {
    width: calc(50% - 30px);
  }
  .news__item-content {
    width: calc(50% - 30px);
  }
  .grid__inner {
    gap: 80px 60px;
  }
  .grid__inner .card {
    width: calc(33.33% - 40px);
  }
  .customize__inner {
    padding: 70px 50px;
  }
  .products__top {
    margin-bottom: 50px;
  }
  .products__filter {
    gap: 30px;
  }
  .products__filter-title {
    font-size: 16px;
  }
  .products__filter-content {
    gap: 30px;
  }
  .products__sort {
    gap: 30px;
  }
  .products__sort-title {
    font-size: 16px;
  }
  .products__list {
    gap: 50px;
  }
  .products__loadMore {
    width: 70px;
    height: 70px;
  }
  .product--link img {
    top: 30px;
    right: 30px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
  .product--banner.left img {
    right: -25px;
  }
  .product--banner.right img {
    left: -25px;
  }
  .promo p {
    font-size: 16px;
  }
  .promo__top h3 {
    font-size: 28px;
  }
  .promo__content h3 {
    font-size: 28px;
  }
  .slider {
    margin-block: 80px;
    margin-block-start: 0;
  }
  .slider .swiper-button-prev, .slider .swiper-button-next {
    width: 80px;
    height: 80px;
  }
  .slider .swiper-button-prev::after, .slider .swiper-button-next::after {
    font-size: 30px;
  }
  .slider .swiper-button-prev {
    right: 80px;
  }
  .slider--discover {
    padding-block: 130px;
    margin-top: 0;
  }
  .slider--discover .slider__top h1 {
    font-size: 100px;
  }
  .slider--discover .slider__top p {
    font-size: 16px;
  }
  .slide__block:last-child {
    margin-bottom: 100px;
  }
  .slide__block h3 {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .slide__block p {
    font-size: 16px;
  }
  .productsSlider.marginBlock {
    margin-block: 100px;
  }
  .productsSlider__button {
    margin: 80px auto 0;
    width: 200px;
    font-size: 14px;
  }
  .productSlide__image {
    padding-inline: 25px;
  }
  .band {
    width: 260px;
    height: 260px;
  }
  .band--link {
    font-size: 22px;
  }
  .suggestions {
    padding-top: 120px;
  }
  .findRetailer__content {
    width: 360px;
  }
  .findRetailer__offices {
    height: auto;
    max-height: 520px;
    overflow-y: scroll;
  }
  .findRetailer__office span,
  .findRetailer__office a {
    font-size: 18px;
  }
  .founder--discover {
    padding-block: 180px 120px;
  }
  .founder--discover .founder__image h3 span:first-child {
    font-size: 160px;
  }
  .founder--discover .founder__image h3 span:last-child {
    font-size: 36px;
  }
  .founder--discover .founder__info {
    padding: 200px 40px 40px;
  }
  .founder--discover .founder__info h4 {
    margin-bottom: 30px;
    font-size: 26px;
  }
  .founder--discover .founder__info-text p {
    font-size: 18px;
  }
  .workshop__top {
    margin-bottom: 60px;
  }
  .workshop__top h1 {
    top: -60px;
    font-size: 120px;
  }
  .workshop__top-content p {
    font-size: 24px;
  }
  .workshop__item {
    gap: 40px;
  }
  .workshop__item:first-child .workshop__item-content {
    margin-left: 40px;
    margin-right: 0;
  }
  .workshop__item:last-child .workshop__item-content {
    margin-right: 40px;
  }
  .workshop__item-content {
    gap: 15px;
  }
  .workshop__item-content h3 {
    font-size: 36px;
  }
  .workshop__item-content p {
    font-size: 16px;
  }
  .workshop__item-card {
    padding-inline: 50px;
  }
  .workshop__item-card h3 {
    margin-bottom: 30px;
    font-size: 26px;
  }
  .workshop__item-card span {
    font-size: 22px;
  }
  .workshop--retailer .workshop__item:first-child .workshop__item-content p {
    font-size: 22px;
  }
  .wearableArt {
    padding-block: 80px;
  }
  .wearableArt__inner {
    gap: 60px;
  }
  .wearableArt p {
    font-size: 16px;
  }
  .wearableArt__large {
    width: calc(60% - 30px);
    gap: 20px;
  }
  .wearableArt__large-title {
    font-size: 80px;
  }
  .wearableArt__large-content {
    width: calc(100% - 100px);
  }
  .wearableArt__large-content p {
    top: 15px;
  }
  .wearableArt__small {
    width: calc(40% - 30px);
  }
  .wearableArt__small img {
    margin-bottom: 40px;
  }
  .wearableArt__small p {
    margin-bottom: 30px;
  }
  .uniqueStory__content h1 {
    font-size: 60px;
  }
  .awardWinningDesigns {
    padding-block: 100px;
  }
  .awardWinningDesigns__button {
    width: 200px;
    font-size: 14px;
  }
}
@media (max-width: 1180px) {
  .productDesktop__preview-inner {
    width: 92vw;
  }

  .collections h3 {
    margin-bottom: 80px;
  }
  .collections.no-container .collection span {
    font-size: 60px;
  }
  .collection span {
    font-size: 44px;
  }
}
/*1340px*/
@media (max-width: 1480px) {

  .jewelry .jewelry__inner {
      bottom: 10px;
    }

  .auto-container {
    padding-inline: 40px;
  }
  .link:hover {
    transform: unset;
  }
  .link:hover svg {
    transform: unset;
  }
  .link:hover svg path:nth-child(2) {
    display: block;
  }
  .header {
    padding-top: 0;
  }
  .header__logo img:first-child {
    display: block !important;
  }
  .header__logo img:last-child {
    display: none !important;
  }
  .header.sticky .header__container {
    display: block;
  }
  .header.sticky .header__logo {
    margin-block: 20px;
  }
  .header.sticky .nav-button-desktop {
    display: none;
  }
  .header .nav-button-mobile {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 15px;
    display: flex;
    align-items: center;
  }
  .header .nav-button-mobile span {
    width: 100%;
    height: 1px;
    background: #798189;
  }
  .header .nav-button-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background: #798189;
  }
  .header .nav-button-mobile::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background: #798189;
  }
  .header__container {
    position: static;
  }
  .header__logo img:first-child {
    width: 170px;
  }
  .header__logo img:last-child {
    width: 100px;
  }
  .header__container {
    display: contents;
  }
  .header__buttons {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #fff;
    padding-top: 100px;
  }
  .nav.active {
    display: block;
  }
  .nav__inner {
    position: relative;
    margin-inline: auto;
    width: 540px;
    height: 100%;
    flex-direction: column;
    justify-content: unset;
  }
  .nav__close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 3;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #707070;
  }
  .nav__item-link {
    width: 100%;
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    text-transform: uppercase;
    justify-content: space-between;
    gap: unset;
  }
  .nav__item-link svg {
    transform: rotate(-90deg);
  }
  .nav__item-link:hover svg {
    transform: translateX(10px) rotate(-90deg);
  }
  .nav__item-link::before {
    display: none;
  }
  .nav__item.active .nav__item-link svg {
    transform: rotate(-90deg);
  }
  .nav__item-content {
    padding: 0;
    top: 0;
    z-index: 2;
    height: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    opacity: 1;
  }
  .nav__item-content.active {
    display: flex;
  }
  .nav__item-content-button {
    padding-block: 10px;
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .nav__item-content-button span {
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
    color: #424b53;
  }
  .nav__item-content::before {
    display: none;
  }
  .nav__item-category-name {
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 18px;
  }
  .nav__item-category.active .nav__item-category-name {
    border-left: 0;
  }
  .nav__item-category-content {
    display: none;
  }
  .nav__search {
    padding: 10px 0;
    position: static;
    margin-inline: auto;
    width: unset;
    max-width: 540px;
    height: unset;
    margin-bottom: 65px;
    border-radius: 0;
    opacity: 1;
    transform: translateX(0);
    background: inherit;
  }
  .nav__search-close {
    display: none;
  }
  .hero__text-desktop {
    font-size: 110px;
    letter-spacing: 5px;
  }
  .hero__text-desktop.macDevice {
    margin-bottom: -17px;
  }
  .hero__error h1 {
    font-size: 45px;
  }
  .hero__error p {
    font-size: 18px;
  }
  .hero__error a {
    font-size: 18px;
  }
  .hero--error {
    padding: 156px 0 10vh;
    padding-top: unset;
    padding: 60px 0 10vh;
  }
  .breadcrumb {
    padding-top: 120px;
    display: block;
  }
  .breadcrumb a {
    padding-inline: 10px;
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    font-size: 14px;
  }
  .breadcrumb a:first-child {
    padding-left: 0;
  }
  .breadcrumb a:not(:last-child) {
    border-right: 1px solid #707070;
  }
  
    .breadcrumb span {
      border-right: 1px solid #707070;

      padding-inline: 10px;
      font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
      font-size: 9px;
      padding-left: 0px;
    }

  .customize__inner {
    padding: 50px 30px;
  }
  .customize__content h3 {
    font-size: 30px;
  }
  .customize__content p {
    font-size: 16px;
  }
  .products__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .products__filter {
    position: relative;
    z-index: 100;
    padding: 20px;
    margin-left: -40px;
    width: calc(50% + 40px);
    justify-content: center;
    border: 0.25px solid transparent;
    border-color: #d8d8d8 transparent #d8d8d8 transparent;
  }
  .products__filter-title {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .products__filter-title svg {
    display: block;
  }
  .products__filter-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 3;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #707070;
  }
  .products__filter-content {
    display: none;
    padding: 100px 20px 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #fff;
    padding-top: 100px;
  }
  .products__filter-content.active {
    display: block;
  }
  .products__filter-content-mobile {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
  }
  .products__filter-content-mobile-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  }
  .products__filter-accordion {
    padding-inline: 30px;
    overflow-y: auto;
    height: calc(100% - 150px);
  }
  .products__filter-clear {
    display: block;
    margin-left: auto;
    margin-bottom: 24px;
    padding: 4px 22px;
    font-size: 14px;
    border: 0.5px solid #707070;
    transition: all 0.2s;
  }
  .products__filter-clear:hover {
    color: #fff;
    background: #707070;
  }
  .products__filter-selected-items {
    min-height: 41px;
    border-top: 0.6px solid rgba(166, 166, 166, 0.4);
    padding-block: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .products__filter-selected-items span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    line-height: 1;
  }
  .products__filter-selected-items span::before {
    content: "";
    width: 5px;
    height: 5px;
    background: url("../assets/svgs/small-x.svg");
    background-position: center;
    background-repeat: no-repeat;
  }
  .products__filter-apply {
    padding: 10px;
    width: 100%;
    background: #000;
    font-size: 16px;
    color: #e8edf1;
    transition: all 0.2s;
    border: 2px solid transparent;
  }
  .products__filter-apply:hover {
    background: #fff;
    color: #000;
    border-color: #000;
  }
  .products__filter-item:not(:last-child) {
    border-bottom: 0.6px solid rgba(166, 166, 166, 0.4);
  }
  .products__filter-item.active .products__filter-item-top svg {
    transform: rotate(90deg);
  }
  .products__filter-item.active .products__filter-item-content {
    opacity: 1;
  }
  .products__filter-item.enabled .products__filter-item-top::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #626262;
  }
  .products__filter-item-top {
    position: relative;
    padding-block: 24px;
    display: flex;
    justify-content: space-between;
  }
  .products__filter-item-top span {
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    font-size: 16px;
  }
  .products__filter-item-top svg {
    transition: transform 0.4s ease;
  }
  .products__filter-item-content {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: all 0.4s ease;
  }
  .products__filter-item-content-inner {
    padding: 10px 10px 34px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .products__filter-item-content label {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .products__filter-item-content label input {
    position: absolute;
    width: 0;
    height: 0;
    font-size: 0;
  }
  .products__filter-item-content label input:checked ~ small {
    background: #626262;
  }
  .products__filter-item-content label small {
    width: 12px;
    height: 12px;
    border: 1px solid #707070;
  }
  .products__filter-item-content label span {
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    font-size: 14px;
  }
  .products__filter .custom-select {
    display: none;
  }
  .products__sort {
    position: relative;
    padding: 20px;
    margin-right: -40px;
    display: flex;
    justify-content: center;
    width: calc(50% + 40px);
    justify-content: center;
    border: 0.25px solid;
    border-color: #d8d8d8 transparent #d8d8d8 #d8d8d8;
  }
  .products__sort-title {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .products__sort-title span {
    display: none;
  }
  .products__sort-title svg {
    display: block;
  }
  .products--rae .product--banner.right {
    display: none;
  }
  .product--link {
    padding: 0;
    margin-left: -40px;
    width: calc(100% + 80px);
    display: flex;
    align-items: flex-end;
  }
  .product--link img {
    position: static;
    width: 85%;
    height: 90%;
  }
  .product--banner {
    margin-left: -40px;
    width: calc(100% + 80px);
    height: unset;
    aspect-ratio: 1.25/1;
    overflow: hidden;
  }
  .product--banner img {
    position: static;
    width: 100%;
    transition: 2s ease;
    transition-delay: 0.2s;
  }
  .product--banner img:nth-child(2) {
    transition: 2s ease;
    transition-delay: unset;
  }
  .product--banner._show img:nth-child(1) {
    transition-delay: unset;
  }
  .product--banner._show img:nth-child(2) {
    transition-delay: 0.2s;
  }
  .product--banner.right {
    display: none;
  }
  .promo {
    padding-block: 50px;
    gap: 80px;
  }
  .promo__top {
    padding-inline: 40px;
  }
  .promo__bottom {
    padding-inline: 40px;
    flex-direction: column;
  }
  .promo__video {
    width: 100%;
  }
  .promo__content {
    width: 100%;
  }
  .slider {
    margin-block: 50px;
  }
  .slider .swiper-button-prev, .slider .swiper-button-next {
    width: 60px;
    height: 60px;
  }
  .slider .swiper-button-prev::after, .slider .swiper-button-next::after {
    font-size: 26px;
  }
  .slider .swiper-button-prev {
    right: 60px;
  }
  .slider .swiper-pagination-progressbar {
    margin: 0;
    margin-left: 64px;
    width: 1550px;
    min-width: 1550px;
    transition: transform 0.75s ease;
  }
  .slider .swiper-pagination-custom {
    margin: 0;
    margin-left: 64px;
    padding-block: 100px 16px;
    width: 1550px;
    min-width: 1550px;
    transition: transform 0.75s ease;
  }
  .slider--discover {
    padding-block: 100px;
    margin-top: 0;
  }
  .slide__block:last-child {
    margin-bottom: 80px;
  }
  .collections {
    padding-block: 50px;
  }
  .collections h3 {
    margin-bottom: 60px;
    font-size: 30px;
  }
  .collections__content {
    padding-right: 40px;
    width: calc(100% + 40px);
    margin-right: -40px;
    overflow-x: auto;
    gap: 40px;
  }
  .collections__content::-webkit-scrollbar {
    display: none;
  }
  .collections.no-container .collections__content {
    width: 100%;
    padding-inline: 40px;
    margin: 0;
    gap: 40px;
  }
  .collections.no-container .collection span {
    font-size: 18px;
  }
  /*.collection {
    flex: unset;
    flex-shrink: 0;
    width: 210px;
  }*/
  .collection::before {
    display: none;
  }
  .collection img {
    margin-bottom: 13px;
    width: 100%;
    height: 300px;
  }
  .collection span {
    position: static;
    font-size: 18px;
    letter-spacing: normal;
    display: flex;
    justify-content: space-between;
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    color: #626262;
    transform: unset;
    text-transform: capitalize;
    opacity: 1;
  }
  .collection span svg {
    margin-top: 5px;
    display: block;
  }
  .founder {
    padding: 40px;
    flex-direction: column;
    background: #fff;
  }
  .founder__image {
    width: 100%;
  }
  .founder__info {
    width: 100%;
    padding-block: 30px;
    display: block;
  }
  .founder__info-inner {
    max-width: unset;
  }
  .founder__info .link {
    margin-left: auto;
  }
  .founder__info p {
    margin-bottom: 30px;
    max-width: 540px;
  }
  .founder__info h3 {
    margin-bottom: 50px;
  }
  .founder__info h3 span:last-child {
    position: static;
    font-size: 40px;
    color: #424b53;
    opacity: 1 !important;
    transform: unset !important;
  }
  .founder--discover {
    padding: 64px 0 0;
    background: #f1f2f6;
  }
  .founder--discover .founder__image h3 {
    top: unset;
    left: unset;
    bottom: 0;
    right: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    line-height: 0.9;
  }
  .founder--discover .founder__image h3 span:first-child {
    color: rgba(255, 255, 255, 0.56);
  }
  .founder--discover .founder__image h3 span:last-child {
    top: unset;
    left: unset;
    left: 30px;
    bottom: 0;
    transform: unset;
  }
  .founder--discover .founder__info {
    padding: 40px 40px 80px;
  }
  .founder--discover .founder__info-inner {
    max-width: unset;
  }
  .founder--discover .founder__info h4 {
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 50px;
    font-family: "NeueHaasUnicaPro", sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #707070;
    text-transform: uppercase;
  }
  .founder--discover .founder__info h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 1px;
    background: #707070;
  }
  .founder--discover .founder__info-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .founder--discover .founder__info-text p {
    text-align: center;
  }
  .footer__image {
    display: none;
  }
  .footer__goTop {
    top: 0;
    bottom: unset;
  }
  .footer__container {
    margin-left: unset;
  }
  .footer__content {
    flex-direction: column;
  }
  .footer__nav {
    margin-bottom: 60px;
    gap: 100px;
  }
  .footer__contact {
    max-width: 540px;
  }
  .footer__form {
    width: 100%;
  }
  .intro__video-button {
    bottom: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
  }
  .intro__video-button svg {
    width: 20px;
  }
  .intro__text-desktop {
    display: none;
  }
  .intro__text-mobile {
    position: absolute;
    display: block;
    font-size: 120px;
    color: #fff;
    letter-spacing: 6px;
    bottom: 15px;
    right: 0;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    animation: fade-in 0.75s ease-out;
  }
  .gallery {
    padding-block: 40px;
  }
  .gallery__slide-item span {
    left: 30px;
    bottom: 100px;
    font-size: 60px;
  }
  .gallery .swiper-button-prev, .gallery .swiper-button-next {
    width: 80px;
    height: 80px;
  }
  .gallery .swiper-button-prev::after, .gallery .swiper-button-next::after {
    font-size: 30px;
  }
  .gallery .swiper-button-next {
    left: 80px;
  }
  .jewelry {
    position: relative;
  }
  .jewelry__bg img:nth-child(1) {
    display: none;
  }
  .jewelry__bg img:nth-child(2) {
    display: block;
  }
  .jewelry h2 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    display: block;
    font-size: 80px;
    line-height: 1;
    letter-spacing: 4px;
    font-weight: 400;
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: justify;
  }
  .story {
    flex-direction: column-reverse;
  }
  .story__video {
    width: 100%;
  }
  .story__video-button {
    width: 80px;
    height: 80px;
  }
  .story__video-button svg {
    width: 20px;
  }
  .story__content {
    display: block;
    padding: 40px;
    width: 100%;
  }
  .story__content-inner {
    max-width: unset;
  }
  .story__content p {
    max-width: 540px;
  }
  .story__content .link {
    margin-left: auto;
  }
  .events {
    padding-block: 30px 5px;
  }
  .events__inner h3 {
    font-size: 30px;
  }
  .events__video-button {
    bottom: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
  }
  .events__video-button svg {
    width: 20px;
  }
  .events__block {
    gap: 34px;
  }
  .event {
    width: calc(50% - 17px);
    flex-direction: column;
    gap: 10px;
  }
  .event-col:first-child span {
    color: #4e4e4e;
  }
  .news {
    padding-block: 80px;
  }
  .news__inner h3 {
    font-size: 30px;
  }
  .news__item-content h4 {
    font-size: 28px;
  }
  .news__item-content p {
    font-size: 16px;
  }
  .grid__inner {
    gap: 60px;
  }
  .grid__inner .card {
    width: calc(50% - 30px);
  }
  .article {
    padding-top: 50px;
  }
  .article__top {
    margin-bottom: 50px;
    gap: 20px;
  }
  .article__top h3 {
    font-size: 30px;
  }
  .article__top p {
    font-size: 16px;
  }
  .article__block p {
    font-size: 16px;
  }
  .stories {
    padding-block: 120px;
  }
  .stories__inner h3 {
    font-size: 30px;
  }
  .productDesktop {
    padding-top: 20px;
  }
  .productDesktop__inner {
    gap: 40px;
  }
  .productDesktop__breadcrumb {
    margin-bottom: 20px;
  }
  .productDesktop__title {
    font-size: 30px;
  }
  .productDesktop__price {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .productDesktop__info {
    padding-block: 20px;
    gap: 20px;
  }
  .productDesktop__info::before {
    top: 20px;
    height: calc(100% - 40px);
  }
  .productDesktop__desc {
    margin-bottom: 20px;
  }
  .productDesktop__buttons {
    gap: 60px;
  }
  .productDesktop__locate-retailer {
    width: 260px;
    font-size: 16px;
  }
  .bands {
    padding-block: 100px;
  }
  .band {
    width: 220px;
    height: 220px;
  }
  .band--link {
    padding: 20px;
    font-size: 20px;
  }
  .suggestions {
    padding-top: 100px;
  }
  .suggestions h3 {
    margin-bottom: 100px;
    font-size: 30px;
  }
  .contact {
    padding-block: 150px 100px;
  }
  .contact__top p {
    font-size: 16px;
  }
  .contact__form button {
    width: 320px;
  }
  .contact--retailer {
    padding-block: 60px 100px;
  }
  .faqs {
    padding-top: 150px;
  }
  .faq__top h4 {
    font-size: 22px;
  }
  .faq__content p {
    font-size: 16px;
  }
  .workshop__top h1 {
    top: -40px;
    left: 20px;
    font-size: 80px;
  }
  .workshop__top-content {
    padding: 40px;
  }
  .workshop__top-content p {
    font-size: 20px;
  }
  .findRetailer {
    padding-block: 120px 0;
  }
  .findRetailer__top {
    margin-bottom: 50px;
  }
  .findRetailer__top h3 {
    margin-bottom: 24px;
    font-size: 30px;
  }
  .findRetailer__top p {
    font-size: 16px;
  }
  .findRetailer__bottom {
    flex-direction: column;
  }
  .findRetailer__content {
    margin-inline: auto;
    width: unset;
    max-width: 700px;
  }
  .findRetailer__map {
    margin-inline: -40px;
    width: calc(100% + 80px);
    aspect-ratio: 1/1.23;
  }
  .findRetailer__offices {
    height: auto;
    max-height: 520px;
    overflow-y: scroll;
  }
  .findRetailer__office span,
  .findRetailer__office a {
    font-size: 18px;
  }
  .wearableArt__inner {
    gap: 40px;
  }
  .wearableArt p {
    font-size: 14px;
  }
  .wearableArt__large {
    width: calc(60% - 20px);
  }
  .wearableArt__large-title {
    font-size: 65px;
  }
  .wearableArt__large-content {
    width: calc(100% - 80px);
  }
  .wearableArt__large-content p {
    top: 0;
  }
  .wearableArt__small {
    width: calc(40% - 20px);
  }
  .wearableArt__small img {
    margin-bottom: 30px;
  }
  .wearableArt__small p {
    margin-bottom: 20px;
  }
  .wearableArt__small a {
    font-size: 14px;
  }
  .wearableArt__small a svg:first-child {
    display: none;
  }
  .wearableArt__small a svg:last-child {
    display: block;
  }
  .uniqueStory__content {
    padding-bottom: 30vh;
  }
  .uniqueStory__video {
    height: 60vh;
  }
  .uniqueStory__video-button {
    left: 40px;
    bottom: 30px;
    width: 60px;
    height: 60px;
  }
  .uniqueStory__video-button svg {
    width: 20px;
  }
  .swiper--fineJewelry .swiper-button-prev, .swiper--fineJewelry .swiper-button-next {
    width: 80px;
    height: 80px;
  }
  .swiper--fineJewelry .swiper-button-prev::after, .swiper--fineJewelry .swiper-button-next::after {
    font-size: 30px;
  }
  .swiper--fineJewelry .swiper-button-next {
    left: 80px;
  }
  .awardWinningDesigns {
    padding-block: 80px;
  }
  .awardWinningDesigns__inner {
    gap: 40px;
  }
  .awardWinningDesigns h3 {
    font-size: 30px;
  }
  .awardWinningDesigns p {
    font-size: 16px;
  }
  .awardWinningDesigns__video-button {
    left: 40px;
    bottom: 30px;
    width: 60px;
    height: 60px;
  }
  .awardWinningDesigns__video-button svg {
    width: 20px;
  }
}

@media (max-width: 840px) {

  .collection {
      flex: unset;
      flex-shrink: 0;
      width: 210px;
    }

.discovervideo {
  width: 100vw !important;
  height: 100vw !important;
}
  .intro__video iframe {
    width: 130vh !important;
    height: 100vh!important;
    top: 35vh!important;
    transform: translate(-25%, -50%);
  }
    .intro {
      height: 70vh;
    }

  .intro__video {
    height: 70vh;
  }

  @keyframes fade-up {
    from {
      opacity: 0;
      transform: rotate(180deg) translateX(-100%);
    }
    to {
      opacity: 1;
      transform: rotate(180deg) translateX(0);
    }
  }
  .hero__text-desktop {
    display: none;
  }
  .hero__text-mobile {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 110px;
    line-height: 0.9;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.7);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    animation: fade-up 1s ease;
  }
  .hero__text-mobile.macDevice {
    right: -18px;
  }
  .hero__text-mobile._sm {
    font-size: 52px;
  }
  .hero__error h1 {
    font-size: 40px;
  }
  .card__title {
    font-size: 22px;
  }
  .events__video {
    margin-inline: -40px;
    width: calc(100% + 80px);
  }
  .news__list {
    align-items: center;
  }
  .news__item {
    max-width: 540px;
    flex-direction: column;
    gap: 40px;
  }
  .news__item-image {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .news__item-content {
    width: 100%;
  }
  .news__item-content h4 {
    margin-bottom: 20px;
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  }
  .news__item-content p {
    margin-bottom: 0;
  }
  .news__item-content-date {
    display: none;
  }
  .news__seeMore {
    margin-top: 50px;
    margin-inline: auto;
    width: fit-content;
    display: block;
  }
  .grid {
    display: none;
    padding-block: 60px 120px;
  }
  .grid__inner {
    gap: 40px;
  }
  .grid__inner .card {
    width: calc(50% - 20px);
  }
  .article__top h3 {
    font-size: 26px;
  }
  .article__top p {
    font-size: 14px;
  }
  .article__content {
    gap: 30px;
  }
  /*.article__block {
    gap: 30px;
  }*/
  /**.article__block:first-child .article__image {
    aspect-ratio: 1/0.75;
  }*/
  .article__block p {
    font-size: 14px;
  }
  .article__row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .article__row .article__image {
    width: 290px;
  }
  .stories {
    padding-block: 90px;
  }
  .stories__inner h3 {
    margin-bottom: 50px;
    font-size: 24px;
  }
  .stories .swiper {
    margin-inline: -40px;
    padding-inline: 40px;
  }
  .productDesktop {
    display: none;
  }
  .productMobile {
    display: block;
    padding-block: 15px;
  }
  .productMobile__inner-container.white .productMobile__images-white {
    display: flex;
  }
  .productMobile__inner-container.gold .productMobile__images-gold {
    display: flex;
  }
  .productMobile__inner-container.rose .productMobile__images-rose {
    display: flex;
  }
  .productMobile .swiper-pagination-bullet {
    background: #919191;
  }
  .productMobile .swiper-pagination-bullet-active {
    background: rgb(109, 109, 109);
    box-shadow: inset 0 4 4 rgba(0, 0, 0, 0.25);
  }
  .productMobile__title {
    margin-bottom: 30px;
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    font-size: 18px;
  }
  .productMobile__images {
    margin-bottom: 50px;
    display: none;
  }
  .productMobile__content-top {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .productMobile__model {
    font-size: 30px;
  }
  .productMobile__buttons {
    display: flex;
    gap: 10px;
  }
  .productMobile__buttons button {
    padding: 10px;
  }
  .productMobile__price {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    font-size: 22px;
  }
  .productMobile__price small {
    font-size: 9px;
  }
  .productMobile__colors {
    margin-bottom: 26px;
  }
  .productMobile__colors-title {
    margin-bottom: 12px;
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    font-size: 12px;
  }
  .productMobile__colors-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .productMobile__colors-row label input {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    width: 0;
    height: 0;
    font-size: 0;
  }
  .productMobile__colors-row label input:checked ~ span {
    transform: scale(1.5);
    border-color: #c3c3c3;
  }
  .productMobile__colors-row span {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.2s;
  }
  .productMobile__info-item {
    padding-block: 15px;
    border-block: 0.5px solid rgba(121, 129, 137, 0.55);
  }
  .productMobile__info-item:last-child {
    border-bottom: 0;
  }
  .productMobile__info-item.active .productMobile__info-item-icon::before {
    display: none;
  }
  .productMobile__info-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .productMobile__info-item-title {
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
  }
  .productMobile__info-item-icon {
    position: relative;
    width: 16px;
    height: 16px;
  }
  .productMobile__info-item-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #707070;
  }
  .productMobile__info-item-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #707070;
  }
  .productMobile__info-item-content {
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease-in-out;
  }
  .productMobile__info-item-content-inner {
    padding-top: 15px;
  }
  .productMobile__info-item-content p {
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    font-size: 14px;
  }
  .productMobile__details {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .productMobile__details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #707070;
  }
  .productMobile__details-item {
    display: flex;
    /*gap: 70px;*/
  }
  .productMobile__details-item span {
    width: 50% !important;
    font-family: "Neue Haas Unica Pro Light", sans-serif; 
    font-weight: 300;
    font-size: 12px;
  }
  .bands {
    padding-block: 80px 60px;
  }
  .bands__row {
    margin-bottom: 30px;
  }
  .bands__link {
    padding-block: 10px;
    width: fit-content;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
    font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
    font-size: 18px;
  }
  .band {
    width: 180px;
    height: 180px;
  }
  .band--link {
    display: none;
  }
  .suggestion__addToFavorites {
    opacity: 1;
  }
  .suggestion__title {
    opacity: 1;
    text-align: left;
  }
  .customize {
    padding-block: 80px;
  }
  .customize__inner {
    padding: 120px 60px;
  }
  .customize__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  .customize__bg img:first-child {
    display: none;
  }
  .customize__bg img:last-child {
    display: block;
  }
  .customize__content {
    width: 100%;
    margin: unset;
  }
  .customize__content-inner {
    text-align: center;
  }
  .customize__content h3 {
    font-size: 30px;
    color: #fff;
  }
  .customize__content p {
    font-size: 16px;
    color: #fff;
  }
  .product {
    position: relative;
  }
  .product__content {
    position: static;
    opacity: 1;
  }
  .product__addToFavorites {
    top: 0;
    right: 0;
  }
  .product span {
    margin-right: 0;
    text-align: center;
  }
  .product span:nth-child(2) {
    display: none;
  }
  .productsSlider.marginBlock {
    margin-block: 80px;
  }
  .productsSlider__button {
    margin: 60px auto 0;
    width: 180px;
    height: 36px;
  }
  .productsSlider__inner h3 {
    margin-bottom: 50px;
    font-size: 28px;
  }
  .productsSlider .swiper-button-prev {
    width: 39px;
  }
  .productsSlider .swiper-button-prev::after {
    width: 39px;
    background: url("../assets/svgs/arrow-left-sm.svg");
  }
  .productsSlider .swiper-button-next {
    width: 39px;
  }
  .productsSlider .swiper-button-next::after {
    width: 39px;
    background: url("../assets/svgs/arrow-right-sm.svg");
  }
  .productSlide:hover {
    transform: scale(1);
  }
  .productSlide__image {
    padding-inline: 30px;
  }
  .productSlide__model {
    font-size: 16px;
    opacity: 1;
    text-align: left;
  }
  .slider .swiper-button-prev, .slider .swiper-button-next {
    bottom: 22%;
  }
  .slider--discover {
    padding-block: 60px 100px;
  }
  .slider--discover .slider__top h1 {
    text-align: left;
  }
  .slider--discover .slider__top p {
    font-size: 14px;
  }
  .slide {
    flex-direction: column;
  }
  .slide__block:first-child {
    margin-bottom: 30px;
    width: 100%;
  }
  .slide__block:last-child {
    width: 100%;
    margin-bottom: 0;
  }
  .slide__block h3 {
    margin-right: 150px;
  }
  .slide__content {
    max-width: unset;
  }
  .slide__image:first-child {
    padding-top: 8%;
    padding-right: 32%;
  }
  .slide__link {
    display: none;
  }
  .workshop {
    position: static;
  }
  .workshop__top {
    margin-bottom: 0;
    flex-direction: column-reverse;
  }
  .workshop__top h1 {
    top: unset;
    bottom: 10px;
    left: 10px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
  }
  .workshop__top-content {
    width: 100%;
    padding: 50px 40px;
    justify-content: center;
  }
  .workshop__top-content p {
    font-family: "Saol Text", sans-serif;
    max-width: unset;
    text-align: center;
  }
  .workshop__top-image {
    position: relative;
    width: 100%;
  }
  .workshop__bottom {
    flex-direction: column;
    gap: 40px;
  }
  .workshop__item:first-child {
    width: 100%;
    flex-direction: column-reverse;
  }
  .workshop__item:first-child .workshop__item-image img {
    width: 73%;
  }
  .workshop__item:first-child .workshop__item-content {
    margin-left: 0;
  }
  .workshop__item:last-child {
    width: 100%;
  }
  .workshop__item:last-child .workshop__item-content {
    margin-right: 0;
    order: 2;
  }
  .workshop__item:last-child .workshop__item-image:first-child {
    order: 1;
    justify-content: flex-end;
  }
  .workshop__item:last-child .workshop__item-image:first-child img {
    margin-left: 0;
    width: 73%;
  }
  .workshop__item:last-child .workshop__item-image:nth-child(2) {
    order: 3;
    min-height: auto;
  }
  .workshop__item-content {
    max-width: unset;
    padding-inline: 40px;
  }
  .workshop__item-content h3 {
    display: none;
  }
  .workshop__item-image {
    display: flex;
    align-items: flex-end;
    min-height: 600px;
  }
  .workshop__item-image h3 {
    display: block;
    font-size: 50px;
    color: #82878b;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
  }
  .workshop--retailer {
    position: relative;
    padding-block: 40px;
    padding-bottom: calc(70vh + 40px);
  }
  .workshop--retailer .workshop__item:first-child {
    max-width: unset;
  }
  .workshop--retailer .workshop__item:first-child .workshop__item-content {
    margin-bottom: 0;
    gap: 30px;
  }
  .workshop--retailer .workshop__item:first-child .workshop__item-content p {
    font-size: 18px;
    text-align: center;
  }
  .workshop--retailer .workshop__item-content {
    margin-inline: auto !important;
  }
  .workshop--retailer .workshop__item-card {
    width: 100%;
    height: 70vh;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .workshop--retailer .workshop__item-card img {
    object-fit: cover;
    object-position: bottom;
  }
  .workshop--retailer .workshop__item-image {
    width: 73%;
    align-items: stretch;
  }
  .wearableArt {
    padding-block: 60px;
  }
  .wearableArt__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .wearableArt p {
    overflow: hidden;
    height: 42px;
  }
  .wearableArt__large {
    position: relative;
    width: 100%;
  }
  .wearableArt__large-content {
    position: static;
    width: calc(100% - 50px);
    margin-right: -40px;
  }
  .wearableArt__large-content p {
    width: calc(100% - 80px);
    left: 40px;
    right: 40px;
  }
  .wearableArt__small {
    width: 100%;
  }
  .wearableArt__small img {
    margin-left: -40px;
    width: 80%;
  }
  .wearableArt__small p {
    margin-left: auto;
    width: 80%;
  }
  .uniqueStory__content {
    padding-bottom: 30vh;
  }
  .uniqueStory__content h1 {
    display: block;
    font-size: 30px;
  }
  .uniqueStory__video {
    height: 35vh;
  }
  .awardWinningDesigns {
    padding-block: 60px;
  }
  .awardWinningDesigns__inner {
    gap: 25px;
  }
  .awardWinningDesigns h3 {
    font-size: 24px;
  }
  .awardWinningDesigns p {
    font-size: 14px;
  }
  .awardWinningDesigns__button {
    width: 180px;
    height: 36px;
  }
}
.swiptbn.islarge {
  display: block;
}
.swiptbn.mobile { display: none;}

@media (max-width: 540px) {
    
    .swiptbn.islarge { display: none;}

    .swiptbn.mobile {
      display: block;
    }

    .swiptbn.mobile { width: 39px; }

    .swipnp {
          width: 100% !important;
          margin-top: 30px;
    }
    
    .swiper-button-prev {
          left: -10px;
    }

    .story.swiper .swiper-slide {
      flex-direction: column-reverse;
    }

    .swipnp .swiper-button-next {
          right: -25px;
    }

  .news__item-image {
      aspect-ratio: 0;
  }
  .productMobile__details-item {
      gap: 0px;
    }
  
    .nav__Wishlist {
    width: 100% !important;
    padding: 55px 15px 15px !important;
  }
.wishlist-counter {
    font-size: 8px !important;
    width: 10px !important;
    height: 10px !important;
    right: 0px !important;
}
  .auto-container {
    padding-inline: 20px;
  }
  .link {
    font-size: 14px;
    gap: 10px;
  }
  .link svg {
    width: 40px;
  }
  .locateRetailer-btn {
    bottom: 20px;
    right: 20px;
  }
  .custom-select .select-selected {
    font-size: 14px;
  }
  .custom-select .select-selected::after {
    width: 10px;
    height: 6px;
    background-size: contain;
  }
  .custom-select .select-items div {
    font-size: 12px;
  }
  .header__buttons {
    gap: 10px;
  }
  .header__buttons button {
    padding: 5px;
  }
  .header__buttons button svg {
    width: 14px;
  }
  .nav {
    padding: 100px 40px;
  }
  .nav__inner {
    width: 100%;
  }
  .nav__search input {
    font-size: 12px;
  }
  .hero {
    height: 684px;
  }
  .hero img:first-child {
    display: none;
  }
  .hero img:last-child {
    display: block;
  }
  .hero__video-button {
    bottom: unset;
    right: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
  }
  .hero__video-button svg {
    width: 10px;
  }
  .hero__text-mobile {
    font-size: 80px;
    letter-spacing: 4px;
  }
  .hero__text-mobile.macDevice {
    right: -13px;
  }
  .hero__text-mobile._sm {
    font-size: 62px;
  }
  .hero__error {
    gap: 50px;
  }
  .hero__error h1 {
    font-size: 35px;
  }
  .hero__error p {
    font-size: 16px;
  }
  .hero__error a {
    font-size: 16px;
  }
  .hero--error {
    height: unset;
  }
  .retailer__inner {
    min-height: 40vh;
    padding-block: unset;
  }
  .retailer__inner h4 {
    padding: 40px 20px 30px;
    font-size: 24px;
    gap: 10px;
  }
  .retailer__inner h4 a {
    gap: 15px;
  }
  .retailer__inner h4 svg {
    width: 40px;
  }
  .card__image {
    margin-bottom: 15px;
  }
  .card__title {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .breadcrumb a {
    font-size: 9px;
  }
  .customize {
    padding-block: 30px;
  }
  .customize__inner {
    padding: 80px 40px;
  }
  .customize__content h3 {
    font-size: 15px;
  }
  .customize__content p {
    font-size: 12px;
  }
  .products__list {
    gap: 30px;
  }
  .products__loadMore {
    width: 40px;
    height: 40px;
  }
  .products__top {
    margin-bottom: 30px;
  }
  .products__filter {
    margin-left: -20px;
    width: calc(100% + 20px);
    padding: 10px;
  }
  .products__filter.active .products__filter-content {
    padding: 10px;
  }
  .products__filter-title {
    font-size: 14px;
  }
  .products__filter-content {
    gap: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .products__sort {
    margin-right: -20px;
    width: calc(100% + 20px);
    padding: 10px;
  }
  .products__sort-title {
    font-size: 14px;
  }
  .products__sort-item span {
    font-size: 12px;
  }
  .product__image {
    margin-bottom: 10px;
  }
  .product__content {
    font-size: 11px;
  }
  .product__content a {
    padding: 5px 24px;
    margin-top: 10px;
  }
  .product--link {
    margin-inline: -20px;
    width: calc(100% + 40px);
  }
  .product--link .link-text {
    bottom: 15px;
    left: 20px;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-size: 16px;
  }
  .product--link .link-text svg {
    width: 39px;
  }
  .product--banner {
    margin-inline: -20px;
    width: calc(100% + 40px);
  }
  .promo {
    padding-block: 50px 40px;
    gap: 40px;
  }
  .promo p {
    font-size: 12px;
  }
  .promo__top {
    padding-inline: 30px;
  }
  .promo__top h3 {
    margin-bottom: 16px;
    font-size: 22px;
  }
  .promo__bottom {
    padding-inline: 30px;
  }
  .promo__content {
    padding: 0;
    text-align: left;
    align-items: unset;
  }
  .promo__content h3 {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .promo__video {
    margin-bottom: 24px;
  }
  .promo__video-button {
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
  .promo__video-button svg {
    width: 10px;
  }
  .productsSlider.marginBlock {
    margin-block: 50px;
  }
  .productsSlider__button {
    margin: 40px auto 0;
    width: 144px;
    height: 20px;
    font-size: 9px;
    border: 0.5px solid #707070 !important;
  }
  .productsSlider__button svg {
    display: none;
  }
  .productsSlider__inner h3 {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .productSlide:hover {
    transform: scale(1);
  }
  .productSlide__model {
    font-size: 10px;
  }
  .slider {
    margin-block: 30px;
  }
  .slider .swiper-button-prev, .slider .swiper-button-next {
    bottom: unset;
    width: 44px;
    height: 44px;
  }
  .slider .swiper-button-prev::after, .slider .swiper-button-next::after {
    font-size: 14px;
  }
  .slider .swiper-button-prev {
    right: 44px;
  }
  .slider--discover {
    padding-block: 40px 100px;
    margin-top: 0;
  }
  .slider--discover .slider__top {
    margin-bottom: 20px;
  }
  .slider--discover .slider__top h1 {
    margin-bottom: 40px;
    line-height: 0.8;
  }
  .slider--discover .slider__top p {
    font-size: 10px;
  }
  .slider--discover .swiper {
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .slider--discover .slide__block h3 {
    font-size: 16px;
  }
  .slider--discover .slide__image:first-child {
    padding: 0;
  }
  .slide__block h3 {
    margin-right: 100px;
    font-size: 14px;
  }
  .slide__block p {
    font-size: 12px;
  }
  .slide__content {
    max-width: unset;
  }
  .slide__image:first-child {
    padding-top: 8%;
    padding-right: 32%;
  }
  .collections h3 {
    margin-bottom: 40px;
    font-size: 14px;
  }
  .collections__content {
    padding-right: 20px;
    width: calc(100% + 20px);
    margin-right: -20px;
  }
  .collections.no-container .collections__content {
    padding-inline: 20px;
  }
  .founder {
    padding: 20px 40px;
  }
  .founder__info {
    padding-block: 20px;
  }
  .founder__info h3 {
    margin-bottom: 5px;
  }
  .founder__info h3 span {
    font-size: 20px !important;
  }
  .founder__info p {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .founder--discover {
    padding: 64px 0 0;
  }
  .founder--discover .founder__image h3 span:last-child {
    font-size: 30px;
  }
  .founder--discover .founder__info {
    padding: 25px 20px 40px;
  }
  .founder--discover .founder__info h4 {
    margin-bottom: 35px;
    padding-bottom: 35px;
    font-size: 22px;
  }
  .founder--discover .founder__info h4::after {
    width: 130px;
  }
  .founder--discover .founder__info-text p {
    font-size: 14px;
  }
  .footer {
    padding-block: 26px;
  }
  .footer h6 {
    font-size: 14px;
  }
  .footer__goTop {
    width: 50px;
    height: 50px;
  }
  .footer__goTop svg {
    width: 12px;
  }
  .footer__top {
    margin-bottom: 40px;
    gap: 15px;
  }
  .footer__top span {
    width: 42px;
  }
  .footer__nav {
    justify-content: space-between;
    gap: unset;
  }
  .footer__nav a {
    font-size: 12px;
  }
  .footer__form button {
    width: 40px;
  }
  .footer__social {
    gap: 44px;
    justify-content: center;
  }
  .footer__social a svg {
    max-width: 14px;
  }
  .footer__copyright {
    text-align: center;
  }
  .intro__text-mobile {
    font-size: 80px;
    letter-spacing: 4px;
  }
  .intro__video-button {
    width: 42px;
    height: 42px;
  }
  .intro__video-button svg {
    width: 14px;
  }
  .gallery__slide {
    flex-direction: column;
    gap: 16px;
  }
  .gallery__slide-col {
    width: 100% !important;
  }
  .gallery__slide-col:nth-child(2) {
    flex-direction: row;
    gap: 16px;
  }
  .gallery__slide-col:nth-child(2) .gallery__slide-item {
    flex: 1;
    height: unset;
  }
  .gallery__slide-item span {
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    bottom: 0;
    left: 0;
    font-size: 60px;
  }
  .gallery .swiper {
    padding-bottom: 30px;
  }
  .gallery .swiper-button-prev {
    width: unset;
    height: unset;
    background: unset !important;
  }
  .gallery .swiper-button-prev::after {
    font-size: unset;
    content: "";
    width: 39px;
    height: 8px;
    background: url("../assets/svgs/arrow-left-sm.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .gallery .swiper-button-next {
    width: unset;
    height: unset;
    left: unset;
    right: 0;
    background: unset !important;
  }
  .gallery .swiper-button-next::after {
    font-size: unset;
    content: "";
    width: 39px;
    height: 8px;
    background: url("../assets/svgs/arrow-right-sm.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .jewelry h2 {
    font-size: 35px;
    letter-spacing: 3px;
  }
  .story__content h3 {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .story__content p {
    margin-bottom: 30px;
    max-width: 280px;
    font-size: 14px;
  }
  .story__video-button {
    width: 42px;
    height: 42px;
  }
  .story__video-button svg {
    width: 14px;
  }
  .events__inner h3, .gallery .gallery__content h3 {
    margin-bottom: 22px;
    font-size: 22px;
  }
  .events__video {
    margin-inline: -20px;
    width: calc(100% + 40px);
  }
  .events__video-button {
    width: 30px;
    height: 30px;
  }
  .events__video-button svg {
    width: 10px;
  }
  .events__block {
    padding: 30px 30px 40px;
    justify-content: space-between;
  }
  .event:nth-child(n+3) {
    display: none;
  }
  .event__col:first-child span {
    font-size: 14px;
  }
  .event__col:last-child {
    display: flex;
    flex-direction: column;
  }
  .event__col:last-child span {
    font-size: 12px;
  }
  .swiper--events .swiper-button-prev {
    width: 39px;
    left: 0;
  }
  .swiper--events .swiper-button-prev::after {
    width: 39px;
    background: url("../assets/svgs/arrow-left-sm.svg");
  }
  .swiper--events .swiper-button-next {
    width: 39px;
    right: 0;
  }
  .swiper--events .swiper-button-next::after {
    width: 39px;
    background: url("../assets/svgs/arrow-right-sm.svg");
  }
  .news {
    padding: 46px 0 40px;
  }
  .news__inner h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .news__item {
    max-width: 320px;
    gap: 22px;
  }
  .news__item-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .news__item-content p {
    font-size: 12px;
  }
  .news__list {
    gap: 22px;
  }
  .news__seeMore {
    margin-top: 56px;
  }
  .grid {
    padding-block: 50px 100px;
  }
  .grid__inner {
    justify-content: center;
  }
  .grid__inner .card {
    width: 100%;
    max-width: 320px;
  }
  .article__top {
    margin-bottom: 30px;
    gap: 12px;
  }
  .article__top h3 {
    font-size: 22px;
  }
  .article__top p {
    font-size: 12px;
  }
  .article__top span {
    font-size: 10px;
  }
  .article__block p {
    font-size: 12px;
  }
  .stories {
    padding-block: 58px 44px;
  }
  .stories__inner h3 {
    margin-bottom: 34px;
    font-size: 18px;
  }
  .stories .swiper {
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .stories .swiper-slide {
    width: auto !important;
  }
  .stories .card {
    width: 211px;
  }
  .productMobile__title {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .productMobile__images {
    margin-bottom: 30px;
  }
  .productMobile__model {
    font-size: 26px;
  }
  .productMobile__content p {
    font-size: 10px;
  }
  .bands {
    padding-block: 40px 10px;
  }
  .bands__row {
    margin-bottom: 10px;
    justify-content: center;
  }
  .bands__link {
    font-size: 12px;
  }
  .band {
    width: 120px;
    height: 120px;
  }
  .suggestions {
    padding-block: 40px 0;
  }
  .suggestions h3 {
    margin-bottom: 50px;
    font-size: 12px;
  }
  .suggestions .swiper {
    padding-bottom: 50px;
  }
  .suggestions .swiper-button-prev, .suggestions .swiper-button-next {
    width: 39px;
  }
  .suggestions .swiper-button-prev::after {
    background: url("../assets/svgs/arrow-left-sm.svg");
  }
  .suggestions .swiper-button-next::after {
    background: url("../assets/svgs/arrow-right-sm.svg");
  }
  .suggestion__addToFavorites svg {
    width: 18px;
    height: 18px;
  }
  .suggestion__title {
    margin-bottom: 25px;
    font-size: 10px;
  }
  .contact {
    padding: 100px 20px 50px;
  }
  .contact__top {
    margin-bottom: 40px;
  }
  .contact__top h3 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .contact__top p {
    font-size: 12px;
  }
  .contact__form-inputs {
    margin-bottom: 40px;
  }
  .contact__form-inputs input,
  .contact__form-inputs textarea {
    padding: 10px 25px;
  }
  /*.contact__form-inputs textarea {
    height: 114px;
  }*/

  .hint__form h3 { font-size: 30px;}

 .productDesktop__preview-close {
      top: 15px;
      right: 15px;
      width: 25px;
      height: 25px;
  }

  .modal-content {
    padding: 25px 25px !important;
    width: 85% !important;
  }

    .modal {
      z-index: 99 !important;
      padding-top: 80px !important;
    }

  .hint__form h3 {
      margin-bottom: 15px;
      font-size: 30px;
      margin-top: 20px;
  }
#fromretail .contact__form-inputs input:nth-child(3),
#fromretail .contact__form-inputs input:nth-child(4) {
  width: 100% !important;
}
.contact__form-inputs input:nth-child(1), .contact__form-inputs input:nth-child(2) {
    width: 100%;
  }
  .contact__form button {
    width: 230px;
    font-size: 16px;
  }
  .contact--retailer {
    padding-block: 60px 80px;
  }
  .faqs {
    padding: 100px 30px 50px;
  }
  .faqs__top {
    margin-bottom: 40px;
  }
  .faqs__top h3 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .faqs__top p {
    font-size: 12px;
  }
  .faq {
    padding-block: 27px;
  }
  .faq__top h4 {
    font-size: 16px;
  }
  .faq__content-inner {
    padding-top: 30px;
  }
  .faq__content p {
    font-size: 12px;
  }
  .workshop__top h1 {
    font-size: 36px;
  }
  .workshop__top-content p {
    font-size: 14px;
  }
  .workshop__item-content {
    padding-inline: 20px;
  }
  .workshop__item-content p {
    font-size: 14px;
  }
  .workshop__item-image {
    min-height: auto;
  }
  .workshop__item-image h3 {
    font-size: 36px;
  }
  .workshop--retailer {
    padding-bottom: 460px;
  }
  .workshop--retailer .workshop__item:first-child .workshop__item-content p {
    font-size: 14px;
  }
  .workshop--retailer .workshop__item-content {
    padding-inline: 40px;
  }
  .workshop--retailer .workshop__item-card {
    padding-inline: 40px;
    height: 420px;
  }
  .workshop--retailer .workshop__item-card-content h3,
  .workshop--retailer .workshop__item-card-content span {
    font-size: 22px;
  }
  .workshop--retailer .workshop__item-card-content h3 {
    margin-bottom: 20px;
  }
  .findRetailer {
    padding-top: 100px;
  }
  .findRetailer__top h3 {
    margin-inline: auto;
    max-width: 204px;
    font-size: 22px;
  }
  .findRetailer__top p {
    font-size: 12px;
  }
  .findRetailer__form {
    margin-bottom: 30px;
    gap: 30px;
  }
  .findRetailer__form-container {
    gap: 30px;
  }
  .findRetailer__form-container .custom-select {
    width: calc(50% - 15px);
  }
  .findRetailer__form-container .custom-select:first-child {
    width: 100%;
  }
  .findRetailer__form-container input {
    width: calc(50% - 15px);
    font-size: 14px;
  }
  .findRetailer__form-container span {
    display: none;
  }
  .findRetailer__form-container button {
    margin: 20px auto 0;
    flex-grow: unset;
    width: 162px;
  }
  .findRetailer__offices {
    height: auto;
  }
  .findRetailer__office span,
  .findRetailer__office a {
    font-size: 14px;
  }
  .findRetailer__map {
    margin-inline: -20px;
    width: calc(100% + 40px);
  }
  .wearableArt {
    padding-block: 35px 20px;
  }
  .wearableArt__inner {
    gap: 30px;
  }
  .wearableArt p {
    font-size: 12px;
    height: 36px;
  }
  .wearableArt__large {
    display: flex;
    justify-content: flex-end;
  }
  .wearableArt__large-title {
    position: static;
    font-size: 36px;
    height: unset;
  }
  .wearableArt__large-content {
    margin-right: -20px;
    margin-left: unset;
    width: unset;
  }
  .wearableArt__large-content img {
    aspect-ratio: unset;
    width: 300px;
    height: 410px;
  }
  .wearableArt__small img {
    margin-bottom: 20px;
    margin-left: -20px;
  }
  .wearableArt__small p {
    margin-bottom: 30px;
  }
  .wearableArt__small a {
    font-size: 12px;
  }
  .uniqueStory__content h1 {
    font-size: 20px;
  }
  .uniqueStory__video-button {
    left: 17px;
    bottom: 14px;
    width: 30px;
    height: 30px;
  }
  .uniqueStory__video-button svg {
    width: 10px;
  }
  .swiper--fineJewelry .swiper-slide {
    width: 232px;
  }
  .swiper--fineJewelry .swiper-button-prev::after, .swiper--fineJewelry .swiper-button-next::after {
    font-size: 14px;
  }
  .swiper--fineJewelry .swiper-button-prev {
    width: 44px;
    height: 44px;
  }
  .swiper--fineJewelry .swiper-button-next {
    width: 44px;
    height: 44px;
    left: 44px;
  }
  .awardWinningDesigns {
    padding-block: 40px;
  }
  .awardWinningDesigns h3 {
    font-size: 16px;
  }
  .awardWinningDesigns p {
    font-size: 12px;
    text-align: center;
  }
  .awardWinningDesigns__video {
    margin-bottom: 10px;
  }
  .awardWinningDesigns__video-button {
    left: 20px;
    bottom: 14px;
    width: 30px;
    height: 30px;
  }
  .awardWinningDesigns__video-button svg {
    width: 10px;
  }
  .awardWinningDesigns__button {
    width: 144px;
    height: 20px;
    font-size: 9px;
    border: 0.5px solid #707070 !important;
  }
  .awardWinningDesigns__button svg {
    display: none;
  }
}

.imgcover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button#reset-prod {
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
  color: #565656;
  padding: 0px 10px;
  border: 1px solid #707070;
  cursor: pointer;
  line-height: 27px;
}

.products__reset.hide { display: none;}

.nav__item-category .nav__item-category-name {
  text-transform: uppercase;
}

#result-list {
  list-style-type: none;
  padding: 0;
  margin: 5px 0 0 0;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  background-color: #fff;
  max-width: 422px;
  border-top: 0px;
}

#result-list li {
  padding: 8px;
  cursor: pointer;
}

#result-list li:hover {
  background-color: #f0f0f0;
}

.search-div {
  width: 100%;
  ;
}

/* Product page css */
.hint__top {
  margin-bottom: 20px;
  text-align: center;
}

.hint__form h3 {
  margin-bottom: 32px;
  font-size: 36px;
}

/* Modal styling */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999 !important;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 40px 80px;
  width: 70%;
  max-width: 1050px;
  border-radius: 5px;
  position: relative;
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
  font-size: 24px;
}

/* Fade animation */
.fade-in {
  animation: fadeIn 0.3s;
}

.fade-out {
  animation: fadeOut 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.hintmsg {
  display: block;
  width: 100%;
  height: 40px;
}

.hintmsg .msg {
  color: #5a656d;
  display: block;
  text-align: center;
  line-height: 40px;
}

.content_hint.contact__form-inputs {
  margin-bottom: 0px;
}
/* End Product page css */

/* Find nav__search-input */
.productFind {
  display: flex;
  align-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.product__imageFind {
  width: 90px;
  height: 90px;
  padding: 10px;
}
.product__contentFind span { display: block;}

/* Find nav__search-input */

/* send Hint **/
.hintForm button {
  margin-inline: auto;
  display: block;
  width: 414px;
  padding: 10px;
  font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  background: #5a656d;
  outline: 0;
  transition: all 0.2s;
}
/* end send Hint **/

/* product page */
.product__price { display: contents; }
.productDesktop__breadcrumb {
  text-transform: capitalize;
}
/* end product page */

div#content-search {
  background-color: #fff;
  max-height: 76vh;
  overflow: auto;
}

.nav__item-content.active {
  min-height: 430px;
}

div#loadinghint {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

div#loadinghint img {
  margin: 0 auto;
    width: 80px;
}

.productDesktop__metal label span {
  cursor: pointer;
}

.productDesktop__metal label span:hover,  .productDesktop__metal label span.active{
  border: 1px solid #81878c !important;
  border-radius: 10px;
}

.productDesktop__metal label span {
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  max-width: 48px !important;
  display: inline-block;
  text-align: center;
  line-height: 15px;
}

.wishlist-counter {
  position: absolute;
  top: 8px;
  right: 2px;
  background-color: #5A656D;
  color: white;
  
  border-radius: 50%;

  font-size: 12px;
  width: 16px;
  height: 16px;

  font-family: sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;

}

.wishlist-counter.hide{ display: none;}

button#nav__Wishlist-open {
  position: relative;
}

button.wishlist-btn.added svg {
  fill: #707070;
}

.productFind .product__imageFind img {
  min-width: 70px;
}

#wishlist-items .product__contentFind {
  width: 320px;
  display: inline-block;
}

#wishlist-items .productFind a {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      width: 90%;
}

.nav__Wishlist.active {
  opacity: 1;
  transform: translateX(0);
  border-left: 1px solid #d3d3d3;
  background: #fff;
  box-shadow: -5px 0 15px rgb(142 142 142 / 30%);
}

.nav__Wishlist {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 110px 30px 30px;
  width: 480px;
  height: 100%;
  display: block;
  background: #ecf0f4;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
}

.nav__Wishlist-dev {
  padding-bottom: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
  height: 50px;
}

.productDesktop__metal {
  display: flex;
  gap: 10px;
}

.item-metal {
  border: 1px solid #ffffff;
  border-radius: 10px;
  display: inline-block !important;
  text-align: left;
  line-height: 17px;
}

#nav_Wishlist_btn { 
  display: flex;
  gap: 8px;
  -webkit-align-items: center;
  align-items: center;
}

#nav_Wishlist_btn span { 
  display: inline-block;
  height: 16px;
 }
 
 button.product__addToFavorites.added svg {
   fill: #707070;
 }

.productDesktop__metal label.active, .productDesktop__metal label:hover  {  
  border: 1px solid #81878c !important;
}
 .productDesktop__metal label {
   border: 1px solid #d1d1d1;
   padding: 0px 8px;
   width: 48px;
   border-radius: 10px;
   font-family: "Neue Haas Unica Pro Light", sans-serif; font-weight: 300;
  font-size: 11px;
  text-align: center;
  cursor: pointer;
  line-height: 16px;
  height: 16px;
 }

span.emptywishlist {
  text-align: justify;
  padding: 0px 30px;
  display: inline-block;
}

#fromretail .contact__form-inputs input:nth-child(3),
#fromretail .contact__form-inputs input:nth-child(4) {
  width: calc(50% - 12px);
}

.swiper-wrapper {
  height: auto !important;
}

.home_jewelry { position: relative; overflow: hidden;}

.gallery__content h3 {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #5a656d;
  text-align: center;
}
.btn_jewelry h2 { transition: transform 0.5s ease; }


@media (max-width: 840px) {
  .btn_jewelry h2 {
      transition: none;
    }
  .btn_jewelry h2:hover { transform: rotate(180deg); }

    .video-wrapper {
      min-height: 50vw !important;
    }
}



.swipnp .swiper-button-next:after,
.swipnp .swiper-button-prev:after { display: none !important;}


.swipnp .swiper-button-next,
.swipnp .swiper-button-prev { width: 72px;}

.swipnp {
  /*position: absolute;
  width: 200px;
  height: 39px;
  top: 65%;
  left: -2%;
  z-index: 9999;*/
      position: relative;
        width: 200px;
        height: 39px;
        top: 0px;
        left: 0%;
        /* transform: translate(-50%, -50%); */
        z-index: 9999;
}

.product--banner img {
  height: 100%;
  /* width: auto; */
  object-fit: cover;
}

.txtdiscover p { color: #707070 !important;}

.esendhint {
  padding-left: 30px;
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
}

.hintFormWishlist button {
  margin-inline: auto;
  display: block;
  width: 414px;
  padding: 10px;
  font-family: "Neue Haas Unica Pro Light", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  background: #5a656d;
  outline: 0;
  transition: all 0.2s;
}

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