section#content-section1 {
  background: linear-gradient(180deg, #e2e3e5d1 0%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 0%);
}
.content-wrapper {
  max-width: 1400px;
  margin: auto;
}
h3.content-title {
  font-weight: 700;
}
/* Brochure Buttons Styling */
.btn-brochures {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 30px 0;
}
.btn-brochure {
  border: none;
  border-radius: 24px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333F48;
  background: linear-gradient(to bottom, #ebebee 0%, #ebebee 50%, #333F48 50%, #333F48 100%);
  background-size: 100% 200%;
  transition: all 0.3s ease;
}
.btn-brochure:hover {
  background-position: 0 100%;
  transform: translateY(-1px);
  color: #ffffff;
  cursor: pointer;
}
.btn-brochure.active {
  background: #00A7B5;
  color: #ffffff;
  font-weight: 700;
}
/* Flipbook Container */
.flipbooks {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
}
.flipbooks iframe {
  width: 100%;
  border: none;
}
/* Standard BreakPoints */
/* Mobile BreakPoint */
@media screen and (min-width: 1px) and (max-width: 375px) {
  #page-content-wrapper {
    padding: 0 15px 0;
  }
  section#content-section2 {
    padding-top: 25px;
  }
  .content-wrapper {
    text-align: left;
  }
  h3.content-title {
    font-size: 18px;
  }
  .btn-brochures {
    justify-content: flex-start;
    margin: 20px 0;
    gap: 6px;
  }
  .btn-brochure {
    font-size: 13px;
  }
  .flipbooks iframe {
    height: 250px;
  }
}
/* Large Mobile BreakPoint */
@media screen and (min-width: 376px) and (max-width: 425px) {
  #page-content-wrapper {
    padding: 0 15px 0;
  }
  section#content-section2 {
    padding-top: 30px;
  }
  .content-wrapper {
    text-align: left;
  }
  h3.content-title {
    font-size: 20px;
  }
  .btn-brochures {
    justify-content: flex-start;
    margin: 20px 0;
    gap: 6px;
  }
  .btn-brochure {
    font-size: 13px;
  }
  .flipbooks iframe {
    height: 300px;
  }
}
/* Tablet BreakPoint */
@media screen and (min-width: 426px) and (max-width: 767px) {
  #page-content-wrapper {
    padding: 0 15px 0;
  }
  section#content-section2 {
    padding-top: 35px;
  }
  .content-wrapper {
    text-align: left;
  }
  h3.content-title {
    font-size: 24px;
  }
  .btn-brochures {
    justify-content: flex-start;
    margin: 20px 0;
    gap: 6px;
  }
  .btn-brochure {
    font-size: 13px;
  }
  .flipbooks iframe {
    height: 400px;
  }
}
/* Laptop BreakPoint */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #page-content-wrapper {
    padding: 0 15px 0;
  }
  section#content-section2 {
    padding-top: 45px;
  }
  .content-wrapper {
    text-align: center;
  }
  h3.content-title {
    font-size: 30px;
  }
  .flipbooks iframe {
    height: 550px;
  }
}
/* Desktop BreakPoint */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #page-content-wrapper {
    padding: 0 15px 0;
  }
  section#content-section2 {
    padding-top: 60px;
  }
  .content-wrapper {
    text-align: center;
  }
  h3.content-title {
    font-size: 36px;
  }
  .flipbooks iframe {
    height: 600px;
  }
}
/* Large Desktop BreakPoint */
@media screen and (min-width: 1441px) and (max-width: 2560px) {
  #page-content-wrapper {
    padding: 0;
  }
  section#content-section2 {
    padding-top: 70px;
  }
  .content-wrapper {
    text-align: center;
  }
  h3.content-title {
    font-size: 46px;
  }
  .flipbooks iframe {
    height: 700px;
  }
}
/* Extra-Large Desktop BreakPoint */
@media screen and (min-width: 2561px) and (max-width: 4000px) {
  #page-content-wrapper {
    padding: 0;
  }
  section#content-section2 {
    padding-top: 80px;
  }
  .content-wrapper {
    text-align: center;
  }
  h3.content-title {
    font-size: 48px;
  }
  .flipbooks iframe {
    height: 700px;
  }
}
/* Wide Desktop BreakPoint */
@media screen and (min-width: 4001px) {
  #page-content-wrapper {
    padding: 0;
  }
  section#content-section2 {
    padding-top: 100px;
  }
  .content-wrapper {
    text-align: center;
  }
  h3.content-title {
    font-size: 52px;
  }
  .flipbooks iframe {
    height: 700px;
  }
}