.accessories-content {
  background: #fff;
  margin: 0px auto 220px;
}

.big-title {
  height:300px;
  margin: 0px auto;
  background: linear-gradient(0deg, #F6F8F9 0%, #F6F8F9 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
}
.big-title-box{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  align-items:center;
}

.big-title .big-title1 {
  margin-bottom: 26px;
  color: #222;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* 64px */
  text-transform: uppercase;
}
.ar .big-title .big-title1{
  text-align: right;
}

.big-title .big-title2 {
  color: #666;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20px */
}
.big-title .big-title-img{
  width: 510px;
  height: 100%;
  object-fit: cover;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 80px;
}

.content .content-menu {
  margin-right: 40px;
}
.ar .content .content-menu{
  margin-left:40px;
  margin-right:0px;
}

.content .content-menu .menu-title {
  color: #222;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  /* 110% */
  text-transform: uppercase;
  margin-left: 15px;
  margin-bottom: 13px;
}
.ar .content .content-menu .menu-title{
  margin-right: 15px;
  margin-left:0px;
  text-align: right;
}

.content .content-menu .mobile {
  display: none;
}

.content .content-menu li {
  padding-left: 15px;
  padding-right:15px;
  height: 40px;
  line-height: 40px;
  color: #1D2129;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
}
.ar .content .content-menu li {
  padding-right: 15px;
  padding-left:0px;
  text-align: right;
}

.content .content-menu li:active,
.content .content-menu li:hover,
.content .content-menu li.active {
  background: #F6F8F9;
  color: #37F;
}

.content .content-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
  gap: 20px;
}
.content .no-data-box{
  display:block;
}

.content .no-data-box .no-data{
  color: rgba(0, 0, 0, 0.60);
  text-align: left;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; 
}

.content .content-list .content-item {
  background: rgba(246, 248, 249, 1);
  padding: 20px;
  cursor: pointer;
  border-radius: 4px;
  box-sizing: border-box;
}

.content .content-list .content-item a {
  display: inline-block;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}


.content .content-list .content-item .content-item-img {
  width: 100%;
  height:250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 9px;
  transition: transform 0.5s ease; 
}

.content .content-list .content-item .content-item-img:active,
.content .content-list .content-item .content-item-img:hover {
  transform: scale(1.15);
}

.content .content-list .content-item .content-item-color {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.content .content-list .content-item .content-item-color span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.content .content-list .content-item .content-item-color span:last-child {
  margin-right: 0;
}
.ar .content .content-list .content-item .content-item-color span:last-child{
  margin-left:0px;
  margin-right:6px;
}

.content .content-list .content-item .content-item-title {
  color: #222;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-transform: capitalize;
  flex-grow: 1;
  margin-top: 10px;
  height:48px;
}


@media (max-width: 1000px) {
  .accessories-content {
    margin: 20vw 4vw;
  }
  .big-title {
    background:none;
    height:auto;
  }
  .big-title-box{
    justify-content: center;
    align-items: center;
  }

  .big-title {
    margin: 0px auto;
    align-items: center;
    padding-bottom: 12vw;
    border-bottom: none;
  }

  .big-title .big-title1 {
    margin-bottom: 5vw;
    font-size: 7vw;
    text-transform: none;
    text-align: center;
  }

  .big-title .big-title2 {
    font-size: 3vw;
    line-height: 180%;
    text-align: center;
    margin-left: 4vw;
    margin-right: 4vw;
  }

  .big-title .big-title-img{
    display:none;
  }

  .content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .content .content-menu {
    width: 100%;
    margin-right: 0px;
  }
  .ar .content .content-menu {
    margin-right: 0px;
    margin-left: 0px;
  }

  .content .content-menu .pc {
    display: none;
  }

  .content .content-menu .mobile {
    display: block;
  }

  .content .content-menu .select-menu {
    width: 100%;
    padding: 1.5vw 5vw;
    border: 1px solid #222;
    display:flex;
    flex-direction: row;
    justify-content:space-between;
    align-items:center;
  }

  .content .content-menu .select-menu select {
    width: 100%;
    font-size: 4vw;
    outline: none;
    border: none;
    background: none;
    
  }
  .content .content-menu .select-menu:after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 25px;
    background-image: url(../img/menu_down_grey@2x.png);
    background-repeat:  no-repeat;
    background-position:  center;
    background-size: 12px 8px;
    margin-left:-12px;
    background-color: #fff;
  }
  .ar .content .content-menu .select-menu:after{
    margin-right:-12px;
    margin-left:0px;
  }



  .content .content-list {
    width: 100%;
    gap: 4vw;
    margin-top: 20vw;
    grid-template-columns: repeat(auto-fill, minmax(40vw, 1fr)); 
  }
  .content .no-data-box .no-data{
    font-size: 4vw;
    text-align: center;
  }

  .content .content-list .content-item {
    padding: 3.5vw;
    cursor: pointer;
  }

  .content .content-list .content-item .content-item-img {
    width: 100%;
    height: 40vw;
  }


  .content .content-list .content-item .content-item-color span {
    width: 2vw;
    height: 2vw;
    margin-right: 2vw;
  }

  .content .content-list .content-item .content-item-color span:last-child {
    margin-right: 0;
  }

  .content .content-list .content-item .content-item-title {
    font-size: 3.5vw;
    line-height:1.2;
    height: 12vw;
  }
}