.breadcrum {
  width: 270px !important;
}

.vendor-details-section {
  display: flex;
  justify-content: center;
}

.container {
  padding: 50px 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.top {
  display: flex;
  flex-direction: row;
  gap: 18px;
}

.top .details {
  max-width: 630px;
  padding: 33px 30px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 8px;
}

.vendor-detail {
  display: flex;
  gap: 18px;
}

.vendor-detail .icon-img {
  width: 80px;
  height: 80px;
}

.vendor-detail .inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top .points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 24px;
}

.point {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top .point img {
  filter: invert(1);
  width: 24px;
  height: 24px;
}

.send-btn {
  margin-top: 50px;
  background-color: #fee823;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  width: 100%;
  border: 2px solid #fee823;
  outline: none;
  border-radius: 8px;
}

.send-btn:hover {
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.send-btn:hover img {
  filter: invert(1);
}

.images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.img-1 {
  height: 589px;
  border-radius: 8px;
  flex: 1;
  background: url(../../assets/images/vendor-img1.jpg);
  background-position: center;
  background-size: cover;
}

.img-2 {
  height: 398px;
  border-radius: 8px;
  flex: 1;
  background: url(../../assets/images/vendor-img2.jpg);
  background-position: center;
  background-size: cover;
}


.question {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 953px;
}

.question p {
  color: #00000099;
}

.question .points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}




/*-------------------
   Smaller desktop
-------------------*/
@media(max-width: 1280px) {
  .container {
    padding: 50px 60px;
  }

  .details {
    max-width: unset;
    width: clamp(530px,
        calc(39.2vw + 128.24px),
        630px);
  }
}




/*-------------------
    Tablet view
-------------------*/
@media(max-width: 1024px) {
  .container {
    padding: 50px 40px;
  }

  .top {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .images {
    flex-direction: row;
  }

  .img-1,
  .img-2 {
    height: 312px;
  }

  .details {
    max-width: 100% !important;
    width: 100%;
  }

}





/*-------------------
    Mobile view
-------------------*/
@media(max-width: 767px) {
  .container {
    padding: 36px 24px;
    gap: 36px;
  }
}




/*----------------------*/
.mb-18 {
  margin-bottom: 18px;
}

.mb-32 {
  margin-bottom: 32px;
}

@media(max-width: 600px) {
  .mb-18 {
    margin-bottom: 32px;
  }

  .details {
    padding: 24px 10px !important;
  }

  .points {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .images {
    flex-direction: column;
  }

  .vendor-detail .icon-img {
    width: 50px;
    height: 50px;
  }

  .img-1,
  .img-2 {
    flex: unset;
  }
}

@media(min-width: 1025px) {
  .img-1 {
    flex: unset;
  }
}