.brochure-sec {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-height: 640px;
}
.hero-header {
  max-width: 45%;
}
.hero-header h1 {
  margin-bottom: 24px;
}
.hero-img {
  max-width: 28%;
}
.hero-img img {
  width: 100%;
}
.contaner-center {
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px;
}
.sec-two {
  background-color: #f7921f;
  color: #ffffff;
  padding: 3rem 1rem;
}
.company-description {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.company-description h2,
.company-description p {
  margin: 0;
  text-align: center;
}
.brouchers {
  padding: 5rem 1rem;
}
.brouch-img {
  height: auto;
  max-width: 100%;
}

.brouchers-box {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 100px;
  padding: 0 15px;
}
.brouch_box {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.brouch_box:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}
.brouch-img {
  height: auto;
  max-width: 210px;
  margin: auto;
}
.brouch_box p,
.brouch_box h3 {
  margin: 0;
}
.brouch-dbtn {
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
  color: black;
  background-color: #ffe9c5;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.brouch-dbtn:hover {
  background-color: #f7921f;
  color: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}
.brouch-contan {
  display: flex;
  flex-direction: column;
}
.brouch-contan h3 {
  font-weight: 700;
  font-size: 24px;
  padding-bottom: 8px;
  padding-top: 12px;
}

@media (max-width: 767px) {
  .brouchers-box {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .brouchers-box {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 30px;
  }
}

@media (max-width: 575px) {
  .brouchers-box {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0px;
    row-gap: 15px;
  }
  .brochure-sec {
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    min-height: fit-content;
    padding: 100px 0px 50px;
  }
  .hero-header {
    max-width: 90%;
  }
  .brouch_box p,
  .brouch_box h3 {
    text-align: center;
  }

  .hero-header h1 {
    margin-bottom: 24px;
    font-size: 24px;
  }
  .brouchers {
    padding: 3rem 1rem;
  }
  .hero-img {
    max-width: 60%;
  }
}

@media (max-width: 1440px) {
  .brochure-sec {
    min-height: 540px;
 }
}