/* First section */

.first-section {
  padding-top: 120px;
}

.first-sec-image-container {
  height: 566px;
}

.first-sec-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.first-sec-brand-details {
  padding: 1% 0;
  text-align: center;
}

.brand-detail-name {
  font-size: 100px;
  font-weight: 400;
  /* font-family: "mn-book"; */
}

.brand-detail-description {
  font-size: 20px;
  font-family: "mn-book";
  padding-top: 10px;
  width: 75%;
  margin: auto;
}

/* Second section */

.second-section {
  padding: 0 0 5% 0;
  background-color: #F8F8F8;
  margin-top: 2%;
}

.stickyFilter {
  position: fixed;
  top: 120px;
  width: 100%;
  z-index: 1000 !important;
}

.brand-details-filters-container {
  background: #000;
  width: 100%;
  height: 56px;
}

.brand-details-filters {
  max-width: 1670px;
  width: 90%;
  height: 100%;
  margin: auto;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-details-filters-left {
  /* width: 50%; */
  display: flex;
  align-items: center;
  cursor: pointer;
}

.brand-details-filters-text {
  font-size: 20px;
  font-family: "mn-book";
  text-transform: uppercase;
  margin: 0;
  padding-right: 8px;
}
/* .brand-dtails-filter-icon {
  cursor: pointer;
} */

.brand-details-filters-right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.brand-details-seach-brand {
  width: 35%;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  border-bottom: 1px solid #fff;
  padding-bottom: 1px;
  margin-right: 40px;
  height: 40px;
}

.brand-details-seach-brand input {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  font-family: "mn-light";
  outline: none;
  line-height: 80%;
}

.brand-details-sort-brand {
  display: flex;
  align-items: center;

  /* width: 50%; */
}

.brand-details-sort-by {
  margin: 0;
  font-size: 20px;
  font-family: "mn-book";
  text-transform: uppercase;
  margin-right: 10px;
}

/* Filter Modal */

.brand-filter-dropdown {
  background-color: rgba(0, 0, 0, 0.541);
}

.brand-filter-dropdown-dialog {
  background-color: #000;
  /* height: calc(100vh - 120px); */
  padding-top: 120px;
  width: 570px !important;
  overflow: scroll;
}

.filter-dropdown-content {
  color: #fff !important;
  padding: 2% 0;
}

.filter-dropdown-content-one {
  border-bottom: 1px solid #6f6f6f;
  /* padding-bottom: 20px; */
  padding: 10px 10% 10px 10%;
}

.filter-accordion-panel-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5%;
  padding-top: 5%;
  cursor: pointer;
}
.filter-accordion-panel-head-title {
  font-size: 22px;
  font-family: "mn-book";
  text-transform: uppercase;
}

.filter-accordion-panel-head-close svg {
  transform: rotate(45deg);
  margin-top: 3px;
}

.filter-dropdown-content {
  /* padding: 10%; */
  width: 100%;
  height: 100%;
}

.filter-accordion-panel-content {
  max-height: 0px;

  overflow-y: hidden;
}

.category-content-one {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 17px;
  font-family: "mn-light";
  text-transform: capitalize;
  margin: 0;
  padding: 5px 80px 5px 0;
}
.category-content-one label input {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #fff;
}

.category-content-one label {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

/* Select dropdown */

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  width: 260px;
  height: 56px;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  /* padding: 8px 15px; */
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: "mn-book";
}
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  right: 0px;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.select-styled:hover {
  background-color: #000;
}
.select-styled:active,
.select-styled.active {
  background-color: #000;
}
.select-styled:active:after,
.select-styled.active:after {
  top: 9px;
  border-color: transparent transparent #fff transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #000;
}
.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border-top: 1px solid #fff;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  font-size: 16px;
  font-family: "mn-book";
  text-transform: uppercase;
}
.select-options li:hover {
  color: #000;
  background: #fff;
  letter-spacing: 1.2px;
}
.select-options li[rel="hide"] {
  display: none;
}

.filter-dropdown-content {
  /* padding: 8% 10%; */
}

.brand-details-filtered-content {
  padding: 2% 0;
}

.brand-details-filtered-content-grid {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand-detail-card {
  width: 24% !important;
  padding: 0 !important;
}

.brand-detail-card-image {
  /* height: 428px !important; */
  height: auto !important;
}

.brand-detail-btn {
  width: 177px; 
  height: 50px;
  background-color: black;
  color: white;
  margin: 40px auto;
  
} 

.brand-detail-viewMore {
  width: 100%;
  height: 100%;
  background-color: black;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "mn-book";
  transition: all 0.3s ease-out
}

.brand-detail-viewMore:hover {
  letter-spacing: 1.4px;
}

/* filter */

@media only screen and (max-width: 1600px) {

  .first-section {
    padding-top: 80px;
  }

  .brand-detail-name {
    font-size: 70px;
    
  }
  .brand-detail-description {
    font-size: 16px;
    font-family: "mn-book";
    padding-top: 10px;
    width: 75%;
    margin: auto;
  }

  .brand-detail-btn  {
    width: 150px;
    height: 40px;
    font-size: 13px;
  }

  .stickyFilter {
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 1000 !important;
  }

  .brand-filter-dropdown-dialog {
    
    
    padding-top: 80px;
    width: 400px !important;
   
  }

  .filter-accordion-panel-head-title {
    font-size: 18px;
  }

  .filter-accordion-panel-head-close svg {
    width: 12px;
    height: 12px;
  }

  .category-content-one {
    font-size: 15px;
  }
  .brand-details-filters-container {
    height: 45px;
  }

  .select {
    height: 45px;
  }

}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
  /* first section */
  .first-sec-image-container {
    height: 494px;
  }
  .first-section {
    padding-top: 80px;
  }
  .brand-detail-name {
    font-size: 50px;
  }
  .brand-detail-description {
    margin: 10px auto 10px auto;
    width: 70%;
  }
  .brand-details-filters {
    width: 96%;
  }
  .brand-details-filters-left {
    width: 20%;
  }
  .select {
    width: 180px;
  }
  .brand-details-seach-brand {
    margin-right: 20px;
  }
  .brand-details-filters-right {
    width: 80%;
  }
  .best-seller-heading {
    font-size: 30px;
  }
  .select-styled {
    font-size: 14px;
    width: 150px;
  }
  .select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    right: -15px;
    top: 59% !important;
    transform: translateY(-50%) !important;
  }
  .card-name {
    font-size: 13px;
  }
  .select-options li {
    font-size: 13px;
  }
  .brand-details-filters-text {
    font-size: 18px;
  }
  .brand-details-sort-by {
    font-size: 14px;
  }

  .stickyFilter {
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 1000 !important;
  }

  /* Filter Modal */
  .brand-filter-dropdown-dialog {
    padding-top: 80px;
    width: 400px !important;
  }
  .filter-accordion-panel-head-title {
    font-size: 18px;
  }
  .filter-accordion-panel-head-close svg {
    width: 12px;
    height: 12px;
  }
  .category-content-one {
    font-size: 15px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 600px) {
  /* first section */
  .first-sec-image-container {
    height: 494px;
  }
  .first-section {
    padding-top: 50px;
  }

  .first-sec-brand-details {
    padding: 20px 10px;
  }

  .brand-detail-name {
    font-size: 50px;
  }
  .brand-detail-description {
    margin: 10px auto 10px auto;
    width: 100%;
    font-size: 12px;
  }

  .brand-details-filtered-content-grid {
    padding-top: 40px;
  }

  .brand-detail-card {
    width: 50% !important;
    padding: 0 !important;
    margin-bottom: 40px;
  }
  .image-container {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
  }
  .slider-card {
    padding: 0 5px !important;
  }
  .brand-detail-card-image {
    /* height: 225px !important; */
  }
  .brand-details-filters {
    width: 96%;
  }
  .brand-details-filters-left {
    width: 20%;
  }
  .select {
    width: 180px;
    font-size: 15px;
  }
  .brand-details-seach-brand {
    margin-right: 20px;
  }
  .brand-details-filters-right {
    width: 80%;
  }
  .best-seller-heading {
    font-size: 30px;
  }
  .select-styled {
    font-size: 13px;
    width: 125px;
    margin-left: 50px;
  }
  .select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    /* right: -15px; */
    right: 0px;
    top: 55% !important;
    /* transform: translateY(-50%) !important; */
  }
  .card-name {
    font-size: 14px;
  }
  .select-options li {
    font-size: 14px;
  }
  .brand-details-filters-text {
    font-size: 14px;
  }
  .brand-details-sort-by {
    font-size: 13px;
    margin-right: -45px
  }

  .stickyFilter {
    position: fixed;
    top: 50px;
    width: 100%;
    z-index: 1000 !important;
  }


  /* Filter Modal */
  .brand-filter-dropdown-dialog {
    padding-top: 65px;
    width: 300px !important;
  }
  .filter-accordion-panel-head-title {
    font-size: 18px;
  }
  .filter-accordion-panel-head-close svg {
    width: 12px;
    height: 12px;
  }
  .category-content-one {
    font-size: 15px;
  }

  .brand-detail-btn {
    width: 150px; 
    height: 40px;
    
  } 
  
  .brand-detail-viewMore {
  
    font-size: 14px;
   
  }
}
