* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
}
:root {
  --title-font: "STIX Two Text", serif;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
body.lock {
  overflow: hidden;
}
button,
input,
textarea {
  background-color: transparent;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
main {
  position: relative;
}
.row {
  margin-left: 0;
  margin-right: 0;
}
.navigation-row {
  padding: 20px 40px;
  border-top: 1px solid #193026;
  border-bottom: 1px solid #193026;
}
@media (max-width: 576px) {
  .navigation-row {
    padding: 20px 16px;
  }
}
.btn-primary {
  color: #141414;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 1px;
  background-color: #fff;
  transition: color .3s ease-in, background-color .3s ease-in;
/*
  position: absolute;
  bottom: -329px;*/
}
.btn-primary:hover {
  color: #fff;
  background-color: #193026;
}
@media (max-width: 768px) {
  .new-collection__inner {
    position: relative;
    padding-bottom: 55px;
  }
}
.new-collection__inner .new-collection__head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--Green,#193026);
}
.new-collection__inner .new-collection__head .h3 {
  color: var(--Black,#141414);
  font-family: var(--title-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 40px;
}
@media (max-width: 576px) {
  .new-collection__inner .new-collection__head .h3 {
    font-size: 24px;
    line-height: 133%;
    padding-left: 16px;
  }
}
.new-collection__inner .new-collection__nav {
  display: flex;
}
@media (max-width: 768px) {
  .new-collection__inner .new-collection__nav {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 56px;
    z-index: 10;
  }
}
.new-collection__inner .new-collection__nav .new-collection__link {
  color: var(--White,#FFF);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  border: 1px solid var(--Green,#193026);
  background: var(--Green,#193026);
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .new-collection__inner .new-collection__nav .new-collection__link {
    width: 100%;
  }
}
.new-collection__inner .new-collection__nav .collection-arrows {
  display: flex;
}
.new-collection__inner .new-collection__nav .collection-arrows .collection-arrow {
  padding: 8px 16px;
  min-width: 56px;
  border: 1px solid var(--Green,#193026);
}
.new-collection__inner .new-collection__nav .collection-arrows .collection-arrow-prev {
  border-right: none;
}
.product-carts__items .product-carts__item {
  border: 1px solid var(--Green,#193026);
  background-color: #ffffff;
  max-width: 390px;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
  position: relative;
  border-top: 0;
}

.product-carts__items .product-carts__item .product-carts__item-image {
  max-width: 185px;
  width: 100%;
  /* height: 242px; */
  height: 253px;
  margin-bottom: 20px;
}

@media (min-width: 993px) {
  .product-carts__items .product-carts__item {
    height: 375px;
  }
 
  .product-carts__items .product-carts__item .product-carts__item-image {
        max-width: fit-content;
        width: 100%;
        height: 265px;
  }
}
@media (min-width: 1200px) {
  .product-carts__items .product-carts__item {
    height: 450px;
  }
  .product-carts__items .product-carts__item .product-carts__item-image {
        max-width: fit-content;
        width: 100%;
        height: 338px;
  }
}
@media (min-width: 1500px) {
  .product-carts__items .product-carts__item {
    height: 528px;
  }
  .product-carts__items .product-carts__item .product-carts__item-image {
        max-width: fit-content;
        width: 100%;
        height: 410px;
  }
}
@media (min-width: 1700px) {
  .product-carts__items .product-carts__item {
    height: 672px;
  }
  .product-carts__items .product-carts__item .product-carts__item-image {
        max-width: fit-content;
        width: 100%;
        height: 500px;
  }
}
@media (min-width: 1900px) {
  .product-carts__items .product-carts__item {
    height: 726px;
  }
  .product-carts__items .product-carts__item .product-carts__item-image {
        max-width: fit-content;
        width: 100%;
        height: 600px;
  }
}



.product-carts__items .product-carts__item .product-carts__item-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.product-carts__items .product-carts__item .product-carts__item-name {
  color: var(--Black,#141414);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
  max-width: 202px;
}
.product-carts__items .product-carts__item .product-carts__item-price {
  color: var(--Black,#141414);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
}
.product-carts__items .product-carts__item:not(:last-child) {
  border-right: none;
}
.product-carts__items .product-carts__item .button-basket__wrap {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  border: 1px solid var(--Green,#193026);
  background-color: var(--Green,#193026);
  margin-bottom: 0;
  border-right: 0;
  border-bottom: 0;
  transition: all .3s;
}
@media (max-width: 992px) {
  .product-carts__items .product-carts__item .button-basket__wrap {
    opacity: 1;
  }
}
.product-carts__items .product-carts__item .button-basket__wrap .product-item-button-container {
  width: 100%;
  height: 100%;
}
.product-carts__items .product-carts__item .button-basket__wrap .product-item-button-container .add__basket {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.product-carts__items .product-carts__item:hover .button-basket__wrap {
  opacity: 1;
  transition: all .3s;
}
.categories-marq__inner {
  display: flex;
  overflow: hidden;
  border-bottom: 1px solid #193026;
}
.categories-marq__inner .categories-marq__title {
  color: var(--Black,#141414);
  font-family: var(--title-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .categories-marq__inner .categories-marq__title {
    display: none;
  }
}
.categories-marq__inner .categories-marq__slider {
  border-bottom: 1px solid var(--White,#FFF);
}
.categories-marq__inner .categories-marq__slider a {
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 32px;
  border: 1px solid var(--White,#FFF);
  background: var(--Green,#193026);
  border-bottom: 0;
  height: 56px;
}
.categories-marq__inner .categories-marq__slider a span {
  color: var(--White,#FFF);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}
.categories-marq__inner .categories-marq__slider a:not(:last-child) {
  border-right: none;
}
.collection-section {
  width: 100%;
}
#bx-panel.customZindex {
  z-index: 2000 !important;
}
.modal {
  position: fixed;
  left: 0;
  top: -130%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  transition: all .3s;
  opacity: 0;
  z-index: -1;
  overflow: auto;
  padding-left: 40px;
  padding-bottom: 40px;
}
div[data-modal="preorder"]{
	width:100%;
	max-width:720px;
	height:355px;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
	background:#ffffff;
	display:block;
	padding:0 0;
}
div[data-modal="preorder"] .modal-close{
	top:0;
}
div[data-modal="preorder"] .modal-inner{
	padding:16px 24px  0;
	max-width:unset;
}
div[data-modal="preorder"] .modal-inner form{
	max-width:unset;
}
div[data-modal="preorder"] .pop-up-title{
	font-size:16px;
	line-height:21px;
	margin-bottom:16px;
}
div[data-modal="preorder"] .pop-up-title span{
	display:block;
	font-size:32px;
	line-height:40px;
}
div[data-modal="preorder"] label{
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #141414;
	margin:0 0;
}
div[data-modal="preorder"] .form-control {
	border-radius:0;
	border-color:#193026;
	height:56px;
	padding: 16px 12px;
	display:flex;
	border-width: 1px;
    border-style: solid;
}
div[data-modal="preorder"] .form-control input{
	flex:1;
	padding-left:10px;
}
div[data-modal="preorder"] .form-control:not(:first-child){
	margin-top:-1px;
}
div[data-modal="preorder"] .form_footer__bottom{
	margin-left:-24px;
	margin-right:-24px;
}
div[data-modal="preorder"] .required-fields-note{
	padding: 0 24px;
}
div[data-modal="preorder"] .error{
	color:#ff0000;
}
div[data-modal="preorder"] [type="submit"], div[data-modal="preorder"] [type="reset"]{
	border: 1px solid var(--Green, #193026);
    background: var(--Green, #193026);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 32px;
    color: var(--White, #FFF);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    height: 56px;
    margin-top: 20px;
	width:50%;
}
div[data-modal="preorder"] [type="reset"]{
	background: #fff;
	color: #193026;
}
.line-block__item{
	display:flex;
}
@media (max-width: 768px) {
  .modal {
    padding: 24px 16px;
  }
  div[data-modal="preorder"] .pop-up-title span{
	font-size: 28px;  
  }
  div[data-modal="preorder"] .error{
	position: absolute;
    bottom: 5px;  
  }
  div[data-modal="preorder"] .form-control{
	position:relative;  
  }
}
.modal .modal-close {
  position: absolute;
  right: 0;
  top: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  background-color: #fff;
  gap: 10px;
  padding: 20px 32px;
}
@media (max-width: 992px) {
  .modal .modal-close {
    border-bottom: 1px solid #193026;
    border-left: 1px solid #193026;
    width: 56px;
    height: 56px;
    padding: 0;
  }
  .modal .modal-close span {
    display: none;
  }
}
.modal .modal-inner {
  border-radius: 5px;
  padding: 25px;
  min-height: 150px;
  position: relative;
  max-width: 600px;
  width: 100%;
  padding-top: 50px;
}
@media (max-width: 768px) {
  .modal .modal-inner {
    padding: 0;
  }
}
.modal .modal-inner .modal-content__title {
  color: var(--White,#FFF);
  font-family: "STIX Two Text";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .modal .modal-inner .modal-content__title {
    font-size: 32px;
    line-height: 125%;
  }
}
.modal .modal-inner .modal-content__description {
  color: var(--White,#FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 40px;
}
.modal .modal-inner .form-title {
  color: var(--White,#FFF);
  font-family: "STIX Two Text";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 16px;
}
.modal .modal-inner form {
  max-width: 358px;
}
@media (max-width: 576px) {
  .modal .modal-inner form {
    max-width: none;
  }
}
.input-wrap {
  border: 1px solid var(--Green,#193026);
  background: var(--White,#FFF);
  height: 56px;
}
.input-wrap input {
  color: var(--Black,#141414);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  padding: 8px 16px;
  display: block;
  width: 100%;
  height: 100%;
}
 .submit {
  border: 1px solid var(--Green,#193026);
  background: var(--Green,#193026);
  color: var(--White,#FFF);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  margin-bottom: 16px;
  width: 100%;
}
 .form-address {
  overflow: hidden;
  color: #FFF;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.modal.active {
  transition: all .3s;
  /*top: 0;*/
  opacity: 1;
  z-index: 12;
}
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: none;
  background:rgba(0,0,0,0.3);
}
.overlay img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .overlay img {
    object-position: 67% center;
  }
}
.overlay.active {
  display: block;
  z-index: 11;
}
.thx-wrapper {
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thx-wrapper .thx-content {
  display: flex;
  flex-direction: column;
}
.thx-wrapper .thx-content .thx-content__title {
  color: var(--Black,#141414);
  font-family: "STIX Two Text";
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px;
  margin-bottom: 8px;
}
.thx-wrapper .thx-content__text {
  overflow: hidden;
  color: #888;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  max-width: 400px;
  margin-bottom: 20px;
}
.thx-wrapper .exit-url {
  color: var(--Black,#141414);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
footer {
  border-top: 1px solid #193026;
}
footer .footer__inner {
  min-height: 56px;
  background-color: #193026;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
}
@media (max-width: 1206px) {
  footer .footer__inner {
    flex-direction: column;
  }
  footer .footer__inner nav {
    width: 100%;
  }
  section.development-banner {
    /*height: 700px; */
    height: calc(100vh - 225px);
    /*display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;*/
  }
}
footer .footer__inner .footer__logo {
  padding: 0 10px;
  margin-left: 40px;
  max-width: 330px;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer__inner .footer__logo img {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1206px) {
  footer .footer__inner .footer__logo {
    margin-left: 0;
  }
}
footer .footer__inner .footer__links {
  display: flex;
  align-items: center;
}
@media (max-width: 1206px) {
  footer .footer__inner .footer__links {
    flex-direction: column;
    width: 100%;
  }
  footer .footer__inner .footer__links li {
    width: 100%;
  }
}
footer .footer__inner .footer__links a {
  text-align: center;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #193026;
  padding: 8px 40px;
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #141414;
  background-color: #fff;
  border-left: 1px solid #193026;
  transition: background-color 0.2s ease-in, color 0.2s ease-in, border-color 0.2s ease-in;
}
footer .footer__inner .footer__links a:hover {
  color: #ffffff;
  background-color: #193026;
  border-color: #fff;
}
@media (max-width: 1206px) {
  footer .footer__inner .footer__links a {
    border-top: 1px solid #193026;
    border-left: none;
  }
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex-grow: 1;
}
.reconstruction {
  position: fixed;
  z-index: 999;
  /*display: flex;*/
  display: none;
  left: 0;
  top: 57px;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .reconstruction {
    flex-direction: column;
  }
}
.reconstruction .reconstruction-image {
  flex: 0 0 50%;
  width: 100%;
}
@media (max-width: 1200px) {
  .reconstruction .reconstruction-image {
    flex: auto;
  }
}
@media (max-width: 450px) {
  .reconstruction .reconstruction-image {
    height: 200px;
  }
}
.reconstruction .reconstruction-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.reconstruction .reconstruction-form {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-left: 6%;
}
@media (max-width: 1200px) {
  .reconstruction .reconstruction-form {
    margin: 0 auto;
    z-index: 3;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
    padding-top: 20px;
  }
}
.reconstruction .reconstruction-form .reconstruction-form__title {
  color: #030303;
  text-align: center;
  font-family: "STIX Two Text";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  max-width: 480px;
}
@media (max-width: 450px) {
  .reconstruction .reconstruction-form .reconstruction-form__title {
    font-size: 25px;
    line-height: 100%;
  }
}
.reconstruction .reconstruction-form .reconstruction-form__description {
  color: var(--Black,#141414);
  text-align: center;
  font-family: 'Inter';
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  max-width: 480px;
  margin-bottom: 40px;
}
.reconstruction .reconstruction-form form {
  max-width: 480px;
  width: 100%;
}
.reconstruction .reconstruction-form .rec-form__wrap {
  max-width: 480px;
  width: 100%;
}
.bx-authform{
  margin: 70px auto;
}
/*header {
  pointer-events: none;
}
body {
  overflow: hidden;
}*/


/* page 404*/

.development-banner {
  background: url('../img/background404.jpg') center/cover no-repeat;
  /*height: 664px;*/
  height: calc(100vh - 113px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.development-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 300px;
  width: 100%;
}

.banner-title {
  font-size: 64px;
  line-height: 72px;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: "STIX Two Text", serif;
}

.banner-button {
  position: absolute;
  bottom: 71px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 88px;
  height: 32px;
  line-height: 16px;
  padding: 8px 16px;
  background-color: #ffffff;
  color: #141414;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  border-radius: 1px;
  transition: color .3s ease-in, background-color .3s ease-in;
  font-family: "Inter", sans-serif;
}

.banner-button:hover {
  color: #fff;
  background-color: #193026;
}

@media (max-width: 1400px) {
    .banner-content{
      padding: 0 30px;
    }
}
@media (max-width: 767px) {
 

  .banner-content {
    padding: 0 16px 24px;
    width: 92%;
    font-size: 32px;
  }

  .banner-title {
    font-size: 24px;
    line-height: 1.4;
    margin: 0 0 8px;
  }

  .banner-button {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    margin: 0 0 16px 16px;
    padding: 8px 16px;
  }
.footer_inn {
   margin-bottom: 15px;
}


}

.footer_inn {
    font-size: 16px;
    color: #fff;
}


.soglasiya {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
	line-height: 21px;
}

.soglasiya h2 {
    padding: 10px 0 10px 0;
}
.soglasiya h3 {
    padding: 10px 0 10px 0;
}


/* /404 */