.first-section {
  padding: 5% 5% 2%;
  position: relative;
}

.container {
  border-radius: 30px;
  background: var(--primary-color);
  background: linear-gradient(
    20deg,
    var(--primary-color) 45%,
    var(--secondary-color) 100%
  );
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.design-contents {
  padding: 8% 6% 4%;
  display: flex;
  flex-direction: column;
  flex: 0.5;
  gap: 35px;
}

.design-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--pcolortext);
}

.design-text p {
  font-size: var(--pfontsize);
}

.design-text .landing-title {
  font-size: var(--landfontsize);
  font-family: var(--font-family3);
  line-height: 80%;
  color: var(--titlecolortext);
}

.p-secondary {
  font-size: var(--pfontsize-secondary);
}

.design-button {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.button-style {
  background: var(--extra-color);
  background: linear-gradient(
    236deg,
    var(--extra-color) 0%,
    var(--extra-color3) 100%
  );
  border: none;
  border-radius: 50px;
  color: var(--extra-color2);
  width: fit-content;
  padding: 15px 40px;
  font-size: var(--pfontsize);
}

.button-style2 {
  border: 2px solid var(--extra-color);
  background-color: transparent;
  border-radius: 50px;
  color: var(--extra-color);
  width: fit-content;
  padding: 15px 40px;
  font-size: var(--pfontsize);
}

.link-shops {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  padding-left: 10px;
}

.link-shops img {
  width: 25px;
  height: 25px;
}

.design-image {
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2% 0 0;
}
/*
.design-image img{
    height: 100%;
    width: 200%;
    border-bottom-right-radius: 20px;
    object-fit: cover;
}*/

.design-image img {
  height: 100%;
  width: 100%;
  border-bottom-right-radius: 20px;
  object-fit: cover;
}

.img-second {
  display: none;
}

/* second */

.second-section,
.third-section,
.fourth-section,
.fifth-section {
  padding: 8% 5%;
}

.container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.title-container .title {
  font-size: var(--ptitlefontsize);
  font-family: var(--font-family2);
  color: var(--titlecolortext);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.brand-picture {
  display: none;
}

.brand-pictures {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 8% 8% 0;
  column-gap: 110px;
  row-gap: 35px;
}

.brand-pictures img {
  width: 13%;
}

/* third */

.third-section {
  margin-top: 0.875rem;
}
.container3 {
  max-width: 968px;
  margin: auto;
  padding-bottom: 4rem;
}
/* just reusables */
.row {
  display: flex;
  flex-wrap: wrap;
}
.center {
  width: 100%;
  justify-content: center;
  column-gap: 40px;
  row-gap: 40px;
  margin-top: 20px;
}
.collection-filter-in {
  /* border: 1px solid black; */
  border-radius: 30em;
  padding: 5px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.row .collection-filter {
  flex: 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.row .collection-filter button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  z-index: 1;
  width: 7em;
  height: 2.5em;
  border-radius: 30em;
  color: var(--titlecolortext);
}
.row .collection-filter button.active {
  width: 7em;
  height: 2.5em;
  border-radius: 30em;
  position: relative;
  overflow: hidden;
  color: var(--extra-color2);
  background: linear-gradient(
    236deg,
    var(--extra-color) 0%,
    var(--extra-color3) 100%
  );
  z-index: 1;
  /* box-shadow: 6px 6px 12px rgba(246, 167, 155, 1); */
}
.row .collection-filter button.active::before {
  content: "";
  width: 0;
  height: 2.5em;
  border-radius: 20em;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    236deg,
    var(--extra-color) 0%,
    var(--extra-color3) 100%
  );
  transition: 0.2s ease;
  display: block;
  z-index: -1;
}
/* .row .collection-filter button:hover::before{
    /* width: 7em; */

/* } */

.row .collection-filter button {
  transition: 0.2s ease;
}

/* card-collection */
.collection-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  column-gap: 40px;
  row-gap: 20px;
}
.collection-container.hide {
  display: none;
}
.collection-container.show {
  display: block;
  animation: showItem 0.5s ease;
}
@keyframes showItem {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.coll-card {
  width: 300px;
  height: 420px;
  position: relative;
  background: linear-gradient(
    45deg,
    var(--primary-color) 45%,
    var(--secondary-color) 100%
  );
  border-radius: 20px;
}
.coll-img {
  width: 300px;
  height: 230px;
  display: flex;
  align-items: center;
}
.coll-img img {
  width: 230px;
  padding: 0.3rem;
  margin: 0 auto;
}
.coll-detail {
  width: 300px;
  height: 190px;
  background-color: rgb(19, 19, 16);
  border-radius: 0 40% 20px 20px;
  padding: 0.8rem;
  color: floralwhite;
}
.coll-rating {
  font-size: 0.7rem;
  color: rgb(253, 210, 18);
  user-select: none;
}
.coll-detail p {
  font-size: 0.8rem;
  color: rgb(240, 255, 255);
  padding-top: 0.5rem;
}
.coll-btns {
  margin-top: 0.3rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coll-btns .price {
  font-weight: 700;
  font-size: 1.1rem;
}
.coll-btns .cbtn {
  position: relative;
  border: none;
  outline: none;
  background: linear-gradient(
    236deg,
    var(--extra-color) 0%,
    var(--extra-color3) 100%
  );
  color: rgb(240, 255, 255);
  height: 40px;
  font-size: 0.9rem;
  border-radius: 50px;
  cursor: pointer;
}

.coll-btns .cart {
  width: 160px;
}

.coll-btns .fave {
  width: 40px;
  border-radius: 50%;
}

.coll-btns .cart,
.coll-btns .fave:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #e6481866;
  }

  70% {
    box-shadow: 0 0 0 10px rgba(245, 85, 37, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(247, 10, 109, 0);
  }
}

.work-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8% 0% 4%;
  gap: 40px;
}

.work-container2 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8% 0% 0;
  gap: 40px;
}

.work-image {
  width: 60%;
  height: inherit;
  border-radius: 10px;
  background-color: var(--primary-color);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.work-image img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.work-content {
  flex: 1;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}

.p-style {
  font-family: var(--font-family2);
  color: var(--semititlecolortext);
}

.title-secondary {
  font-size: var(--ptitlefontsize-secondary);
  font-family: var(--font-family4);
  color: var(--titlecolortext);
  font-weight: 600;
}

.work-bullets {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.work-bullet {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  align-items: center;
}

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

.banner-first {
  padding: 10% 5%;
  background: var(--primary-color);
  background: linear-gradient(
    20deg,
    var(--primary-color) 45%,
    var(--secondary-color) 100%
  );
}

.container4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.big-title {
  font-family: var(--font-family4);
  font-size: var(--ptitlefontsize-third);
  color: var(--titlecolortext);
  text-align: center;
  white-space: pre-line;
  font-weight: 600;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 540px;
  padding: 6% 4% 4%;
  position: relative;
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  height: 100%;
  border-radius: 20px;
  padding: 6% 4%;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  background-color: var(--extra-color2);
}

.testimonial-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.testimonials-img {
  background: linear-gradient(
    236deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  height: 60px;
  width: 60px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.testimonials-img img {
  width: 100%;
  height: 100%;
  border-radius: 100px;
  object-fit: cover;
  border-radius: 50px;
}

.testimonial-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.testimonial-name .name {
  font-family: var(--font-family4);
  color: var(--titlecolortext);
  font-size: var(--pfontsize-secondary);
}

.testimonial-name .p-small {
  font-size: var(--pfontsize-extrasmall);
}
