/*
Theme Name: KAZKA
*/

@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  min-width: 320px;
}
body {
  color: #000;
  line-height: 1;
  font-family: Lato;
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button,
input,
textarea {
  font-family: Lato;
  font-size: inherit;
}
button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}
a {
  color: inherit;
}
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}
body {
  line-height: 128%;
  background: #f8f8f8;
}
.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}
.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}
[class*="__container"] {
  max-width: 90.625rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 1.875rem;
}
[class*="-ibg"] {
  position: relative;
}
[class*="-ibg"] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
[class*="-ibg_contain"] img {
  -o-object-fit: contain;
  object-fit: contain;
}
.header {
  width: 100%;
  position: absolute;
  top: 0;
  padding-top: 30px;
  left: 0;
  z-index: 15;
  color: #fff;
}
.header__container {
  position: relative;
  z-index: 2;
}
.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo {
  overflow: hidden;
}
.header__logo img {
  -webkit-animation: slideDownOut 3s ease forwards;
  animation: slideDownOut 3s ease forwards;
}
.collections-page .header__logo {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.header__menu .btn {
  margin-left: auto;
  -webkit-animation: slideDownOut 2s ease forwards;
  animation: slideDownOut 2s ease forwards;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.header__menu-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: Roboto;
  gap: 15px;
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: right;
}
.header__menu-ul li {
  overflow: hidden;
}
.header__menu-ul li a {
  display: block;
  -webkit-animation: slideDownOut3 2s ease forwards;
  animation: slideDownOut3 2s ease forwards;
}
.collections-page .header__menu-ul li a {
  color: #181818;
}
.header__menu-ul a:hover {
  text-decoration: underline;
}
.collections-page .header__btn {
  background: #f29db5;
  outline-offset: #000;
}
.btn {
  font-family: Roboto;
  padding: 10px 25px;
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn:hover {
  background: #f29db5;
}
.bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
@-webkit-keyframes slideDownOut {
  0% {
    -webkit-transform: translateY(140%);
    transform: translateY(140%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDownOut {
  0% {
    -webkit-transform: translateY(140%);
    transform: translateY(140%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slideDownOut2 {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDownOut2 {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideDownOut3 {
  0% {
    -webkit-transform: translateY(150%);
    transform: translateY(150%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDownOut3 {
  0% {
    -webkit-transform: translateY(150%);
    transform: translateY(150%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.hero {
  width: 100%;
  position: relative;
}
.hero .bg2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transition: all 3s ease 0s;
  transition: all 3s ease 0s;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero .bg2.active {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}
.videoend .line0,
.videoend .line1,
.videoend .line2,
.videoend .line3,
.videoend .line4 {
  opacity: 0;
}
.about-us video {
  position: absolute;
  width: 662px;
  z-index: 5;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  top: 192px;
  left: calc(50% - 331px);
  height: 393px;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-us video.videoactive {
  left: 0;
  top: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
}
.about-us .hero__text {
  text-transform: uppercase;
  max-width: 371px;
}
.about-us .hero__container {
  z-index: 10;
}
.about-us .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  z-index: 8;
  position: relative;
}
.about-us .box .hero__logo {
  z-index: 8;
}
.btn-primary {
  padding: 10px 50px;
  background: #f29db5;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-top: 33px;
  text-transform: uppercase;
  color: #000;
  font-family: Roboto;
}
.btn-primary:hover {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.123);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.123);
}
.block1 {
  overflow: hidden;
  -webkit-animation: none;
  animation: none;
  opacity: 1 !important;
}
.block1.in-view {
  opacity: 1;
  -webkit-animation: rise-in3 1s ease-in-out forwards;
  animation: rise-in3 1s ease-in-out forwards;
}
.block1.no-view {
  -webkit-animation: rise-in2 0.5s ease-in-out forwards;
  animation: rise-in2 0.5s ease-in-out forwards;
}
.hero__container {
  position: relative;
}
.hero__body {
  z-index: 2;
  height: 789px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 5px;
}
.hero__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  gap: 10px;
  line-height: 130%;
  overflow: hidden;
  margin-bottom: 25px;
  font-family: Roboto;
}
.mob {
  display: none;
}
.hero__text {
  max-width: 278px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.05em;
  -webkit-animation: slideDownOut 2s ease forwards;
  animation: slideDownOut 2s ease forwards;
  color: #fff;
}
.hero__sub {
  font-weight: 600;
  -webkit-animation: slideDownOut 2s ease forwards;
  animation: slideDownOut 2s ease forwards;
  font-size: 22px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #fff;
}
.hero__logo {
  overflow: hidden;
}
.hero__logo img {
  width: 100%;
  -webkit-animation: slideDownOut 2s ease forwards;
  animation: slideDownOut 2s ease forwards;
}
.about-us .hero__logo {
  margin-right: auto;
}
.hero .bg {
  opacity: 1;
  -webkit-filter: brightness(0.15) contrast(1.4);
  filter: brightness(0.15) contrast(1.4);
  -webkit-animation: bgLighten 3.2s ease-out forwards;
  animation: bgLighten 3.2s ease-out forwards;
  will-change: filter, transform;
}
@-webkit-keyframes bgLighten {
  0% {
    -webkit-filter: brightness(0.01) contrast(1.4);
    filter: brightness(0.01) contrast(1.4);
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    -webkit-filter: brightness(1) contrast(1);
    filter: brightness(1) contrast(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes bgLighten {
  0% {
    -webkit-filter: brightness(0.01) contrast(1.4);
    filter: brightness(0.01) contrast(1.4);
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    -webkit-filter: brightness(1) contrast(1);
    filter: brightness(1) contrast(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes bgLighten2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
}
@keyframes bgLighten2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
}
.lines {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 4;
}
.line0,
.line1 {
  z-index: 4;
  position: absolute;
  width: 1px;
  height: 639px;
  background: rgba(255, 255, 255, 0.262745098);
  top: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-animation: drawLine 2s forwards;
  animation: drawLine 2s forwards;
}
.line0 {
  left: 423px;
}
.line1 {
  right: 423px;
}
.about-us .line1 {
  height: 100%;
}
@-webkit-keyframes drawLine {
  from {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes drawLine {
  from {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
.line2,
.line3 {
  position: absolute;
  z-index: 4;
  height: 1px;
  background: rgba(255, 255, 255, 0.262745098);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-animation: drawLineX 2s forwards;
  animation: drawLineX 2s forwards;
}
.line2 {
  width: 40%;
  left: 0;
  top: 24.25%;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
.line3 {
  width: 40%;
  right: 0;
  top: 49%;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
}
@-webkit-keyframes drawLineX {
  from {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes drawLineX {
  from {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.about {
  margin-top: 5px;
  margin-bottom: 20px;
}
.decor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 32px;
}
.decor1 {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 1px;
  background: #181818;
}
.decor2 {
  height: 38px;
  width: 1px;
  background: #181818;
}
.decor3 {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 1px;
  background: #181818;
}
.about__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}
.title-text {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.05em;
  color: #181818;
}
.about__text {
  font-weight: 400;
  max-width: 715px;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #000;
}
.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #d8d8d8;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 137px 50px;
  padding-right: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.about__left {
  max-width: 600px;
}
.about__left-title {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 50px;
  line-height: 90%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #000;
}
.about__left-txt {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 44px;
  font-family: Roboto;
  letter-spacing: -0.05em;
  color: #000;
  max-width: 305px;
}
.about__left-txt p:not(:last-child) {
  margin-bottom: 18px;
}
.about__left-txt span {
  color: #eb678c;
}
.about__right {
  overflow: hidden;
}
.about__right img {
  max-width: 100%;
}
@-webkit-keyframes rise-in {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rise-in {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes rise-in2 {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    opacity: 0;
  }
}
@keyframes rise-in2 {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes rise-in3 {
  0% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rise-in3 {
  0% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
[data-animate] {
  opacity: 0;
  will-change: transform, opacity;
}
.in-view {
  -webkit-animation: rise-in 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation: rise-in 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.in-view.card2 {
  -webkit-animation: rise-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
  animation: rise-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.shipping {
  margin-bottom: 20px;
}
.shipping__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 100%;
}
.shipping__card {
  height: 700px;
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 10px);
  flex: 1 1 calc(50% - 10px);
}
.shipping__card:hover .bg2 {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}
.bg1 {
  -webkit-transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.bg2 {
  z-index: 1;
  inset: 0;
  opacity: 0;
  -webkit-transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1), -webkit-filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1), -webkit-filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-filter: hue-rotate(-2deg);
  filter: hue-rotate(-2deg);
}
.shipping__num {
  z-index: 2;
  margin-left: auto;
  position: relative;
}
.shipping__name {
  max-width: 320px;
  z-index: 2;
  position: relative;
  font-weight: 500;
  font-size: 40px;
  line-height: 90%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.card2 {
  color: #181818;
}
.about-us {
  margin-bottom: 20px;
}
.about-us .about__text {
  max-width: 715px;
  font-size: 1rem;
  width: 100%;
}
.about-us__body {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 659px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 20px;
  width: 100%;
  padding-right: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-left: 30px;
}
.about-us__text {
  margin-bottom: 60px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.05em;
  color: #000;
  max-width: 331px;
}
.about-us__body-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  z-index: 2;
  width: 100%;
  mix-blend-mode: exclusion;
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.about-us__link {
  font-weight: 400;
  overflow: hidden;
  display: block;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-decoration: underline !important;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #000;
}
.about-us__logo {
  max-width: 711px;
  margin-bottom: -145px;
}
.video {
  overflow: hidden;
  margin-bottom: 20px;
}
.video__body {
  position: relative;
  height: 659px;
  border-radius: 5px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.video__body #video {
  z-index: 3;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.video__body .play {
  position: absolute;
  z-index: 2;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.video__body .play:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.video__body .play:active {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}
.cards {
  margin-bottom: 20px;
}
.cards__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.cards__card {
  padding: 20px;
  height: 707px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 10px);
  flex: 1 1 calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 37px;
}
.cards__title {
  position: relative;
  z-index: 2;
}
.vcard2 .cards__title {
  margin-bottom: auto;
}
.vcard1 .cards__title {
  mix-blend-mode: exclusion;
  margin-bottom: 28px;
}
.vcard1 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.cards__text {
  position: relative;
  z-index: 2;
  max-width: 350px;
  font-weight: 400;
  font-size: 15px;
  font-family: Roboto;
  letter-spacing: -0.05em;
  color: #fff;
}
.cards__link {
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  font-family: Roboto;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-decoration: underline !important;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #fff;
}
.products-line__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.products-line__card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(33.33% - 15px);
  flex: 1 1 calc(33.33% - 15px);
  position: relative;
  padding: 20px;
  height: 588px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
}
.products-line__card video {
  top: 20px;
  max-height: 100%;
  height: auto;
}
.products-line__card .daunn {
  margin-top: 30px;
}
.products-line__card p {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.05em;
  color: #8d8d8d;
  position: relative;
  margin-top: auto;
  z-index: 3;
}
.products-line__name {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #000;
  z-index: 3;
  position: relative;
}
.products-line__count {
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #8d8d8d;
  z-index: 3;
  position: relative;
}
.faq {
  margin-bottom: 5px;
  position: relative;
}
.faq__container {
  margin-top: auto;
}
.faq__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 968px;
  position: relative;
  padding: 50px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 33px;
}
.faq__body .box {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.site-footer .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  gap: 40px;
}
.site-footer .footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 36px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.site-footer .footer-col {
  min-width: 120px;
}
.site-footer .col-title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.05em;
  color: #181818;
  margin-bottom: 24px;
}
.site-footer .col-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .col-list li {
  margin: 18px 0;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.05em;
  color: #181818;
}
.site-footer .col-list a {
  display: inline-block;
  -webkit-transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.15s ease, transform 0.15s ease;
  transition: opacity 0.15s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.site-footer .col-list a:hover {
  opacity: 1;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}
.site-footer .muted {
  color: #8b8b8b;
  font-size: 13px;
  font-weight: 500;
}
.site-footer .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.site-footer .footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 14px;
  min-width: 170px;
}
.site-footer .btn-b2b {
  background: #f0a6b6;
  color: #fff;
  padding: 18.5px 73px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #181818;
  margin-top: 0;
  margin-bottom: 75px;
  -webkit-transition: -webkit-box-shadow 0.12s ease, -webkit-transform 80ms ease;
  transition: -webkit-box-shadow 0.12s ease, -webkit-transform 80ms ease;
  transition: box-shadow 0.12s ease, transform 80ms ease;
  transition: box-shadow 0.12s ease, transform 80ms ease, -webkit-box-shadow 0.12s ease, -webkit-transform 80ms ease;
}
.site-footer .btn-b2b:hover {
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  background: #181818;
  color: #fff;
}
.site-footer .btn-b2b:active {
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}
.site-footer .copyright {
  text-align: right;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.05em;
  color: #181818;
}
.site-footer .small {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.05em;
  color: rgba(24, 24, 24, 0.32);
}
.faq {
  overflow: hidden;
}
.faq .bg {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.faq.in-view .bg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 12;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  background: rgba(248, 248, 248, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
body.lock {
  overflow: hidden;
}
.modal__body {
  border-radius: 8px;
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
  background: #fff;
  max-width: 876px;
  padding: 35px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.modal__body .checkbox {
  font-weight: 400;
  font-size: 16px;
  font-family: Roboto;
  color: #272727;
}
.active .modal__body {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.modal__closs {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: absolute;
  right: 15px;
  top: 15px;
}
.modal__closs:hover {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.modal__closs img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.modal__closs:active {
  -webkit-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
}
.modal__title {
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  margin-top: 40px 0;
}
.modal__form {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.modal__form .input {
  width: 100%;
  padding: 5px 0;
  border-bottom: 1px solid #000;
  outline: 0;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.05em;
  color: #8c8c8c;
  font-family: Roboto;
}
.checkbox {
  width: 100%;
}
.modal__btn {
  margin-top: 0;
  border: 1px solid #000;
  width: 100%;
  display: block;
}
#fonvidos {
  position: absolute;
  bottom: 0;
  height: auto;
  background: #303030;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 100px 50px 50px #303030;
  box-shadow: 0 100px 50px 50px #303030;
}
.comp-hist {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.comp-hist .bg {
  top: 354px;
  z-index: 2;
  height: calc(100% - 350px);
}
.comp-hist__container {
  position: relative;
  z-index: 2;
}
.comp-hist__container::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 970px;
  -webkit-box-shadow: 0 15px 107px 201px #303030;
  box-shadow: 0 15px 107px 201px #303030;
  width: 100%;
  height: 0;
  z-index: -1;
}
.rewrite {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.comp-hist__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 505px;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.dx {
  overflow: hidden;
  position: relative;
}
.dx .nv {
  position: absolute;
  bottom: 40px;
  z-index: 3;
  right: 20px;
}
.comp-hist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.comp-hist__item-inner {
  position: relative;
  overflow: hidden;
  background: #313131;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  border-radius: 5px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 10px);
  flex: 1 1 calc(50% - 10px);
}
.comp-hist__item-inner .num {
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2549019608);
  position: absolute;
  right: 20px;
  top: 20px;
}
.comp-hist__item-inner.c3 {
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}
.comp-hist__item-inner img {
  border-radius: 5px;
  width: 100%;
  -webkit-transition: all 0.9s ease 0s;
  transition: all 0.9s ease 0s;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.in-view .comp-hist__item-inner img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.comp-hist__item-ttl {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}
.comp-hist__item-txt {
  font-weight: 400;
  font-size: 15px;
  max-width: 392px;
  letter-spacing: -0.05em;
  color: #fff;
}
.comp-hist__bottom {
  background: #fff;
  border-radius: 5px;
  padding: 15px;
}
.comp-hist__bottom-left {
  max-width: 570px;
  font-weight: 400;
  line-height: 130%;
  font-size: 24px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #181818;
}
.comp-hist__bottom-right {
  max-width: 330px;
}
.comp-hist__bottom-text {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.05em;
  color: #181818;
}
.comp-hist__link {
  width: 100%;
  text-align: center;
}
.comp-hist__title {
  margin-bottom: 40px;
}
#companyhistory {
  margin-bottom: 20px;
  width: 100%;
  opacity: 1 !important;
  border-radius: 5px;
}
.comp-hist__bottom-wrap {
  border: 1px solid rgba(24, 24, 24, 0.16);
  border-radius: 5px;
  padding: 29px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
[data-animate-text] span {
  color: #d9d9d9;
  display: inline-block;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
  -webkit-transition-delay: calc(var(--index) * 30ms);
  transition-delay: calc(var(--index) * 30ms);
}
[data-animate-text].revealed span {
  color: #181818;
}
.a-production {
  margin-bottom: 80px;
}
.a-production__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
}
.a-production__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(33.33% - 5px);
  flex: 1 1 calc(33.33% - 5px);
  height: 588px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 20px;
}
.a-production__item:last-child .a-production__item.in-view {
  -webkit-transition: all 0.9s ease 0s;
  transition: all 0.9s ease 0s;
}
.a-production__item img {
  border-radius: 5px;
}
.a-production__text {
  max-width: 379px;
  z-index: 3;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.05em;
  color: #fff;
}
.diamond .a-production__text {
  color: #181818;
  max-width: 414px;
}
.polishing__title {
  max-width: 724px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  position: relative;
  line-height: 130%;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #181818;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.polishing__title::before {
  content: "";
  position: absolute;
  width: 700px;
  background-color: #d9d9d9;
  height: 1px;
  z-index: 2;
  left: -700px;
}
.polishing__title::after {
  content: "";
  position: absolute;
  width: 700px;
  background-color: #d9d9d9;
  height: 1px;
  z-index: 2;
  right: -700px;
}
.polishing__video {
  margin-bottom: 20px;
  overflow: hidden;
}
.polishing__video video {
  width: 100%;
  border-radius: 4px;
}
.word {
  margin-right: 0.09em;
}
.collections {
  background: #fff;
}
.collections__animate-block {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 520px;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}
.img-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0;
  will-change: transform, opacity;
  -webkit-animation: cycleImages 24s infinite ease-in-out;
  animation: cycleImages 24s infinite ease-in-out;
}
.img-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.img-2 {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}
.img-3 {
  -webkit-animation-delay: 16s;
  animation-delay: 16s;
}
@-webkit-keyframes cycleImages {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%) scale(0.9);
    transform: translateY(-100%) scale(0.9);
  }
  5% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  28% {
    opacity: 1;
    -webkit-transform: translateY(10px) scale(1);
    transform: translateY(10px) scale(1);
  }
  33.33% {
    opacity: 0;
    -webkit-transform: translateY(100%) scale(0.9);
    transform: translateY(100%) scale(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%) scale(0.9);
    transform: translateY(100%) scale(0.9);
  }
}
@keyframes cycleImages {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%) scale(0.9);
    transform: translateY(-100%) scale(0.9);
  }
  5% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  28% {
    opacity: 1;
    -webkit-transform: translateY(10px) scale(1);
    transform: translateY(10px) scale(1);
  }
  33.33% {
    opacity: 0;
    -webkit-transform: translateY(100%) scale(0.9);
    transform: translateY(100%) scale(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%) scale(0.9);
    transform: translateY(100%) scale(0.9);
  }
}
.about-us.collections .line0 {
  background: #eaeaea;
}
.about-us.collections .line1 {
  background: #eaeaea;
}
.about-us.collections .line2 {
  background: #eaeaea;
}
.about-us.collections .line3 {
  background: #eaeaea;
}
.collections-section {
  position: relative;
}
.about__title {
  line-height: 125%;
}
.collections-section__body.in-view .bg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.collections-section__body {
  margin-top: 40px;
  border-radius: 5px;
  height: 788px;
  overflow: hidden;
  position: relative;
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 260px;
}
.collections-section__body .bg {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: all 1.4s ease 0s;
  transition: all 1.4s ease 0s;
}
.white {
  color: #fff;
}
.black {
  color: #181818;
}
.collections-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 4;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.collections-section__num {
  font-family: Lato;
  z-index: 2;
  font-size: 1.125rem;
  margin-bottom: 16px;
}
.collections-section__title {
  font-family: Lato;
  line-height: 1.1;
  font-size: 4.75rem;
}
.collections-section__top-text {
  max-width: 375px;
  letter-spacing: -5%;
  font-size: 0.9375rem;
}
.collections-section__bottom {
  position: relative;
  z-index: 5;
  margin-top: auto;
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.collections-section__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.ii1 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ii2 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.ii3 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.ii4 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.collections-section__item {
  width: 200px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  height: 200px;
}
.collections-section__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}
.collections-section__link {
  width: 100%;
  max-width: 324px;
  text-align: center;
  padding: 19.5px;
}
.part1 {
  margin-bottom: 50px;
}
.part1__text {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  line-height: 130%;
  color: #181818;
  max-width: 962px;
  margin-bottom: 40px;
}
.part1__foto {
  height: 659px;
  width: 100%;
  position: relative;
}
.part1__foto img {
  width: 100%;
}
.part-sec .shipping__body {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.part-sec .bg {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: all 3s ease 0s;
  transition: all 3s ease 0s;
}
.part-sec .in-view .bg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.part-sec .shipping__name {
  margin-top: auto;
  color: #181818;
  max-width: 100%;
}
.part-sec .shipping__txt {
  margin-top: 24px;
  font-weight: 400;
  font-size: 15px;
  max-width: 610px;
  letter-spacing: -0.05em;
  color: #181818;
}
.advant {
  margin-top: 40px;
  margin-bottom: 70px;
}
.features-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.readmore {
  display: none;
}
.imo {
  padding: 0;
}
.imo img {
  border-radius: 5px;
  width: 100%;
}
.feature-card {
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.03);
  background: #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(33.33% - 15px);
  flex: 1 1 calc(33.33% - 15px);
}
.feature-media {
  height: 254px;
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
.feature-media img {
  width: 100%;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.last-grid {
  max-width: 470px;
}
.hid {
  display: block;
}
.noscale .hid {
  display: none;
}
.none {
  opacity: 0;
}
.feature-content {
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 15px;
  letter-spacing: -0.05em;
  color: #181818;
}
.feature-content ul {
  padding-left: 20px;
}
.feature-content ul li {
  list-style: disc;
}
.feature-content h3 {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 90%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #181818;
}
.features-list {
  margin-bottom: 70px;
}
.feature-row__index {
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.feature-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.04em;
  color: #8d8d8d;
  padding: 10px 0;
  border-bottom: 1px solid #8d8d8d;
}
.feature-row:hover {
  border-bottom: 1px solid #181818;
  color: #181818;
}
.feature-row__body {
  max-width: 660px;
  width: 100%;
}
.feature-row__title {
  font-weight: 400;
  font-size: 15px;
  max-width: 660px;
  width: 100%;
  letter-spacing: -0.05em;
}
.flags .about__top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flags .about__text p:not(:last-child) {
  margin-bottom: 15px;
}
.flags {
  margin-top: 80px;
  margin-bottom: 80px;
}
.flags__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flags__body .fke {
  opacity: 0 !important;
}
.flags__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(16.66% - 20px);
  flex: 1 1 calc(16.66% - 20px);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 5px;
  background: #fff;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 500;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #181818;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 75em) {
  .about__left-title {
    font-size: 2.5rem;
  }
  .shipping__card {
    height: 600px;
  }
  .a-production__item {
    height: 470px;
  }
  .collections-section__item {
    width: 180px;
    height: 148px;
  }
}
@media (max-width: 880px) {
  .site-footer .btn-b2b {
    margin-bottom: 0;
    padding: 14.5px 52px;
    font-size: 0.9375rem;
  }
  .site-footer .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }
  .site-footer .footer-left {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 18px;
  }
  .site-footer .footer-right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }
  .site-footer .footer-col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .site-footer .copyright {
    text-align: left;
  }
}
@media (max-width: 50em) {
  .comp-hist__container::after {
    bottom: 900px !important;
  }
  .collections-section__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }
  .collections-section__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 10px);
    flex: 1 1 calc(50% - 10px);
    height: auto;
  }
}
@media (max-width: 700px) {
  .collections__animate-block {
    width: 90%;
    top: 58%;
  }
}
@media (max-width: 25em) {
  .polishing__title {
    font-size: 1rem;
  }
}
@media (max-width: 101.25em) {
  .comp-hist__container::after {
    bottom: 890px;
  }
}
@media (max-width: 90.625em) {
  .comp-hist__container::after {
    bottom: 840px;
  }
}
@media (max-width: 84.6875em) {
  .comp-hist__container::after {
    bottom: 750px;
    -webkit-box-shadow: 0 15px 107px 211px #303030 !important;
    box-shadow: 0 15px 107px 211px #303030 !important;
  }
}
@media (max-width: 62.5em) {
  .header__menu-ul {
    font-size: 0.9375rem;
    gap: 10px;
    margin-bottom: 24px;
  }
  .about-us .line0 {
    height: 100%;
    width: 1px;
    left: 25%;
    top: 0;
    display: block !important;
    z-index: 0;
    opacity: 0.2;
  }
  .about-us .line1 {
    height: 100%;
    width: 1px;
    right: 25%;
    top: 0;
    display: block !important;
    z-index: 0;
    opacity: 0.2;
  }
  .about-us .line2 {
    height: 1px;
    width: 40px;
    left: 0;
    top: calc(50% - 96px);
    display: block !important;
    z-index: 0;
    opacity: 0.2;
  }
  .about-us .line3 {
    height: 1px;
    width: 50px;
    right: 0;
    left: auto;
    top: 50%;
    display: block !important;
    z-index: 0;
    opacity: 0.2;
  }
  .about-us video.videoactive {
    left: 50%;
    width: 100%;
    height: auto;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(4.2);
    -ms-transform: translate(-50%, -50%) scale(4.2);
    transform: translate(-50%, -50%) scale(4.2);
  }
  .about-us video {
    width: calc(100% - 60px);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    left: 50%;
    height: auto;
    z-index: 20;
    top: 50%;
  }
  .about-us .box .hero__logo {
    max-width: 289px;
  }
  .about-us .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 8px;
  }
  .btn-primary {
    margin-top: 0;
  }
  .hero__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 16px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .mob {
    display: block;
  }
  .pk {
    display: none;
  }
  .hero__text {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.05em;
    color: #fff;
    max-width: 250px;
  }
  .collections-page .hero__text {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    max-width: 100% !important;
  }
  .collections-page .hero__text img {
    width: 20px;
    display: block;
    margin-left: auto;
  }
  .hero__sub {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #fff;
  }
  .collections-page .hero__logo {
    width: 100%;
    max-width: 100% !important;
  }
  .collections-page .hero__logo img {
    width: 100%;
    max-width: 100%;
  }
  .hero__logo {
    margin-bottom: 10px;
  }
  .line0,
  .line1 {
    display: none;
  }
  .line2,
  .line3 {
    display: none;
  }
  .about__container {
    padding: 0;
  }
  .decor {
    margin-bottom: 24px;
  }
  .decor2 {
    height: 10px;
  }
  .about__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .about1 .about__top {
    padding: 0 29px;
  }
  .title-text {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.05em;
    color: #181818;
  }
  .about__text {
    font-weight: 400;
    font-size: 14.5px;
    line-height: 130%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #000;
    max-width: 375px;
  }
  .about__body {
    padding: 29px;
    position: relative;
    padding-bottom: 422px;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
  }
  .about__body::before {
    content: "";
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#dadada),
      color-stop(46.52%, #d6d6d6),
      to(#d1d1d1)
    );
    background: linear-gradient(180deg, #dadada 0, #d6d6d6 46.52%, #d1d1d1 100%);
    position: absolute;
    left: -30px;
    top: 0;
    height: 100%;
    width: calc(100% + 65px);
  }
  .about__left-title {
    max-width: 235px;
    font-weight: 500;
    font-size: 32px;
    line-height: 90%;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #000;
  }
  .about__left-txt p:not(:last-child) {
    margin-bottom: 0;
  }
  .about__left-txt {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.05em;
    color: #000;
    margin-bottom: 16px;
  }
  .shipping__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .shipping__card {
    height: 370px;
    padding: 24px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .shipping__num {
    font-style: italic;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }
  .shipping__name {
    font-weight: 500;
    font-size: 32px;
    line-height: 90%;
    max-width: 242px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
  }
  .about-us {
    overflow: hidden;
  }
  .about-us .about__text {
    max-width: 295px !important;
  }
  .about-us__body {
    height: 600px;
    padding: 0;
    overflow: visible;
    padding-bottom: 24px;
  }
  .about-us__body .bg {
    left: -30px;
    width: calc(100% + 61px);
  }
  .about-us__text {
    max-width: 280px;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0;
    letter-spacing: -0.05em;
    color: #fff;
  }
  .about-us__link {
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: #fff;
  }
  .about-us__logo {
    margin-bottom: 16px;
  }
  .about-us__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 5px;
  }
  .video {
    margin-bottom: 10px;
  }
  .video__body {
    height: 600px;
  }
  .video__body .play svg {
    max-width: 70px;
  }
  .cards__body {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cards__card {
    padding: 24px;
    height: 470px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    gap: 16px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .cards__title img,
  .cards__title svg {
    max-width: 270px;
  }
  .vcard2 .cards__title {
    margin-bottom: -28px;
  }
  .vcard2 .cards__title img,
  .vcard2 .cards__title svg {
    max-width: 170px;
  }
  .vcard1 .cards__title {
    margin-bottom: -38px;
  }
  .products-line__body {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
  }
  .products-line__card p {
    height: 38px;
    overflow: hidden;
  }
  .products-line__card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 10px);
    flex: 1 1 calc(50% - 10px);
    padding: 16px;
    height: 223px;
  }
  .collections .products-line__card {
    height: 265px;
  }
  .collections .products-line__card .bg {
    top: 20px !important;
    bottom: auto !important;
    height: 80%;
  }
  .products-line__card .bg {
    height: 75%;
    bottom: 0;
    top: auto;
  }
  .products-line__card.prd3 .bg {
    height: 100% !important;
  }
  .products-line__name {
    font-size: 1rem;
  }
  .products-line__count {
    font-size: 1rem;
  }
  .faq__body .box {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .faq__body {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 840px;
    padding-bottom: 32px;
  }
  .faq__body .bg {
    left: -30px;
    width: calc(100% + 61px);
  }
  .faq__ttl svg {
    max-width: 262px;
    margin-bottom: -15px;
  }
  .site-footer .col-title {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.05em;
    color: #181818;
  }
  .site-footer .col-list li {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.05em;
    color: #181818;
    margin: 10px 0;
  }
  .modal__body .checkbox {
    font-size: 14px;
  }
  .modal__title {
    font-size: 1.75rem;
  }
  .card01 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  #fonvidos {
    bottom: 0;
    height: 904px;
    -o-object-fit: cover;
    object-fit: cover;
    left: -40px;
    -o-object-position: 60% 50%;
    object-position: 60% 50%;
    width: 110%;
  }
  .comp-hist {
    margin-bottom: 10px;
  }
  .comp-hist__blocks {
    gap: 10px;
    margin-bottom: 372px;
  }
  .comp-hist__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .comp-hist__item-inner.c3 {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    padding: 24px;
  }
  .comp-hist__item-ttl {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.04em;
  }
  .comp-hist__item-txt {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.05em;
    color: #fff;
  }
  .comp-hist__bottom {
    padding: 10px;
    border-radius: 4px;
  }
  .comp-hist__bottom-left {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #181818;
  }
  .comp-hist__bottom-text {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.05em;
    color: #181818;
    margin-bottom: 24px;
  }
  .comp-hist__title {
    margin-bottom: 30px;
  }
  #companyhistory {
    height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 10px;
    -o-object-position: 13% 50%;
    object-position: 13% 50%;
  }
  .comp-hist__bottom-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    border-radius: 4px;
    padding: 14px;
  }
  [data-animate-text] span {
    display: inline;
  }
  .a-production {
    margin-bottom: 45px;
  }
  .a-production__body {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .a-production__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .diamond .a-production__item {
    height: 317px;
  }
  .diamond .a-production__text {
    max-width: 300px;
  }
  .polishing__title {
    margin-bottom: 32px;
    font-weight: 400;
    max-width: 372px;
    font-size: 17.9px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-align: center;
    color: #181818;
  }
  .polishing__video {
    margin-bottom: 10px;
  }
  .polishing__video video {
    height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-left: -30px;
    width: calc(100% + 60px);
  }
  .about-us.collections .line0 {
    height: 100%;
    width: 1px;
    left: 25%;
    top: 0;
    display: block !important;
    z-index: 0;
    opacity: 0.8;
  }
  .about-us.collections .line1 {
    height: 100%;
    width: 1px;
    right: 25%;
    top: 0;
    display: block !important;
    z-index: 0;
    opacity: 0.8;
  }
  .about-us.collections .line2 {
    height: 1px;
    width: 40px;
    left: 0;
    top: calc(50% - 96px);
    display: block !important;
    z-index: 0;
    opacity: 0.8;
  }
  .about-us.collections .line3 {
    height: 1px;
    width: 50px;
    right: 0;
    left: auto;
    top: 50%;
    display: block !important;
    z-index: 0;
    opacity: 0.8;
  }
  .collections-section__body .bg {
    width: calc(100% + 60px);
    left: -30px;
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
    height: 100%;
  }
  .collections-section__body .bg img {
    height: 100%;
  }
  .collections-section__body {
    padding: 20px 0;
    overflow: visible;
    padding-bottom: 32px;
    height: auto;
    margin-bottom: 10px;
    min-height: 800px;
  }
  .collections-section__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .collections-section__num {
    font-size: 0.9375rem;
    margin-bottom: 2px;
  }
  .collections-section__title {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 40px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
  }
  .collections-section__top-text {
    max-width: 390px;
    margin-bottom: 24px;
    line-height: 125%;
    letter-spacing: -0.05em;
    font-size: 0.93125rem;
  }
  .part1 {
    margin-bottom: 45px;
  }
  .part1__text {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-align: center;
    color: #181818;
  }
  .part1__foto {
    height: 370px;
  }
  .part-sec .shipping__name {
    max-width: 298px;
    line-height: 115%;
    margin-bottom: -10px;
  }
  .part-sec .lllll .bg {
    height: 90% !important;
  }
  .part-sec .shipping__card {
    height: 510px;
    background: #e9e9ea;
  }
  .part-sec .shipping__card .bg {
    -o-object-position: 50% 50;
    object-position: 50% 50;
  }
  .part-sec .shipping__txt {
    margin-top: 16px;
    line-height: 115%;
  }
  .advant {
    margin-bottom: 40px;
  }
  .features-grid {
    gap: 10px;
  }
  .readmore {
    font-weight: 400;
    font-size: 10px;
    letter-spacing: -0.05em;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: #f29db5;
    display: inline-block;
    margin-top: 10px;
  }
  .imo img {
    border-radius: 2px;
  }
  .imo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .feature-card {
    border-radius: 2px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 10px);
    flex: 1 1 calc(50% - 10px);
    width: calc(50% - 5px);
  }
  .feature-media img {
    border-radius: 2px;
  }
  .feature-media {
    height: 97px;
    margin-bottom: 16px;
  }
  .feature-content h3 {
    line-height: 95%;
    margin-bottom: 25px;
    font-size: 1.0625rem;
    min-height: 32px;
  }
  .feature-content {
    font-size: 0.8125rem;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .features-list {
    margin-bottom: 45px;
  }
  .feature-row__index {
    margin-top: 3px;
    font-style: italic;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }
  .feature-row {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .feature-row br {
    display: none;
  }
  .feature-row__body {
    max-width: 290px;
  }
  .flags {
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .flags__body .fke {
    display: none;
  }
  .flags__body {
    gap: 10px;
  }
  .flags__item {
    -webkit-box-flex: calc(50% - 10px);
    -ms-flex: calc(50% - 10px);
    flex: calc(50% - 10px);
    height: 106px;
    max-width: 50%;
    font-size: 1.125rem;
  }
  .flags__item img {
    width: 57px;
  }
}
@media (max-width: 43.75em) {
  .collections-section__link {
    width: 170px;
    padding: 15px 40px;
  }
}
@media (max-width: 37.5em) {
  .collections-section__item {
    height: 148px;
  }
}
@media (max-width: 26.0625em) {
  .polishing__title {
    font-size: 1.1rem;
  }
}
@media (max-width: 25.875em) {
  .polishing__title {
    font-size: 1.0625rem;
  }
}
@media (max-width: 22.8125em) {
  .products-line__card {
    height: 200px;
  }
}
