:root {
  --font-1: 'P22UndergroundCYProBook';
  --font-2: 'Cormorant';
  --font-3: 'Cormorant Garamond';
  --white: #ffffff;
  --light-gray: #F5F5F5;
  --error: #FFEEEE;
  --text: #303030;
  --light-text: #86929B;
  --pink: #B65A65;
  --pink-active: #AA4853;
  --stroke: #CECECE;
  --error-2: #FF0000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-1);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  -webkit-font-smoothing: antialised;
  overflow-x: hidden;
  background: var(--main-color-white);
  color: var(--text);
  box-sizing: border-box;
}

main {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: var(--black);
  text-decoration: none;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: red;
}

body input:required:valid,
body textarea:required:valid {
  color: green;
}

ul,
ol {
  list-style-position: inside;
}

.hidden {
  display: none;
}

/*--MARGIN--*/
.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.pad-y-150 {
  padding: 150px 0;
}

/*--TEXT--*/
h1,
.h1 {
  font-family: var(--font-3);
  text-transform: uppercase;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.2px;
  font-weight: 400;
}

h1.italic,
.h1.italic,
h1 i {
  text-transform: none;
  font-style: italic;
}

h2,
.h2 {
  font-family: var(--font-3);
  text-transform: uppercase;
  font-size: 44px;
  line-height: 48px;
  font-weight: 400;
}

h2.italic,
.h2.italic,
h2 i,
.h2 i {
  text-transform: none;
  font-style: italic;
}

h3,
.h3 {
  font-family: var(--font-3);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
}

h3 i {
  text-transform: none;
}

h3.italic,
.h3.italic {
  font-style: italic;
  line-height: 32px;
}

h4,
.h4 {
  font-family: var(--font-2);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 32px;
  line-height: 45px;
}

h3 span {
  color: var(--pink);
}

.text_1 {
  font-family: var(--font-1);
  font-size: 24px;
  line-height: 28px;

}

.text_2 {
  font-family: var(--font-3);
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  font-style: italic;
}

.text_3 {
  font-family: var(--font-3);
  font-size: 20px;
  line-height: 22px;
}

.text_4 {
  font-family: var(--font-1);
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;

}

.text_5 {
  font-family: var(--font-1);
  font-size: 14px;
  line-height: 20px;
}

.text_6 {
  font-family: var(--font-1);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.2px;
  font-weight: 500;
  text-transform: uppercase;
}

.text_7 {
  font-family: var(--font-1);
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 1.2px;
  font-weight: 500;
  text-transform: uppercase;
}

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

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

.color-red {
  color: var(--pink) !important;
}

.color-gray {
  color: var(--light-text);
}

.color-white {
  color: var(--white);
}

.statistic_item .big {
  font-family: var(--font-1);
  font-size: 50px;
  font-weight: 400;
  line-height: 52px;
}

.tt-up {
  text-transform: uppercase;
}

/*--GRID--*/
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-2-slider {
  display: grid;
  grid-template-columns: 55% 1fr;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.grid-2-3 {
  display: grid;
  grid-template-columns: 2fr 3fr;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-3-1 {
  display: grid;
  grid-template-columns: 3fr 1fr;
}

.grid-3-2 {
  display: grid;
  grid-template-columns: 3fr 2fr;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.grid-3-4 {
  display: grid;
  grid-template-columns: 3fr 4fr;

}

.grid-4-5 {
  display: grid;
  grid-template-columns: 4fr 5fr;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.grid-5-4 {
  display: grid;
  grid-template-columns: 5fr 4fr;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.gap-30 {
  grid-gap: 30px;
}

.gap-10 {
  grid-gap: 10px;
}

.gap-15 {
  grid-gap: 15px;
}

.gap-125 {
  grid-gap: 125px;
}

.grid-item {
  width: 100%;
}

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



/*--FLEX--*/
.flex {
  display: flex;
  justify-content: space-between;
}

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

/*--BTN--*/
.btn-border,
input.btn.btn-border {
  border-radius: 8px;
  border: 1px solid;
  padding: 20px 100px;
  display: inline-block;
  transition: .3s;
}

.btn-border.small {
  padding: 18px 45px;
}

.btn-border:hover {
  color: var(--pink-active);
}

.btn-pink {
  background: var(--pink);
  color: var(--white) !important;
  transition: .3s;
  cursor: pointer;
  border: none;
  padding: 15px 80px;
  border-radius: 8px;
  display: inline-block;
}

.btn-pink.small {
  padding: 18px 30px;
}

.btn-pink:hover {
  background: var(--pink-active);
}

.btn-gray {
  background: var(--light-gray);
  color: var(--text);
  transition: .3s;
  cursor: pointer;
  border: none;
  padding: 15px 80px;
  border-radius: 8px;
  display: inline-block;
  width: auto;
}

.btn-white {
  border-radius: 8px;
  border: 1px solid var(--pink);
  padding: 20px 100px;
  display: inline-block;
  transition: .3s;
  color: var(--pink);
  background: var(--white);

}

.btn-gray:hover {
  background: var(--pink);
  color: var(--white);
}

.btn-gray:hover svg path {
  fill: var(--white);
}

.btn.btn-full {
  width: 100%;
  padding: 15px;
  text-align: center;
}

a.more {
  color: var(--pink);
  border-bottom: 1px dashed;
}

/*--HEADER--*/
header {
  position: fixed;
  width: 100%;
  height: 92px;
  left: 0;
  top: 0;
  z-index: 999;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  transition: .3s;
}

header .flex {
  align-items: center;
}

header a {
  color: var(--white);
  transition: .3s;
}

header a:hover {
  color: var(--pink);
}

header:hover,
header.header-fixed,
header.black {
  background: var(--white);
}

header.black~main section:first-child {
  margin-top: 100px;
}

header:hover a,
header.header-fixed a,
header.black a {
  color: var(--text);
}

header:hover a:hover,
header.header-fixed a:hover,
header.black:hover {
  color: var(--pink);
}

header:hover svg path,
header.header-fixed .header-icon svg path,
header.black .header-icon svg path,
header.header-fixed .burger svg rect {
  fill: var(--text);
}

header:hover path,
header.header-fixed .header-logo path,
header.black .header-logo path,
header.black .burger svg rect,
header:hover .burger svg rect,
header.header-fixed .burger svg rect {
  fill: var(--text);
  ;
}

.header-right,
.header-left {
  display: flex;
  align-items: center;
}

.burger {
  margin-right: 20px;
  display: none;
}

.header-menu ul {
  display: flex;
  align-items: center;
}

.header-menu ul li {
  list-style-type: none;
  padding: 0 15px;
  height: 55px;
  line-height: 55px;
}

.header-menu .label {
  color: var(--white);
  background: var(--pink);
  padding: 5px 8px;
  border-radius: 900px;
  margin-left: 8px;
}

.header-button {
  display: flex;
  margin-right: 30px;
}

.header-button a {
  display: block;
  border-bottom: 1px dashed;
  margin: 0 10px;
}

.header-icon {
  display: flex;
}

.header-icon a {
  display: block;
  margin: 0 10px;
}

.header-menu ul li:hover .sub-menu {
  display: block;
}

.sub-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 55px;
  background: var(--white);
  padding: 40px 0;
  min-height: 420px;
  display: none;
}

.sub-menu p {
  color: var(--light-text);
}

.sub-menu:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background: var(--white);
}

.sub-menu:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: var(--white);
}

.sub-menu ul {}

.sub-menu ul {
  display: block;
}

.sub-menu ul li {
  padding: 0px 0 15px;
  line-height: 1;
  height: auto;
}

.sub-menu a.more {
  color: var(--pink);
  border-bottom: 1px dashed;
}

.sub-menu img {
  border-radius: 8px;
}

.busket-icon {
  position: relative;
}

.busket-icon-number {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -3px;
}


.header-mobile {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 105;
  padding: 112px 20px 20px;
}

.header-mobile ul {
  list-style-type: none;
  height: 100%;
  position: relative;
}

.header-mobile .sub-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: var(--white);
  padding: 0;
  min-height: 420px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.header-mobile .sub-menu.active {
  display: block;
}

.header-mobile .back_btn {
  display: inline-block;
}

/*-FOOTER-*/
footer {
  background: #000;
  color: var(--white);
  padding-bottom: 40px;
}

footer form {
  margin-top: 25px;
}

footer input {
  display: block;
  width: 100%;
  font-family: var(--font-1);
  background: transparent;
  border: none;
  border-bottom: 1px solid #585858;
  color: #585858;
  padding: 15px;
  margin-bottom: 20px;
  outline: none;
  font-size: 14px;
}

footer input[type=submit] {
  color: #fff;
  border: 1px solid;
  text-align: center;
  border-radius: 8px;
}

footer form p {
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
}

.footer-top {
  margin-bottom: 45px;
}

.footer-center {
  margin-bottom: 85px;
}

.footer-bottom {
  padding-bottom: 30px;
}

.footer-bottom ul li {
  list-style-type: none;
  font-size: 12px;
  margin-bottom: 10px;
}

.footer-item ul {
  margin-top: 15px;
  list-style-type: none;
}

.footer-item ul li {
  margin-bottom: 8px;
}

.footer-item ul a {
  color: rgba(255, 255, 255, .5);
}

.footer-center .footer-flex {
  display: flex;
  justify-content: space-between;
}

.footer-item {
  max-width: 320px;
}

/*-SECTION-*/
section {
  margin-bottom: 120px;
}

.section-cat_banner {
  margin-bottom: 30px;
}

main section:last-child:is(.form-section) {
  margin-bottom: 0;
}

.form-section {
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.container-small {
  width: 90%;
  max-width: 765px;
  margin: auto;
  position: relative;
  height: 100%;
}

.container {
  width: 90%;
  max-width: 1235px;
  margin: auto;
  position: relative;
  height: 100%;
}

.container-big {
  width: 95%;
  max-width: 1410px;
  margin: auto;
  position: relative;
  height: 100%;
}

.content-notfull {
  width: 80%;
}

.container-full {
  width: 100%;
  position: relative;
  height: 100%;
}

.section_title {
  text-align: center;
  margin-bottom: 40px;
}

.section_title .cristal {
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 24px;
}

/*scrolling-y*/
.scrolling-y .scrollWrapper {
  cursor: url(../images/cursor.svg), auto !important;
}

.scrolling-y img {
  display: block;
  max-width: 700px;
  margin-bottom: 15px;
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.scrolling-y .scrollableArea {
  display: flex;
  gap: 15px;
  padding-left: calc((100% - 1235px)/2);
}

.scrolling-y_item {
  flex: 0 0 auto;
  width: auto;
}

#scroll_1 .scrolling-y_item {}

#scroll_1 .scrolling-y_item:nth-child(odd) img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: 50%;
}

#scroll_1 .scrolling-y_item:nth-child(even) img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  object-position: 50%;
}

/*gift-section*/
.gift-section_title {
  position: absolute;
  left: 0;
  top: 0;
}

.gift-section_text {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: grid;
  align-content: center;
}

/*--form_section--*/
.form-section_title {
  margin-bottom: 30px;
}

.form-section_title h4 {
  margin-bottom: 25px;
}

/*--ACCORDION--*/
.accordion-item {
  padding: 35px 20px;
  border-bottom: 1px solid var(--stroke);
  transition: .3s;
}

.accordion-item:first-child {
  border-top: 1px solid var(--stroke);
}

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

.accordion-item_title:after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/faq_arrow.svg);
  background-size: cover;
  background-position: center;
}

.active .accordion-item_title:after {
  transform: rotate(180deg);
}

.accordion-item_description {
  overflow: hidden;
  max-height: 0px;
}

.active .accordion-item_description {
  max-height: 10000px;
}

.accordion-item_description__text {
  padding-top: 25px;
}

/*--FORM--*/
.form-init form .form-fieldset {
  display: flex;
  gap: 10px;
}

.form-section .form-fieldset>div {
  width: 100%;
}

.form-init form input,
.form-init form select {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.form-fieldset input,
.form-fieldset select {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  border: 1px solid var(--stroke);
  font-family: var(--font-1);
    font-size: 14px;
}

.form-fieldset textarea {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  border: 1px solid var(--stroke)
}

.form-fieldset__item {
  position: relative;
}

.form-fieldset__item sup {
  position: absolute;
  top: 5px;
  right: 10px;
  color: var(--pink);
}

input.btn,
button.btn {
  background: var(--pink);
  color: var(--white);
  transition: .3s;
  cursor: pointer;
  border: none;
  padding: 15px;
  border-radius: 8px;
  display: block;
  width: 100%;
}

input.btn:hover,
button.btn:hover {
  background: var(--pink-active);
}

.custom-select select {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--stroke);
  height: 48px;
  padding: 10px 0;
}

.custom-radio {
  margin-bottom: 10px;
}

.custom-radio input {
  display: none;
}

.custom-radio label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-radio label:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid var(--light-text);
  border-radius: 2px;
}

.custom-radio input:checked+label:before {
  background-image: url(../images/check-radio.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--pink);
  border-color: var(--pink);
}

.custom-checkbox {
  margin-bottom: 10px;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-checkbox label:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid var(--light-text);
  border-radius: 2px;
}

.custom-checkbox input:checked+label:before {
  background-image: url(../images/check-radio.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--pink);
  border-color: var(--pink);
}

/*.grid-2 .btn {
  width: 100%;
  text-align: center;
  padding: 15px;
}*/

/*--ITEM--*/
.main-slider {}

.main-slider_item {
  height: 70vh;
  background-size: cover;
  background-position: center;
  color: var(--white);
  min-height: 700px;
  padding-top: 200px;
  position: relative;
}

.main-slider_item i {
  text-transform: lowercase;
}

.main-slider_item a {
  padding-bottom: 5px;
  border-bottom: 1px solid;
}

.main-slider_item__desc {
  max-width: 300px;
  position: absolute;
  /*right: 0;*/
  bottom: 40px;
}

.main-slider_item__desc a {
  transition: .3s;
  border: none;
  padding: 20px 25px;
}

.main-slider_item__desc a:hover {
  color: var(--pink);
}

.main-banner_item {
  height: 525px;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: 110px;
  position: relative;
}

.main-banner_item__title {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}

.main-banner_item i {
  text-transform: lowercase;
}

.main-banner_item .container-big {
  height: auto;
}

.main-banner_item .container {
  height: auto;
}

.main-category {}

.scrolling-y.categories .scrollableArea {
  display: flex;
  gap: 15px;
  padding-left: calc((100% - 1410px) / 2);
}

.main-category_link {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 690px;
  background-size: cover;
  background-position: center;
}

.main-category_link .name-cat {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .7));
  padding: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: end;
  z-index: 9;
}

.main-category_link img {
  display: block;
}

.categories-item {
  height: 350px;
  min-width: 300px;
  border-radius: 8px;
  background-color: var(--light-gray);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  padding: 10px;
  width: auto;
}

.categories-item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
}

.collection-list ul li {
  list-style-type: none;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
  opacity: .5;
  transition: .3s;
  position: relative;
}

.collection-list ul li:hover {
  opacity: 1;
}

.image-hover_1 {
  position: absolute;
  left: 0;
  top: 0;
}

.image-hover_2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.ilyr-1 {
  padding-right: 15px;
}

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

.ilyr-2 img {
  display: block;
}

.ilyr-3 {
  padding-left: 15px;
}

/*--REVIEWS--*/
.reviews_item {
  width: 570px;
  flex: 0 0 auto
}

.reviews_item__head {
  position: relative;
}

.reviews_item__head>img {
  max-width: 505px;
  height: 380px;
  display: block;
  object-fit: cover;
  object-position: 50% 30%;
}

.reviews_item__head-product {
  position: absolute;
  right: 0;
  bottom: 0;
}

.reviews_item__head-product img {
  display: block;
}

.slider-product .product-item {
  margin: 0 10px;
}

.image-hover {
  position: relative;
}

.product-item .section-gallery-wrapper__item img {
  height: 400px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.product-item .image-hover__2 {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: .2s;
  height: auto;
}

.product-item:hover .image-hover__2 {
  opacity: 1;
}

.reviews_item_mk img {
  border-radius: 8px;
  box-shadow: 0 0 16px 0 #6771783D;
  width: 376px;
}

.aggregate_items__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
}

.aggregate_items__image img {
  display: block;
  max-height: 30px;
  max-width: 72px;
}

/*--BLOG--*/
.blog_item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-width: 270px;
  width: auto;
}

.blog_item .image img {
  max-height: 350px;
}

.blog_item.big {
  min-width: 700px;
}

.blog_item.big .image img {
  max-height: 530px;
}

.blog_item img {
  display: block;
  margin-bottom: 0;
  object-fit: cover;
  object-position: 50%;
}

.blog_item .category,
.blog-item .category,
.blog-item__big .category {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 8px 12px;
  border-radius: 900px;
  background: rgba(255, 255, 255, .2);
}

.blog_item .text_1 {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .7));
  padding: 15px;
  display: flex;
  align-items: end;
}

.blog-item__big {
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 750px;
  border-radius: 8px;
  padding: 25px 20px;
}

.blog-item__big-title {
  color: var(--white);
  position: absolute;
  lefT: 0;
  bottom: 20px;
  padding: 0 40px;
  text-align: center;
}

.blog-item__big-title hr {
  width: 52px;
  margin: auto;
  margin-bottom: 10px;
}

.blog-item__title hr {
  width: 52px;
  margin-bottom: 10px;
}

.blog-item {
  position: relative;
}

.blog-item__image {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

.sticky {
  position: sticky;
  top: 100px;
}

.blog-list .grid-4-5:nth-child(2) {
  grid-template-columns: 5fr 4fr;
}

.blog-list .grid-4-5:nth-child(2)>.grid-item:first-child {
  grid-column-start: 2;
}

.blog-list .grid-4-5:nth-child(2)>.grid-item:last-child {
  grid-row-start: 1;
}

.blog-list-6 .grid-item:first-child .blog-item:nth-child(1) .blog-item__image {
  height: 300px;
}

.blog-list-6 .grid-item:last-child .blog-item:nth-child(1) .blog-item__image {
  height: 450px;
}

.blog-list-6 .grid-item:first-child .blog-item:nth-child(2) .blog-item__image {
  height: 450px;
}

.blog-list-6 .grid-item:last-child .blog-item:nth-child(2) .blog-item__image {
  height: 300px;
}

.blog-list-6 .grid-item:first-child .blog-item:nth-child(3) .blog-item__image {
  height: 450px;
}

.blog-list-6 .grid-item:last-child .blog-item:nth-child(3) .blog-item__image {
  height: 450px;
}

.blog-detail ul {
  margin: 20px 0;
}

.blog-detail h4,
.blog-detail h3,
.blog-detail h2 {
  margin-top: 120px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/*--CATEGORY_PAGE--*/
.categories,
.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.categories_item a,
.tab {
  padding: 10px 30px;
  background: var(--light-gray);
  border-radius: 900px;
  transition: .3s;
  display: inline-block;
  box-sizing: border-box;
}

.categories_item a:hover,
.tab:hover {
  background: var(--pink);
  color: var(--white);
}

.init-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.show-more {
  display: flex;
  gap: 20px;
  align-items: center;
}

/*--PAGINATION--*/
.pagination-list {
  display: flex;
  align-items: center;
}

.pagination-list_item {
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  list-style-type: none;
  border-radius: 50%;
}

.pagination-list_item.active {
  background: var(--pink);
  color: var(--white);
}

/*--MK--*/
.mk-item {
  position: relative;
  height: 700px;
  background-size: cover;
  background-position: center;
}

.mk-item img {
  display: block;
}

.mk_link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, .8) 100%);
  text-align: center;
  padding: 40px 40px 20px;
  opacity: 1;
  transition: .3s;
}

.mk-item:hover .mk_link {
  opacity: 1;
}

/*--popup--*/
.popup-div {
  position: relative;
  width: 500px;
  height: 100vh;
  margin-left: auto;
  margin-right: 0;
  padding: 15px;
}

.popup-div-product {
  position: relative;
  max-width: 570px;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: 0;
  padding: 15px;
}

.popup-div-product .popup-content {
  padding: 75px 25px;
}

.popup-content {
  border-radius: 20px;
  background: var(--white);
  height: 100%;
  padding: 50px 25px;
  overflow: auto;
}

.popup-dop-info {
  padding: 16px;
  border-radius: 8px;
  background: var(--light-gray);
}

.mfp-close-btn-in .mfp-close {
  width: 40px;
  height: 40px;
  background: url(../images/close-popup.svg);
  background-size: cover;
  background-position: center;
  font-size: 0;
  top: 30px;
  right: 30px;
  opacity: 1;
}

/*--PRODUCT--*/
/*.product-gallery {
  display: flex;
}*/

.product-gallery .slick-next {
  right: 475px;
}

.product-gallery .slick-list {
  padding: 0 20% 0 0;
}

.product-gallery img {
  width: 100%;
  max-height: 90vh;
}

.product-gallery_item {
  padding: 0 5px;
}

.product-form_absolute {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 100%;
  width: 100%;
  max-width: 405px;
}

.product-form {
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  position: sticky;
  top: 100px;
}

.product-form select {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--stroke);
  height: 48px;
  padding: 10px 0;
}

/*--POST--*/
.post-titleblock {
  background: var(--light-gray);
  height: 100%;
  padding: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.post-date {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  text-align: center;
}

.post-date p {
  border-top: 1px solid;
  padding-top: 10px;
  display: inline-block;
}


/*--CART--*/
.empty-cart {
  min-height: 80vh;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cart-item {
  border-top: 1px solid var(--stroke);
  padding: 20px 0;
  position: relative;
}

.cart-item_price {
  width: 135px;
  text-align: right;
}

.cart-item_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item_remove {
  position: absolute;
  right: 0;
  top: 20px;
}

.quantity-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 105px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 10px;
}

.quantity-input input {
  text-align: center;
  display: block;
  width: 100%;
  bordeR: none;
}

.cart-item_price {
  display: flex;
  align-items: end;
  justify-content: end;
}

.total-block .coupon input {
  padding: 15px;
  border: 1px dashed var(--light-text);
  display: block;
  width: 100%
}

.total-block .total {
  padding-top: 25px;
  border-top: 1px solid var(--stroke);
}

.total-block .buttons .btn {
  width: 100%;
  text-align: center;
  padding: 15px;
  margin-bottom: 5px;
}

/*--SLICK--*/
.slick-dots {
  bottom: 15px;
}

.slick-dots li button:before {
  content: '♦';
  font-size: 18px;
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 99;
}

.slick-prev {
  left: 20px;
}

.slick-prev:before {
  display: block;
  content: '';
  width: 40px;
  height: 40px;
  background: url(../images/slider_arrow_left.svg);
}

.slick-next {
  right: 20px;
}

.slick-next:before {
  display: block;
  content: '';
  width: 40px;
  height: 40px;
  background: url(../images/slider_arrow_right.svg);
}


.absolute-text {
  position: relative;
}

.absolute-text p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
}

.section-rings {
  position: relative;
  background: var(--light-gray);
  padding: 90px 0;
}

.section-rings .btn-border {
  padding: 15px 80px;
}

.section-rings_1 {
  position: absolute;
  left: 0;
  top: 0;
  max-height: 100%;
}

.section-rings_2 {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
}


.product-list .grid-item.catalog-image {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;
}

.product-list .grid-item.catalog-image_2 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 6;
}

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

.breadcrumbs-arrow {
  margin: 0 5px;
}

/*ФОРМА КАЛЬКУЛЯТОРА*/
.custom-select select {
  display: none;
}

.custom-select {
  position: relative;
  font-family: var(--font-1);
  width: 100%;
  height: 48px;
  border-bottom: 1px solid var(--stroke);
  ;
}

.select-items div,
.select-selected {
  cursor: pointer;
  user-select: none;
  font-style: normal;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 12px 16px;
}

.select-items div:hover,
.select-items div.same-as-selected {
  background: var(--pink);
  color: var(--white);
}

.select-items {
  position: absolute;
  background: #fff;
  top: 110%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 8px;
  box-shadow: 0px 4px 24px 0 #6771783D;
}

.select-hide {
  display: none;
}

.card-select-main-choose-drop .select-items {
  width: 100%;
}

.card-select-main-choose-drop .select-items {
  max-height: 130px;
  overflow-y: scroll;
}

/*WORKSHOP*/
.workshops-item img {
  border-radius: 8px;
}

.workshops-item__image {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

.workshops-item:nth-child(2n+1) .workshops-item__image {
  width: 600px;
  height: 600px;
}

.workshops-item:nth-child(2n+2) .workshops-item__image {
  width: 300px;
  height: 300px;

}

.workshops-item:nth-child(2n+3) .workshops-item__image {
  width: 370px;
  height: 370px;
}

.workshop-steps .workshop-step-item {
  flex-flow: row wrap;
  display: none;
  overflow: hidden;
}

.workshop-steps .workshop-step-item.current {
  display: block;
}

.workshop-steps-navs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.workshop-steps-nav-item.current {
  color: var(--pink);
  position: relative;
}

.workshop-steps-nav-item.current:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--pink);
  display: block;
  bottom: -11px;
  left: 0;
}

.workshop-steps .workshop-step-item.current .grid-2 .btn {
  width: auto;
}

.workshop-step-item img {
  border-radius: 8px;
}

.workshop-step-item .btn-gray span {
  display: flex;
  align-items: center;
}

.workshop-step-item .btn-gray svg {
  margin-left: 10px;
}

.desctiption-workshop p {
  margin-bottom: 20px;
}

.desctiption-workshop~.btn {
  width: auto;
}

/*MAP*/
.point-map {
  width: 100%;
  max-width: 1110px;
  margin: auto;
  position: relative;
}

.point-map-holder {
  position: relative;
}

.point-map .point-map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  display: block;
  width: 44px;
  height: 40px;
  background-size: contain;
  background-position: center center;
  cursor: pointer;
  transition: 0.3s transformcubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.point-map .point-map-marker--filial {
  background-image: url(../images/marker.svg);
  background-size: cover;
}

/*video-popup*/
.video-popup {
  position: relative;
}

.video-popup a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*MK*/
.banner_mk {
  position: relative;
}

.banner_mk .main-banner_item {
  position: relative;
  height: 760px;
}

.banner_mk .main-banner_item .container {
  height: 85%;
}

.banner_mk .main-banner_item:before {
  content: '';
  display: block;
  position: absolute;
  background: var(--text);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .23;
}

.d-none {
  display: none !important;
}


.contact-metro {
  display: flex;
  align-items: center;
}

.contact-metro svg {
  margin-right: 5px;
}

.contact-metro__step {
  display: flex;
  margin-left: 10px;
  align-items: center;
}

.shop-item-photo img {
  border-radius: 8px;
}

.facts_item {
  width: 400px;
  flex: 0 0 auto;
}

#prop_id_65 {
  display: none;
}

.main-article-img {
  min-height: 640px;
  background-size: cover;
  background-position: center;
}


.page-popup {
  width: 100%;
  max-width: 540px;
  border-radius: 20px;
  padding: 75px 25px;
  position: relative;
  margin: auto;
  background: var(--white);
}

.service_item img {
  border-radius: 8px;
}

.limk-route {
  display: flex;
  align-items: center;
}

.limk-route span {
  margin-left: 10px;
  border-bottom: 1px dashed;
}

/*BASKET*/
.basket-table-item {
  display: grid;
  grid-template-columns: 210px 1fr 140px;
  grid-gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--stroke);
}

.basket-table-item:last-child {
  border-bottom: 1px solid var(--stroke);
}

.busket-table-item-product-icon {
  border-radius: 8px;
}

.busket-table-item-product-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.busket-table-item-price-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}

.busket__number-btn {
  display: flex;
  cursor: pointer;
}

.busket__item-number {
  border: 1px solid var(--light-gray);
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  gap: 8px;
  max-width: 110px;
}

.conclusion-total-final {
  border-top: 1px solid var(--stroke);
  padding-top: 30px;

}

.busket-table-item-delete {
  cursor: pointer;
}

.conclusion-link-row .btn {
  padding: 15px;
  width: 100%;
  text-align: center;
}

.busket-promocode-row {
  position: relative;
}

.busket-promocode {
  padding: 15px 10px;
  border: 1px dashed var(--light-text);
  width: 100%;
  outline: none;
}

.busket-promocode-btn {
  background: transparent;
  border: none;
  position: absolute;
  right: 10px;
  top: 14px;
}

/*CALCULATOR*/
.calculator-page {
  height: 100vh;
}

.calculator-page .main-banner_item__title {
  bottom: 30%;
}

.calculator-page .btn {
  padding: 15px 30px;
  margin-right: 15px;
}

.calculator-list {
  max-width: 425px;
}

.popup-calculate {
  max-width: 1440px;
  margin: auto;
  position: relative;
  background-color: #fff;
  background-image: url(../images/calculator/calculate-popup_bg.png);
  background-size: cover;
  background-position: center;
  /*min-height: 765px;*/
}

.popup-calculate_end {
  background-image: url(../images/calculator/ty-bg.png);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-calculate_head {
  text-align: center;
  padding: 30px;
}

.popup-calculate_footer {
  padding: 30px;
  border-top: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.pagination_popup-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--text);
  margin: 0 10px;
}

.popup-calculate_main {
  padding: 30px;
}

.calculator_item {
  text-align: center;
}

.calculator_item-image__big {
  height: 460px;
  background-size: contain;
  background-position: center;
  margin-bottom: 10px;
  background-repeat: no-repeat;
  background-color: #fff;
}

.calculator_item-image__small {
  height: 210px;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;

}

.popup-calculate_main select {
  width: 100%;
  height: 72px;
  background: var(--light-gray);
  border-radius: 8px;
  padding: 0 16px;
  border: none;
}

.popup-calculate_main form {
  max-width: 490px;
  margin: auto;
}

.popup-calculate_main form input,
.popup-calculate_main form select {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  height: 48px;
  padding: 0 15px;
  background: var(--white);
}

.calculate-page {
  margin-bottom: 0;
}

.matovka_step,
.color_step {
  display: none;
}

.form-item_radio-popup .form-item {
  display: inline-block;
  margin-right: 10px;
}

.form-item_radio-popup .form-item input {
  display: none;
}

.form-item_radio-popup .form-item label {
  padding: 10px 30px;
  background: var(--light-gray);
  border-radius: 900px;
  transition: .3s;
  display: inline-block;
  box-sizing: border-box;
}

.form-item_radio-popup .form-item input:checked~label {
  background: var(--pink);
  color: var(--white);
}

.form-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.form-checkbox input {
  width: auto !important;
}

.header-dop-info {
  padding: 10px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  border-top: 1px solid var(--light-text);
}

/*Персонализация*/
.personalization {
  margin: auto;
  position: relative;
  background-color: #fff;
  background-image: url(../images/calculator/calculate-popup_bg.png);
  background-size: cover;
  background-position: center;
}

canvas {
  display: block;
  width: 100%;
  height: auto;
}

.w-100 {
  width: 100%;
  text-align: center;
}

.reviews_item_mk,
.reviews_item_mk {
  width: auto;
}

.gift-certificate-select-1 .select-items {
  max-height: 400px;
  overflow: auto;
  z-index: 9;
}

#set_price_field,
.product-form .quantity {
  display: none !important;
}

.polycy-checkbox label {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-gap: 10px;
}