/***************************************************              GENERAL RESET STYLES             ***************************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
* {box-sizing: border-box;}
*:focus {outline: none;}
body {line-height:1;}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav ul {list-style:none;}
ol, ul {
	list-style: none;
	margin:0;
	padding:0;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
		text-decoration:none;
}
a:hover {text-decoration:none;}
table {
    border-collapse:collapse;
    border-spacing:0;
}
img {
	border-style:none;
	max-width:100%;
}
form fieldset {
	margin:0;
	padding:0;
	border:none;
}
input, textarea, select {
	vertical-align:middle;
	color:#000;
	padding:0;
}
input, select {vertical-align:middle;}
input::-webkit-input-placeholder{color:#000;}
input:focus::-webkit-input-placeholder{color:#000;}
/*
@media (min-width: 1921px){}
@media (width: 1920px){}
@media (min-width: 1440px) and (max-width: 1919px) {}
@media (min-width: 1360px) and (max-width: 1439px) {}
@media (min-width: 1280px) and (max-width: 1359px) {}
@media (min-width: 1024px) and (max-width: 1279px) {}
@media (min-width: 768px) and (max-width: 1023px) {}
@media (min-width: 375px) and (max-width: 767px) {}
@media (min-width: 320px) and (max-width: 374px) {}
*/
/*
@media (max-width: 1919px) {}
@media (max-width: 1439px) {}
@media (max-width: 1279px) {}
@media (max-width: 767px) {}
*/
.wrapper {
	display:block;
	position:relative;
	width:100%;
	height:100%;
}
.layout {
  display: block;
  overflow: hidden;
  width:1240px;
	margin: 0 auto 0 auto;
}
@media (max-width: 1279px) {
  .layout{
    width: 96%;
  }
}
@media (max-width: 767px) {
  .layout{
    width: 96%;
  }
}
header,
main,
footer,
section {
  display: block;
  position:relative;
  overflow: hidden;
  width: 100%;
}
img{
  display: block;
  width: 100%;
  height: 100%;
}
main{
  z-index: 1;
  position: relative;
  /* position: sticky;
  position: absolute;
  position: static;
  position: inherit; */
  padding: 114px 0 0 0;
}
header{
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  height: 114px;
  box-shadow: 0 0 15px 0 #333333;
  background-color: #ffffff;
  /* margin: 20px 20px 20px 20px; */
  /* margin: 0 20px 10px; horizontal */
  /* margin: 10px 20px; */
  /* margin: 20px; */
  /* margin-top: 0;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-left: 0; */
  /* padding: 20px 20px 20px 20px; */
}
@media (max-width: 430px){
  header{
    height: 70px;
  }
}


header.visible{
  overflow: visible;
}
header.visible .layout{
  overflow: visible;
}
header .logo{
  float: left;
  margin: 15px 0 0 0;
}
header .logo a{
  display: block;
  width: 166px;
  height: 84px;
}
@media (max-width: 430px){
  header .logo a {
    width: 80px;
      height: 40px;
  }
}
h1{
  text-indent: -9999px;
}
header nav{
  float: right;
  position: relative;
  /* padding: 32px 0 0 0; */
}
@media (max-width: 1024px){
  header nav{
    display: none;
  }
}
.menu {
  display: none;
}
@media (max-width: 1024px){
  .menu {
      display: block;
    }
}
.menu_button {
  width: 50px;
  height: 26px;
  display: flex;
  position: fixed;
  z-index: 2;
  top: 44px;
  right: 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media (max-width: 767px){
  .menu_button{
    top: 22px;
  }
}
.menu_button span {
   height: 2px;
   width: 50px;
   background-color: #333;
   transition: background-color .3s;
   transition: all ease-in-out 1000ms;
  }
.burger {
  /* display: none; */
    flex-direction: column;
    height: 200px;
    width: 200px;
    background-color: #CAB79C;
    border-radius: 6px;
    /* overflow-y: auto; */
    padding: 9px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2;
    transform: translateY(-100%);
    transition: all ease-in-out 1000ms;
    display: flex;
}
.burger.menu--open {
  transform: translateY(0%);
}
.burger li{
  display: block;
  margin: 14px 4px;
}
.burger li img{
  float: left;
  overflow: hidden;
  width: 18px;
  height: 18px;
}
.burger li a{
  font-size: 14px;
  line-height: 24px;
  margin: 9px;
  text-decoration: none;
  color: #333333;
  font-family: "manrope";
  font-weight: 600;
}
.close {
  /* width: 21px;
  height: 21px; */
  cursor: pointer;
}
.close img{
  float: right;
  border-style: none;
  width: 21px;
}

 header nav .catalog{ 
  float: left;
  margin: 32px 63px 0 0;
  padding: 0 0 0 39px;
  line-height: 50px;
  color: #333333;
  font-family: "manrope";
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  width: 181px;
  height: 50px;
  background-color: #CAB79C;
  background-image: url(../images/ico-4.png);  
  background-repeat: no-repeat;
  background-position: 18px 19px;
  background-size: 11px 11px; 
  /* display: inline-block;
  margin: 0 -2px 0 -2px;
  margin: 0 59px 0 0; */
 }
   /* header nav .catalog::before{   */ 
  /* content: '';  */
  /* position: absolute; */
  /* top:50%; */
  @media (max-width: 1279px){
    header nav .catalog{
      display: none;
    }
  }
header .drop_catalog{
  position: absolute;
  display: block;
  overflow: hidden;
  width: 403px;
  height: 0px;
  top: 82px;
  left: 0;
  background-color: #C8BDAE;

}
header .drop_catalog.open{
  height: 390px;
}
header .drop_catalog span{
  width: 50%;
  height: 70px;
  background-color: #333333;
  background-image: url(../images/ico_catalog_drop_down.png);
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size:20px 14px ;
  /* background-color: #CAB79C; */
  color:#CAB79C ;
  padding: 0 0 0 17px;
  line-height: 70px;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
header .drop_catalog span.active{
  background-image: url(../images/ico_catalog_drop_up.png);
  background-color: #CAB79C;
  color: #333333;
}
header .drop_catalog .drop_list{
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 0;
}
header .drop_catalog .drop_list.side{
    height: 390px;
}
header .drop_catalog .drop_list p{
  width: 50%;
  height: 70px;
  /* background-color: #CAB79C; */
  color:#333333 ;
  padding: 0 0 0 20px;
  line-height: 70px;
  display: block;
  overflow: hidden;
}
header nav .visitors{
  float: left;
  margin: 32px 60px 0 0;
  padding: 0 20px 10px 10px;
  line-height: 50px;
  color: #333333;
  font-family: "manrope";
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  width: 140px;
  height: 50px;
  position: relative;

  -webkit-transition: all 1000ms ease-in-out;
  -moz-transition: all 1000ms ease-in-out;
  -ms-transition: all 1000ms ease-in-out;
  -o-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}
@media (max-width: 1279px) {
  header nav .visitors{
    display: none;
  }
}
/* @media (max-width: 767px) {
  header nav .visitors{
    display: none;
  }
} */
header nav .visitors::after{
  background-image: url(../images/ico-arrow-down2.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 12px 7px;
  width: 12px;
  height: 7px;
  content: '';
  position: absolute;
  top:calc(50% - 4px);
  /* border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #333333; */

  padding-left: 3px;
  /* transform: rotate(45deg); */
  margin: 2px;
}
header nav .visitors:hover {
  background-color: #CAB79C;
  color: #333333;
}

header .drop_catalog_vis{
  position: absolute;
  display: block;
  overflow: hidden;
  width: 403px;
  height: 0px;
  top: 82px;
  left: 0;
  background-color: #C8BDAE;

}
header .drop_catalog_vis.open{
  height: 280px;
}
header .drop_catalog_vis a{
  width: 100%;
  height: 70px;
  background-color: #333333;
  color:#CAB79C ;
  padding: 0 17px 0 17px;
  line-height: 70px;
  display: block;
  overflow: hidden;
  cursor: pointer;
  text-align: right;
}







header nav .search{
  float: left;
  margin: 32px 0 0 0;
  /* background: #ff0000 url(../images/ico-telegram.png) 58px 9px no-repeat;
  background-color: #ff0000;
  background-image: url(../images/ico-telegram.png);
  background-position: 58px 9px;
  background-repeat: no-repeat;
  background-size: cover; */
}
header nav .search{
  position: relative;
  float: left;
  margin: 32px 69px 32px 0;
  width: 395px;
   border: 1px solid rgb(202, 183, 156);
   border-radius: 4px;
}
/* @media (max-width: 1279px) {
  header nav .search{
    width: 24px;
    border: none;
  }
} */
@media (max-width: 767px) {
  header nav .search{
    width: 24px;
    border: none;
  }
}
header nav .search form{
  position: relative;
}
header nav .search img {
  position: absolute;
  display: block;
  overflow: hidden;
  z-index: 1;
  top: 12px;
  /* bottom: ; */
  left: 9px;
  /* right: ; */
  width: 24px;
  height: 24px;
}
header nav .search input{
  z-index: 1;
  text-align: left;
  width: 300px;
  padding: 0 0 0 52px;
  line-height: 50px;
  float: left;
  height: 50px;
  color: rgba(51, 51, 51, 0.7);
  font-family: Manrope;
  font-weight: 200;
  border: none;
}
/* @media (max-width: 1279px) {
  header nav .search input{
    display: none;
  }
} */
@media (max-width: 767px) {
  header nav .search input{
    display: none;
  }
}
header nav .search input:focus{
  font-size: 40px;
}
header nav .search button{
  width: 93px;
  height: 50px;
  float: right;
  line-height: 50px;
  background-color: #CAB79C;
  font-size: 15px;
  text-align: center;
  border: none;
  padding: 0 0 0 0;
  cursor: pointer;
  -webkit-transition: all 1000ms ease-in-out;
    -moz-transition: all 1000ms ease-in-out;
    -ms-transition: all 1000ms ease-in-out;
    -o-transition: all 1000ms ease-in-out;
    transition: all 1000ms ease-in-out;
}
/* @media (max-width: 1279px) {
  header nav .search button{
    display: none;
  }
} */
@media (max-width: 767px) {
  header nav .search button{
    display: none;
  }
}
header nav .search button:hover{
  background-color: #ffffff;
  color: #333333;

}
/* @media (min-width: 1440px) and (max-width: 1919px) {
  header nav .search button:hover{
    background-color: #69b450;
  }
} */
header nav ul{
  float: left;
  margin: 42px 0 0 0;
}
header nav li{
  margin: 0 20px 0 0;
  float: left;
}
header nav li:last-child{
  margin: 0 13px 0 0;

}
header nav li a{
  display: block;
  overflow: hidden;
}
header nav li:first-child a{
  width: 30px;
  height: 30px;
}
header nav li:nth-child(2) a{
  margin: 8px 0 0 0;
  width: 26px;
  height: 22px;
}
header nav li:last-child a{
  margin: 9px 0 0 0;
  width: 21px;
  height: 21px;
}

main #content {
  display: block;
  width: 100%;
  align-items: center;
  margin: 40px 0 40px 0;
}
@media (max-width: 767px){
  main #content{
    margin: 0px 0 40px 0;
  }
}

main .first_view {
  text-align: center;
  margin: 0 0 40px 0;
  width: 100%;
  position: relative;
}
main .first_view .img-holder {
  width: 100%;
  height: 699px;
  position: relative;
}
@media (max-width: 1024px){
  main .first_view .img-holder{
    height: auto;
  }
}
main .first_view h4 {
  position: absolute;
  display: block;
  top: 13px;
  left:28px ;
  width: calc(100% - 28px - 28px);
  font-family: "Passions Conflict", cursive;
  font-size: 300px;
  font-weight: 400;
  color: #333333;
}
@media (max-width: 1024px){
  main .first_view h4{
    font-size: 220px;
    top: 33px;
  }
}
@media (max-width: 430px){
  main .first_view h4{
    font-size: 80px;
    top: 0;
  }
}
main .first_view p {
  position: absolute;
  display: block;
  width: 331px;
  height: 175px;
  bottom: 21px;
  left: 318px;
  font-family: "Manrope", sans-serif;
  font-size: 128px;
  font-weight: 900;
  color: #CAB79C;
}
@media (max-width: 1024px) {
  main .first_view p {
    font-size: 100px;
  }
}
@media (max-width:430px) {
  main .first_view p {
    font-size: 34px;
    top:160px;
    left:140px;
  }
}
main .first_view p em {
  position: absolute;
  display: block;
  width: 40px;
  height: 42px;
  top: 30px;
  left: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 31px;
  font-weight: 900;
  color: #CAB79C;
  font-style: normal;
}
@media (max-width: 1024px) {
  main .first_view p em {
    font-size: 22px;
    left: 37px;
  }
}
@media (max-width: 430px) {
  main .first_view p em {
    font-size: 10px;
    left: 109px;
    top:5px;
  }
}
.special_offer h3 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 900;
  font-style: normal;
  margin: 0 0 40px 0;
}
.new_items h3 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 900;
  font-style: normal;
  margin: 0 0 40px 0;
}
.last_view_items h3 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 900;
  font-style: normal;
  margin: 0 0 40px 0;
}
.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 40px 0;
}
@media (max-width:1024px){
   .list {
    margin: 0px 120px 40px 120px;
  }
}
@media (max-width:768px) {
  .list {
    margin:  40px;
  }
}
@media (max-width:430px){
  .list {
      margin: 0px;
    }
}
.list li{
  position: relative;
  width: 288px;
}
@media (max-width:767px){
  .list li{
    width: 178px;
  }
}
.list li .pin{
  position: absolute;
  display: block;
  top: 13px;
  left: 13px;
  width: 66px;
  height: 32px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  line-height: 32px;
  border-radius: 16px;
  background-color:#982A2A ;
  cursor: pointer;
}
@media (max-width:767px){
  .list li .pin{
    width: 46px;
      height: 22px;
      font-size: 12px;
      line-height: 21px;
  }
}
.list li .favorites{
  position: absolute;
  display: block;
  top: 16px;
  right: 15px;
  width: 26px;
  height: 22px;
  cursor: pointer;
}
.list li .img-holder{
  display: block;
  width: 288px;
  height: 332px;
  margin: 0 0 6px 0;
  overflow: hidden;
}
@media (max-width: 767px){
  .list li .img-holder{
  width: 180px;
  height: 220px;
  }
}
.list h4{
  display: block;
  width: 100%;
  min-height: 54px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  font-style: normal;
  text-align: left;
  margin:0 0 10px 0;
}
@media (max-width: 767px){
  .list h4{
    font-size: 15px;
  }
}
.list li .rates{
  display: block;
  width: 100%;
  margin: 0 0 8px 0;
  overflow: hidden;
}
.list li .rates img{
  float: left;
  width: 100px;
  height: 18px;
}
@media (max-width: 1024px) {
  .list li .rates img {
    width: 80px;
      height: 14px;
  }
}
.list li .rates p{
  float: left;
}
.list li .row{
  display: block;
  overflow: hidden;
}
.list li .row a{
  float: right;
  width: 94px;
  height: 42px;
  border-radius: 4px;
  line-height: 42px;
  background-color: #CAB79C;
  font-size: 16px;
  text-align: center;
  border: none;
  padding: 0 0 0 0;
  color: #333333;
  cursor: pointer;
  -webkit-transition: all 1000ms ease-in-out;
    -moz-transition: all 1000ms ease-in-out;
    -ms-transition: all 1000ms ease-in-out;
    -o-transition: all 1000ms ease-in-out;
    transition: all 1000ms ease-in-out;
}
.list li .row a:hover{
  background-color: #ffffff;
  color: #333333;
}
.list li:nth-child(2n) .cost{
  color: #982A2A;
}
.list li .cost{
  float: left;
  max-width: calc(100% - 94px);
  line-height: 42px;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}
@media (max-width: 1024px) {
  .list li .cost {
    font-size: 16px;
    min-height: 52px;
  }
}
.list li .cost em{
  display: block;
  width: 100%;
  color: #333333;
  font-size: 16px;
  line-height: 0.7;
  font-weight: 500;
  text-align: left;
  text-decoration: line-through;
}
@media (max-width: 1024px) {
  .list li .cost em{
    font-size: 13px;
  }
}
main .collections {
  text-align: center;
  margin: 0 0 40px 0;
  width: 100%;
  position: relative;
}
main .collections .img-holder {
  width: 100%;
  height: 699px;
  position: relative;
}
@media (max-width: 1024px) {
  main .collections .img-holder {
    height: auto;
  }
}
main .collections h4 {
  position: absolute;
  display: block;
  top: 23px;
  left:106px ;
  width: calc(100% - 106px - 106px);
  font-family: "Passions Conflict", cursive;
  font-size: 128px;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
}
@media (max-width:430px){
  main .collections h4{
  font-size: 80px;
  top: 0px;
    left: 40px;
  }
}
main .collections p {
  position: absolute;
  display: block;
  width: calc(100% - 40px - 40px);
  height: 106px;
  bottom: 41px;
  right: 40px;
  text-align: right;
  font-family: "Passions Conflict", cursive;
  font-size: 96px;
  font-weight: 400;
  color: #ffffff;
}
@media (max-width:430px){
  main .collections p{
    font-size: 50px;
    bottom: 0px;
  }
}
footer{
  background-color: #CAB79C;

  padding: 27px 0 27px 0;
}
footer .column{
  float: left;
  margin: 0 64px 0 0;
  padding: 12px 0 0 0;
}
 @media (max-width: 1279px){
   footer .column{
    float: right;
    margin: 0 160px 0 0;
  } 
}
@media (max-width: 1024px) {
  footer .column {
    margin: 0 160px 0 0;
  }
}
  @media (max-width: 768px) {
    footer .column {
     margin: 0 20px 0 0;
     float: left;
    }
}
 @media (max-width: 430px) {
   footer .column {
     margin: 0 0 0 20px;
     float: left;
   }
 }

footer .column.first{
  margin: 0 116px 0 0;
}
 @media (max-width: 768px) {
   footer .column.first {
     margin: 0 30px 0 20px;
   }
 }
  @media (max-width: 430px){
   footer .column.first {
     margin: 0 0px 0 30px;
   }
 }
footer .column h4{
  display: block;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 20px;
  color: #333333;
  margin: 0 0 10px 0;
}
 @media (max-width: 767px){
  footer .column h4{
    font-size: 15px;
  }
 }
 @media (max-width: 430px) {
   footer .column h4 {
     font-size: 10px;
   }
 }
footer .column a{
  display: block;
  margin: 0 0 15px 0;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}
@media (max-width: 767px) {
  footer .column a{
    font-size: 12px;
    line-height: 12px;
  }
}
@media (max-width: 430px) {
  footer .column a {
    font-size: 8px;
    line-height: 8px;
  }
}
footer .column.logo_f{
  padding: 0 0 0 0;
}
@media (max-width: 1279px) {
  footer .column.logo_f{
    display: none;
  }
}
@media (max-width: 767px) {
  footer .column.logo_f{
    display: none;
  }
}
footer .column a.logo_footer{
  width: 500px;
  height: 227px;
}

footer .column.last{
  float: right;
}
@media (max-width: 767px) {
  footer .column.last{
    float: left;
  }
}
@media (max-width: 430px) {
  footer .column.last{
    margin: 0px 0 0 20px;
    float: left;
  }
  
}
footer .column p{
  display: block;
  margin: 0 0 15px 0;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}
@media (max-width: 767px) {
  footer .column p {
    font-size: 12px;
    line-height: 12px;
  }
}
@media (max-width: 430px) {
  footer .column p {
    font-size:8px;
    line-height: 8px;
  }
}
footer .column ul{
  display: block;
}
footer .column ul li{
  float: left;
  margin: 0 12px 0 0;
}
footer .column ul li a{
  width: 24px;
  height: 24px;
}
@media (max-width: 430px){
  footer .column ul li a {
      width: 18px;
      height: 18px;
    }
}

.breadcrumbs{
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 15px 0 40px 0;
}
/* .breadcrumbs a {
  margin: 40px 0 40px 0;
} */
 @media (max-width: 430px) {
   .breadcrumbs {
     display: none;
   }
 }
.breadcrumbs li{
  float: left;
}
.breadcrumbs li a{
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 14px;
  color: #C2C8C8;
  margin: 0 5px 0 0;
  float: left;
}
@media (max-width: 768px){
.breadcrumbs li a {
  font-size: 12px;
  margin: 0 10px 0 0;
}
}

.breadcrumbs li img{
  width: 14px ;
  height: 14px;
  float: left;
}
.breadcrumbs li a.leather_jacket{
  color: #333333;
}
.breadcrumbs li a img{
  float: left;
  width: 14px;
  height: 14px;
  margin: 0 2px 0 0;
}
.product_card{
  margin: 0 0 40px 0;
}
.product_card .card{
  display: block;
  position: relative;
}
.product_card .card .left_slider{
  width: 75px;
  float: left;
  margin: 0 30px 0 0;
  height: 539px;
  /* z-index: 2; */
}
@media (max-width: 1024px){
  .product_card .card .left_slider{
    margin: 0 10px 0 0;
  }
}
@media (max-width: 830px){
  .product_card .card .left_slider{
    display: none;
  }
}
.product_card .card .left_slider-two{
  float: left;
  /* z-index: 1; */
  /* width: 500px; */
  width: 393px;
  height: 539px;
  /* padding: 0 0 0 105px; */
}
@media (max-width: 1024px){
  .product_card .card .left_slider-two{
    width: 340px;
    height: 500px;
  }
}
@media (max-width: 767px) {
  .product_card .card .left_slider-two {
    margin: 0 35px;
  }
}
@media (max-width: 375px) {
  .product_card .card .left_slider-two {
   margin: 0 10px;
  }
}
.product_card .card .left_slider-two .slider__item{
  position: relative;
  width: 393px;
  height: 539px;
}
@media (max-width: 1024px) {
  .product_card .card .left_slider-two .slider__item{
    width: 340px;
    height: 500px;
  }
}
.product_card .card .left_slider-two .slider__item .pin{
  position: absolute;
  display: block;
  z-index: 3;
  top: 13px;
  left: 13px;
  /* width: 66px; */
  width: 110px;
  height: 32px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  line-height: 32px;
  border-radius: 16px;
  background-color:#982A2A ;
  cursor: pointer;
}
.product_card .card .left_slider .slider__item img{
  width: 76px;
  height: 108px;
  margin:0px 30px 22px 0px;
}
.product_card .card .right_description{
  float: right;
  padding: 0 0 0 0;
  width: calc(100% - 105px - 500px - 136px);
}
@media (max-width: 1024px){
  .product_card .card .right_description{
    width: auto;
        padding: 0px 70px 0 0;
  }
}
@media (max-width: 768px) {
  .product_card .card .right_description {
    padding: 0px 0px 0 0;
  }
}
@media (max-width:430px) {
  .product_card .card .right_description {
    padding: 0px 70px 0 0;
  }
}
.product_card .card h3{
  display: block;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  margin: 0 0 8px 0;
}
@media (max-width: 1024px){
  .product_card .card h3{
  font-size: 20px;
  }
}
.product_card .card .box{
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 0 0 25px 0;
}
@media (max-width: 430px) {
  .product_card .card .box{
    margin: 0 0 10px 0;
  }
}
.product_card .card .box .red{
  float: left;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  color: #982A2A;
  margin: 0 114px 0 0;
  line-height: 30px;
}
@media (max-width: 1024px){
  .product_card .card .box .red{
    margin: 0 40px 0 0;
    font-size: 15px;
  }
}
.product_card .card .box .number{
  float: left;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  margin: 0 60px 0 0;
  line-height: 30px;
}
@media (max-width: 1024px) {
  .product_card .card .box .number {
    margin: 0 20px 0 0;
    font-size: 15px;
  }
}
.product_card .card .box span{
  float: right;
  width: 35px;
  height: 30px;
}
@media (max-width: 1024px){
  .product_card .card .box span{
    float: left;
  }
}
@media (max-width: 430px) {
  .product_card .card .box span {
   display: none;
  }
}
.product_card .card .box .old_cost{
  float: left;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  color: #C2C8C8;
  text-decoration: line-through;
}
@media (max-width: 1024px){
  .product_card .card .box .old_cost{
    font-size: 25px;
  }
}
.product_card .card .box .new_cost{
  float: left;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 32px;
  color: #982A2A;
  margin: 0 18px 0 0;
}
@media (max-width: 1024px) {
  .product_card .card .box .new_cost{
    font-size: 25px;
  }
}
.product_card .card .box .choice_of_color{
  float: left;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  color: #C2C8C8;
  margin: 0 5px 0 0;
}
@media (max-width: 1024px) {
  .product_card .card .box .choice_of_color {
    font-size: 25px;
  }
}

.product_card .card .box .color{
  float: left;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
}
@media (max-width: 1024px) {
  .product_card .card .box .color {
    font-size: 25px;
  }
}
.product_card .card .box .photo{
  float: left;
  width: 76px;
  height: 108px;
  margin: 0 29px 0 0;
}
.product_card .card .sizes{
  float: left;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  color: #C2C8C8;
  margin: 0 5px 0 0;
}
@media (max-width: 1024px) {
  .product_card .card .box .sizes {
    font-size: 25px;
  }
}
.product_card .card .box .size{
  float: left;
  margin: 0 35px 0 0;
  padding: 0 8px 0 8px;
  border-radius: 4px;
  border: 1px solid #CAB79C;
  height: 54px;
  line-height: 54px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  background-color: #ffffff;
  color: #333333;
  -webkit-transition: all 1000ms ease-in-out;
    -moz-transition: all 1000ms ease-in-out;
    -ms-transition: all 1000ms ease-in-out;
    -o-transition: all 1000ms ease-in-out;
    transition: all 1000ms ease-in-out;
}
@media (max-width: 1024px) {
  .product_card .card .box .size {
    font-size: 25px;
    height: 44px;
    line-height: 44px;
    margin: 0 10px 0 0;
  }
}
@media (max-width: 430px){
  .product_card .card .box .size{
    font-size: 13px;
      height:30px;
      line-height: 30px;
  }
}
.product_card .card .box .size:hover{
  background-color: #CAB79C;
    color: #333333;
}
.product_card .card .box .size.brown:hover{
  background-color: #CAB79C;
  color: #333333;
}

.product_card .card a{
  display: block;
  overflow: hidden;
  margin: 5px auto 0 auto;
  width: 227px;
  height: 64px;
  text-align: center;
  line-height: 64px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  background-color: #CAB79C;
  color: #333333;
  -webkit-transition: all 1000ms ease-in-out;
    -moz-transition: all 1000ms ease-in-out;
    -ms-transition: all 1000ms ease-in-out;
    -o-transition: all 1000ms ease-in-out;
    transition: all 1000ms ease-in-out;
}
@media (max-width: 1024px){
  .product_card .card a{
    width: 190px;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
  }
}
@media (max-width: 430px) {
  .product_card .card a {
    width: 257px;
  }
}
.product_card .card a:hover{
  background-color: #ffff;
  color: #333333;
} 

.info_buy{
  margin: 40px;
}
@media (max-width: 430px){
  .info_buy {
      margin: 0px;
    }
}
.tabs {
  display: flex;
  justify-content: space-between;
  margin: 40px;
}
@media (max-width: 1024px){
  .tabs{
    margin: 0px 45px 10px 0px;
  }
}
@media (max-width: 768px){
  .tabs{
    margin: 0px 85px 10px 0px;
  }
}
 @media (max-width: 430px){
  .tabs {
      margin: 0px 10px 10px 0px;
    }
 }
.tabs li a{
  color: #CAB79C;
  font-size: 32px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
 }
 @media (max-width: 1024px){
  .tabs li a{
    font-size: 25px;
  }
 }
 @media (max-width: 768px) {
   .tabs li a {
     font-size: 20px;
   }
 }
 @media (max-width: 430px){
  .tabs li a {
      font-size: 10px;
    }
 }
 .tabs li.active a{
  color: #333333;
  font-size: 32px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
 }
 @media (max-width: 1024px){
  .tabs li.active a{
    font-size: 25px;
  }
 }
 @media (max-width: 768px){
  .tabs li.active a{
  font-size: 20px;
  }
 }
 @media (max-width: 430px) {
   .tabs li.active a{
     font-size: 10px;
   }
 }
 @media (max-width: 1024px){
  .tab-content .block{
    padding: 10px 35px 0px 0px;
  }
 }
.tab-content .block p{
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  margin: 0 0 27px 0;
}
 @media (max-width: 1024px){
  .tab-content .block p{
    font-size: 15px;
    line-height: 20px;
  }
 }
.block h4{
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
}
.block .sample{
  float: left;
}
.block .sample p{
  margin: 0 0 0 0;
}
.block .property{
  float: right;
  margin: 0 60px;
}
@media (max-width: 430px){
.block .property {
    float: left;
    margin: 10px 0px;
  }
}
.block .property p{
  margin: 0 0 0 0;
}
.tab-content .block img{
  overflow: hidden;
    float: left;
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
}
.tab-content .block em{
  display: block;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    color: #333333;
    font-style: normal;
}
@media (max-width: 1024px) {
  .tab-content .block em{
    font-size: 15px;
    line-height: 20px;
  }
}
.reviews{
  margin: 40px;
}
@media (max-width: 1024px){
  .reviews {
      margin: 0px;
    }
}
.reviews h3{
  display: block;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 20px;
  color: #333333;
  margin: 0 0 40px 0;
}
.reviews ul{
  display: block;
  width: 100%;
  overflow: hidden;
}
.reviews li{
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 52px 0;
}
.reviews .img_holder{
  float: left;
  width: 61px;
  height: 61px;
  margin: 0 38px 0 0;
}
@media (max-width: 1024px){
  .reviews .img_holder{
    margin: 0 0 0 0;
  }
}
.reviews .post{
  float: left;
  height: calc(100% - 61px - 38px - 56px - 100px - 64px);
}
@media (max-width: 1024px){
  .reviews .post{
    float: none;
  }
}
.reviews .post .name{
  display: block;
  width: 100%;
  margin: 24px 0 25px 0;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 20px;
  color: #333333;
}
.reviews .post .comment{
  margin: 0 0 20px;
  display: block;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  opacity: 0.6;
}
.reviews .post .text{
  display: block;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  margin: 0 0 20px 0;
}
.reviews .post img{
  width: 183px;
  height: 217px;
  float: left;
  margin: 0 20px 0 0;
}
.reviews .date{
  float: right;
  margin: 0 64px 0 56px;
  line-height: 27px;
  min-width: 100px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
} 
.breadcrumbs li a.del_pay{
  color: #333333;
}
.payment {
  float: left;
  margin-bottom: 24px;
}

.pay h4{
  display: block;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: 24px;
  color: #333333;
  margin: 20px 20px 0 0;
}
@media (max-width: 430px){
  .pay h4{
  font-weight: 700;
  font-size: 18px;
  }
}
.pay p{
  display: block;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  margin: 20px 20px 0 0;
  line-height: 30px;
}
@media (max-width: 430px){
  .pay p{
    font-size: 15px;
    line-height: 25px;
  }
}
.pay p img{
  overflow: hidden;
  float: left;
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0;
}
.deliveries{
  float: left;
  margin:0 0 40px 0;
}
.delivery_method h4{
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 24px;
  color: #333333;
  margin: 20px 20px 0 0;
}
@media (max-width: 430px){
  .delivery_method h4{
    font-weight: 700;
    font-size: 18px;
  }
}
.delivery_method p {
  display: block;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  margin: 20px 20px 0 0;
  line-height: 30px;
}
@media (max-width: 430px) {
  .delivery_method p {
    font-size: 15px;
    line-height: 25px;
  }
}
.delivery_method img {
  overflow: hidden;
  float: left;
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0;
}
.breadcrumbs .info_us{
  color: #333333;
}
.text_info p{
  float: left;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 20px;
  color: #333333;
  }
.about_us h2{
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 24px;
  color: #333333;
  margin:40px 0 20px 0 ;
  
}
.about_us p{
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 27px;
  margin: 0 0 20px 0;
}
@media (max-width: 430px){
  .about_us p {
    font-size: 15px;
  }
}
.about_us .facts{
  margin: 20px 0 0 0;
  float: left;
  line-height: 40px;
}
@media (max-width: 430px){
  .about_us .facts{
    line-height: 20px;
  }
}
.about_us .facts p{
  margin: 0 0 27px 0;
}
@media (max-width: 430px){
  .about_us .facts p{
    margin: 0 0 0 0;
    font-size: 12px;
  }
}
.about_us img{ 
  float: right;
  width: 286px;
  height: 456px;
}
@media (max-width:1024px) {
  .about_us img {
    display: none;
    width: 240px;
      height: 350px;
  }
}
@media (max-width: 768px){
  .about_us .img_holder img{
   display: none;
  }
}
.breadcrumbs .contacts_us {
  color: #333333;
}


.contacts h3 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 24px;
  color: #333333;
  margin: 0 0 20px 0;
  line-height: 33px;
}
@media (max-width: 430px){
  .contacts h3{
    font-weight: 600;
      font-size: 20px;
  }
}
.contacts p {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: #333333;
  padding: 0 0 20px 0;
}
@media (max-width: 430px) {
  .contacts p {
    line-height: 23px;
    font-size: 15px;
  }

}
.contacts em {
  display: block;
  padding: 0 0 0 0;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: #333333;
  font-style: normal;
  margin: 0 0 20px 0;
}
@media (max-width: 430px){
  .contacts em{
    font-size:15px;
    line-height: 23px;
  }
}
.contacts .map{
  position: absolute;
  top: 0;
  right: 89px;
  width: 392px;
  height: 291px;
  /* float: left;
  width: 764px;
  height: 444px; */
}
@media (max-width: 767px){
.contacts .map{
  right: 0;
}
}
@media (max-width: 668px) {
  .contacts .map {
    position: relative;
  }
}
.map img{
  /* top: 99px;
  right: 207px;  */
  width: 100%;
  height: 100%;
  
}
.breadcrumbs .return {
  color: #333333;
}
.exchenge_return h3 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 24px;
  color: #333333;
  margin: 40px 0 20px 0;
}
@media (max-width: 430px){
  .exchenge_return h3{
  font-weight: 600;
  font-size: 18px;
  }
  
}
.exchenge_return p {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: #333333;
  margin: 0 0 27px 0;
}
@media (max-width: 430px) {
  .exchenge_return p {
    line-height: 23px;
    font-size: 15px;
  }

}
.exchenge_return em {
  display: block;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: #333333;
  font-style: normal;
}
@media (max-width: 430px) {
  .exchenge_return em {
    line-height: 23px;
    font-size: 15px;
  }

}
.notfound a{ 
  position: absolute;
  top: 67px;
  right: 100px;
  line-height: 53px;
  color: #333333;
  font-family: "manrope";
  font-weight: 500;
  font-size: 24px;
  border-radius: 4px;
  width: 285px;
  /* background-position: 10px 20px; */
  -webkit-box-shadow: 0 10px 10px 0 #333333;
  box-shadow: 0 5px 10px 0 #333333;
  height: 53px;
  text-align: center;
  background-color: #CAB79C;
  -webkit-transition: all 1000ms ease-in-out;
    -moz-transition: all 1000ms ease-in-out;
    -ms-transition: all 1000ms ease-in-out;
    -o-transition: all 1000ms ease-in-out;
    transition: all 1000ms ease-in-out;
}
@media (max-width: 1024px){
  .notfound a{
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (max-width: 430px) {
  .notfound a {
    width: 130px;
    height: 35px;
    font-size: 10px;
    line-height: 35px;
    top: 0;
    /* display: none; */
  }
}
.notfound a:hover{
  background-color:#ffffff;
}
.notfound img{

  width: 100%;
  height: 100%;
  /* height: calc(100vh - 114px); */
 
}
.notfound h4{
  position: absolute;
  top: 50px;
  left: 101px;
  font-family: "manrope";
  font-weight: 900;
  font-size: 32px;
  line-height: 44px;
}
@media (max-width: 1024px){
.notfound h4{
  font-weight: 700;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  left:10px;
  top: 0;
}
}
@media (max-width: 768px) {
  .notfound h4 {
    font-weight: 600;
      font-size: 20px;
      line-height: 30px;
  }
}
@media (max-width: 430px) {
  .notfound h4 {
    font-weight: 500;
    font-size: 10px;
    line-height: 20px;
  }
}
.notfound em{
  display: block;
  font-style: normal;
}
.notfound .not_code { 
  position: absolute;
  font-family: "manrope";
  font-weight: 900;
  font-size: 20px;
  line-height: 27px;
  right: 103px;
  bottom: 100px;
}
@media (max-width: 1024px) {
  .notfound .not_code{
    right: 0;
    bottom: 0;
    font-weight: 700;
  }
}
@media (max-width: 430px){
  .notfound .not_code{
    font-weight: 500;
    font-size: 10px;
    line-height: 20px;
  }
}

.top_filter{
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 25px 0 25px 0;
}
.top_filter .breadcrumbs{
  margin: 15px 0 15px 0;
  width: calc(100% - 200px);
  float: left;
}
@media (max-width: 430px){
.top_filter .breadcrumbs{
  margin: 0px 0 0px 0;
    width: auto;
}
}
.top_filter .reset_filter{
  float: right;
  width: 193px;
  height: 47px;
  color: #333333;
  font-size: 20px;
  text-align: center;
  line-height: 47px;
  font-family: "manrope";
  font-weight: 600;
  background-color: #CAB79C;
  border: 1px solid #CAB79C;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 1000ms ease-in-out;
  -moz-transition: all 1000ms ease-in-out;
  -ms-transition: all 1000ms ease-in-out;
  -o-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}
@media (max-width: 430px){
  .top_filter .reset_filter{
    width: 100px;
    height: 40px;
    line-height: 18px;
    font-size: 12px;
  }
}
.top_filter .reset_filter:hover{
  background-color: #fff;
}
.flex_filter{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin: 0 0 40px 0;
}
/* @media (max-width: 1024px){
  .flex_filter{
    flex-direction: column;
  }
} */
.flex_filter .list_items{
  width: calc(100% - 288px - 30px);
  position: relative;
  padding: 0 0 82px 0;
}
@media (max-width: 1024px){
  .flex_filter .list_items{
    width: auto;
    padding: 10px 0 82px 0;
  }
}
.flex_filter .list_items h3{
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 900;
  font-style: normal;
  margin: 0 0 40px 0;
}
@media (max-width: 1024px){
  .flex_filter .list_items h3{
    margin: 0 0 20px 0;
  }
}
.flex_filter .list_items .sort{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1024px){
  .flex_filter .list_items .sort{
   margin: 0px 0px 12px 0px;
  }
}
.flex_filter .list_items .sort li{
  cursor: pointer;
}
.flex_filter .list_items .sort span{
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  color: #CAB79C;
} 
@media (max-width: 1024px){
  .flex_filter .list_items .sort span{
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .flex_filter .list_items .sort span {
      font-size: 10px;
    }
}
.flex_filter .list_items .sort li:hover span{
  color: #333333;
}
.flex_filter .list{
  margin: 0 0 0 0;
}
@media (max-width: 1024px){
  .flex_filter .list {
      margin: 0px 0px 0px 0px;
    }
}

.pages {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.pages a{
  width: 47px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  color: #333333;
  background-color: #CAB79C;
  border: 1px solid #CAB79C;
  border-radius: 4px;
  margin: 0 10px 0 0;
  -webkit-transition: all 1000ms ease-in-out;
  -moz-transition: all 1000ms ease-in-out;
  -ms-transition: all 1000ms ease-in-out;
  -o-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}
.pages a:hover{
  background-color: #ffffff;
}
.pages a.next{
  background-color:inherit;
  border: none;
  width: 30px;
  height: 30px;
  margin: 6px 0 0 0;
}
.pages a.next img{
  width: 100%;
  height: 100%;
  display: block;
}
.pages span{
  height: 42px;
  text-align: center;
  line-height: 47px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  color: #333333;
  margin: 0 10px 0 0;
}
aside{
  width: 288px;
  background-color: #CAB79C;
  padding: 30px 0 30px 0;
}
@media (max-width: 1024px){
aside {
  /* display: flex; */
  width: 100%;
  padding: 15px 15px 0px 0;
}
}
aside .category{
  padding: 0 20px 0 20px;
  margin: 0 0 30px 0;
}
@media (max-width: 1024px){
  aside .category{
    margin: 0 0 10px 0;
  }
}
aside h3{
  width: 100%;
  display: block;
  margin: 0 0 10px 0;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
}
@media (max-width: 1024px){
  aside h3{
    font-size: 15px;
  }
}
aside .category:first-child{
  border-bottom: 1px solid rgba(51, 51, 51, 0.6);
}
aside .category:last-child{
  margin: 0 0 0 0;
}
aside .category h4{
  cursor: pointer;
  width: 100%;
  display: block;
  margin: 0 0 21px 0;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  background-image:url(../images/ico-arrow-down2.png) ;
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 20px 14px;
}
@media (max-width: 1024px){
  aside .category h4{
    font-size: 15px;
    background-size: 15px 10px;
  }
}
aside .category h4.active{
  background-image:url(../images/ico-arrow-up.png) ;
}
aside .category .box{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 0px;
  overflow: hidden;
}
aside .category .box.open{
  height: auto;
}
aside .category .size{

  margin: 0 0 10px 0;
  cursor: pointer;
}
aside .category .size em {
  padding: 0 8px 0 8px;
  border-radius: 4px;
  border: 1px solid rgba(51, 51, 51, 0.6);
  height: 54px;
  line-height: 54px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 24px;
  background-color: #CAB79C;
  color: #333333;
  float: left;
}
aside .category .size:hover em{
  background-color: #333333;
  border:1px solid #333333;
  color: #CAB79C;
}
aside .category span{
  cursor: pointer;
  margin: 0 0 10px 0;
}
aside .category span em {
  float: left;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  padding: 5px 5px 5px 5px;
  background-color: #CAB79C;
  font-style: normal;
}
aside .category span:hover em{
  background-color: #333333;
  color: #CAB79C;
}
aside .filter_non{
    float: left;
    width: 193px;
    height: 47px;
    margin: 0 20px;
    color: #CAB79C;
    font-size: 20px;
    text-align: center;
    line-height: 47px;
    font-family: "manrope";
    font-weight: 600;
    background-color: #333333;
    border: 1px solid #333333;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 1000ms ease-in-out;
    -moz-transition: all 1000ms ease-in-out;
    -ms-transition: all 1000ms ease-in-out;
    -o-transition: all 1000ms ease-in-out;
    transition: all 1000ms ease-in-out;
}
@media (max-width: 1024px){
  aside .filter_non{
    display: none;
  }
}
aside .filter_non:hover{
  background-color: #CAB79C;
  color: #333333;
}





















.flex{
  margin: 200px 0 200px 0;
}
.flex ul.container{
  margin: 0 auto 0 auto;
  width: 700px;
  height: 700px;
  overflow: hidden;
  background-color: #CAB79C;
  display: flex;
  flex-wrap: wrap;
  /* flex-direction:row; */
  /* flex-flow:wrap row; */
  /* gap: 10px; */
  justify-content: center;
  align-items: center;
}
.flex ul.container li.item{

  width: 100px;
  height: 100px;
  border: 1px solid #000000;
  background-color: #F7671D;
  font-size: 30px;
  text-align: center;
}
.flex ul.container li.item:first-child{
  align-self: flex-start;

}
.flex ul.container li.item:nth-child(3){
  align-self: stretch;
  height: auto;
  order: 3;
}
.flex ul.container li.item:last-child{
  align-self: flex-end;
  order: 2;
}
.flex ul.container li.item:nth-child(4){
  order: -1;
}
.flex ul.container li.item.sale{
  order: -1;
}

.center{
  margin: 200px 0 200px 0;
}
.center ul{
  margin: 0 auto 0 auto;
  width: 700px;
  height: 700px;
  overflow: hidden;
  background-color: #CAB79C;

}
.center ul li{
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
  border: 1px solid #000000;
  background-color: #F7671D;
  font-size: 30px;
  text-align: center;
}
























.pseudo{
  width: 764px;
  margin: 0 auto 0 auto;
  background-color: #63BAA9;
  padding: 50px 0 52px 0;
}
.pseudo h3{
  display: block;
  width: 100%;
  font-size: 30px;
  font-family: "Arial", sans-serif;
  font-weight: 400;
  color: #333333;
  position: relative;
  margin: 0 0 40px 0;
}
.pseudo h3 span{
  display: block;
  width:150px; 
  margin: 0 auto 0 auto;
  font-size: 30px;
  font-family: "Arial", sans-serif;
  font-weight: 400;
  color: #333333;
  position: relative;
  z-index: 2;
  background-color: #63BAA9;
  padding: 0 35px 0 35px;
}
.pseudo h3:before{
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  background-color:#ffffff;
  width: 100%;
  height: 2px;
  z-index: 1;
  /* float: right;
  margin: 15px 0 0 0; */
}
/* .pseudo h3:after{ */
  /* content: '';
  position: absolute;
  top: 50%;
  right: 0;
  background-color:#ffffff;
  width: 580px;
  height: 2px; */
  /* float: right;
  margin: 15px 0 0 0; */
/* } */
.pseudo ul{
  display: block;
  width: 100%;
}
.pseudo li{
  float: left;
  width: 248px;
  height: 125px;
  background-color: #ffffff;
  margin: 0 10px 10px 0;
  padding: 59px 38px 20px 38px;
  -webkit-transition: all 2000ms ease-in-out;
-moz-transition: all 2000ms ease-in-out;
-ms-transition: all 2000ms ease-in-out;
-o-transition: all 2000ms ease-in-out;
transition: all 2000ms ease-in-out;
}
.pseudo li:first-child{
  width: 506px;
  height: 250px;
  padding: 25px 25px 20px 25px;
  background-color: rgba(247, 103, 29, 0.5);
  -webkit-border-radius: 50px 100px 80px 40px;
border-radius: 50px 100px 80px 40px;
}
.pseudo li:last-child{
  background-color: rgba(75, 96, 73, 0.3) ;
}


.pseudo li:nth-child(2){
  height: 250px;
  padding: 184px 38px 20px 38px;
}
.pseudo li:first-child h4{
  color: #fff;
}
.pseudo li:first-child p{
  color: #fff;
  -moz-column-count: 2;
-moz-column-gap: 150px;
-webkit-column-count: 2;
-webkit-column-gap: 150px;
column-count: 2;
column-gap: 150px;
}
.pseudo h4{
  display: block;
  width: 100%;
  margin: 0 0 0 0;
  font-size: 24px;
  font-family: "Arial", sans-serif;
  font-weight: 400;
  color: #F7671D;
}
.pseudo p{
  display: block;
  width: 100%;
  margin: 0 0 0 0;
  font-size: 12px;
  font-family: "Arial", sans-serif;
  font-weight: 400;
  color: #4E4D4D;
}
.pseudo li:nth-child(2+3n){
  margin: 0 0 10px 0;
}
.pseudo li:nth-child(3n+2){
  margin: 0 0 10px 0;
}
.pseudo li:hover{
  background-color: yellow;
  cursor: pointer;
  -moz-transform: scale(1.2) rotate(360deg) translateX(100px) translateY(100px) skewX(10deg) skewY(10deg);
-webkit-transform: scale(1.2) rotate(360deg) translateX(100px) translateY(100px) skewX(10deg) skewY(10deg);
-o-transform: scale(1.2) rotate(360deg) translateX(100px) translateY(100px) skewX(10deg) skewY(10deg);
-ms-transform: scale(1.2) rotate(360deg) translateX(100px) translateY(100px) skewX(10deg) skewY(10deg);
transform: scale(1.2) rotate(360deg) translateX(100px) translateY(100px) skewX(10deg) skewY(10deg);
  
  /* background-image: url(../images/2); */
}
.pseudo li:hover p{
  color: navy;
  font-size: 30px;
}
.pseudo li:active{
  background-color: lawngreen;
}
/* .pseudo input:focus{
  width: 200px;
  height: 50px;
  background-color: #ebedec;
  font-size: 40px;
} */