.title {
  font-weight: 600;
  font-size: 24px;
  color: var(--black33);
}

/* banner */
.banner {
  height: 200px;
  border-radius: 0px 0px 50px 50px;
}
#businessBanner {
  background: linear-gradient(
      90deg,
      rgba(102, 172, 76, 0.85) 16.71%,
      rgba(102, 172, 76, 0) 101.22%
    ),
    url(./../assets/business/banner.png);
  background-position: bottom;
  background-size: cover;
}
.bannerText {
  font-size: 30px;
  color: var(--white);
  padding: 80px 0 0 100px;
  font-weight: bold;
}

/* section */
#businessSection,
#accountingSection {
  padding: 40px 100px 130px 100px;
}
/* business */
.heading {
  font-weight: bold;
  font-size: 35px;
  color: var(--primaryColor);
  line-height: 41px;
}
.paragraph {
  font-size: 16px;
  line-height: 28px;
  margin-top: 10px;
}

/* services */
.services {
  margin-top: 40px;
}
.row {
  display: flex;
  padding-top: 40px;
  gap: 30px;
}
.row > .topic:nth-child(1) {
  display: none;
}
.col1 {
  flex: 40%;
  width: 100%;
}
.col2 {
  flex: 60%;
  padding-right: 50px;
}
.thumbnail {
  width: 438px;
  height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
}
.bookBox {
  background: linear-gradient(
      126.23deg,
      rgba(102, 172, 76, 0.6) 35.52%,
      rgba(196, 196, 196, 0) 95.2%
    ),
    url(./../assets/business/book.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.payableBox {
  background: linear-gradient(
      126.23deg,
      rgba(102, 172, 76, 0.6) 35.52%,
      rgba(196, 196, 196, 0) 95.2%
    ),
    url(./../assets/business/payable.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.receivableBox {
  background: linear-gradient(
      126.23deg,
      rgba(102, 172, 76, 0.6) 35.52%,
      rgba(196, 196, 196, 0) 95.2%
    ),
    url(./../assets/business/recievable.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.bankBox {
  background: linear-gradient(
      126.23deg,
      rgba(102, 172, 76, 0.6) 35.52%,
      rgba(196, 196, 196, 0) 95.2%
    ),
    url(./../assets/business/bank.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.payrollBox {
  background: linear-gradient(
      126.23deg,
      rgba(102, 172, 76, 0.6) 35.52%,
      rgba(196, 196, 196, 0) 95.2%
    ),
    url(./../assets/business/payroll.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.budgetBox {
  background: linear-gradient(
      126.23deg,
      rgba(102, 172, 76, 0.6) 35.52%,
      rgba(196, 196, 196, 0) 95.2%
    ),
    url(./../assets/business/budget.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.financialBox {
  background: linear-gradient(
      126.23deg,
      rgba(102, 172, 76, 0.6) 35.52%,
      rgba(196, 196, 196, 0) 95.2%
    ),
    url(./../assets/business/financial.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.topic {
  font-weight: bold;
  font-size: 20px;
  color: var(--black33);
  margin-bottom: 15px;
}

/* accounting */
#accountingBanner {
  background: linear-gradient(
      90deg,
      rgba(102, 172, 76, 0.85) 16.71%,
      rgba(102, 172, 76, 0) 101.22%
    ),
    url(./../assets/accounting/banner.png);
  background-position: bottom;
  background-size: cover;
}
.accountingBox {
  background: linear-gradient(
      126.23deg,
      rgba(102, 172, 76, 0.6) 35.52%,
      rgba(196, 196, 196, 0) 95.2%
    ),
    url(./../assets/accounting/accounting.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.ledgerBox {
  background: linear-gradient(
      126.23deg,
      rgba(102, 172, 76, 0.6) 35.52%,
      rgba(196, 196, 196, 0) 95.2%
    ),
    url(./../assets/accounting/ledger.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.taxBox {
  background: linear-gradient(
      126.23deg,
      rgba(102, 172, 76, 0.6) 35.52%,
      rgba(196, 196, 196, 0) 95.2%
    ),
    url(./../assets/accounting/tax.png);
  background-size: cover;
  background-repeat: no-repeat;
}

/* responsive */

@media only screen and (max-device-width: 480px) {
  .paragraph {
    margin-top: 5px;
    line-height: 21px;
  }
  .row {
    padding-top: 20px;
    gap: 5px;
  }
  .services {
    margin-top: 20px;
  }
  .topic {
    font-size: 18px;
  }
  .heading {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-device-width: 1024px) and (max-device-width: 1120px) {
  #businessSection,
  #accountingSection {
    padding: 25px 80px;
  }
}
@media (min-device-width: 1121px) and (max-device-width: 1279px) {
  #businessSection,
  #accountingSection {
    padding: 25px 100px;
  }
}
@media only screen and (max-device-width: 1023px) {
  .banner {
    height: 170px;
  }
  .bannerText {
    padding: 40px 0 0 30px;
  }
  #businessSection,
  #accountingSection {
    padding: 40px 50px;
  }
}

@media only screen and (max-device-width: 620px) {
  .banner {
    height: 120px;
    border-radius: 0 0 25px 25px;
  }
  .bannerText {
    font-size: 16px;
  }
  #businessSection,
  #accountingSection {
    padding: 25px 20px;
  }
  .title {
    font-size: 18px;
  }
}
@media only screen and (max-device-width: 949px) {
  .bannerText {
    font-size: 20px;
  }
  .paragraph {
    line-height: 24px;
  }
  .heading {
    font-size: 24px;
    line-height: 35px;
  }
}
@media only screen and (max-device-width: 767px) {
  .row {
    flex-flow: column;
    padding-top: 25px;
    gap: 10px;
  }
  .row > .topic:nth-child(1) {
    display: block;
  }
  .col2 > .topic:nth-child(1) {
    display: none;
  }
  .col1 {
    margin: auto;
  }
  .col2 {
    padding-right: 0px;
  }
  .topic {
    text-align: center;
    font-size: 18px;
  }
  .thumbnail {
    margin: auto;
  }
  .services {
    margin-top: 30px;
  }
  .heading {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-device-width: 768px) and (max-device-width: 949px) {
  .thumbnail {
    width: 300px;
    height: 250px;
  }
}
@media (min-device-width: 621px) and (max-device-width: 767px) {
  .thumbnail {
    width: 350px;
    height: 300px;
  }
}
@media (min-device-width: 471px) and (max-device-width: 620px) {
  .thumbnail {
    width: 300px;
    height: 250px;
  }
}
@media only screen and (max-device-width: 470px) {
  .thumbnail {
    width: 100%;
    height: 200px;
  }
}

@media only screen and (min-device-width: 1441px) {
  #businessSection,
  #accountingSection {
    padding: 25px 150px;
  }
  .bannerText {
    padding-left: 150px;
  }
}

@media only screen and (min-device-width: 1600px) {
  #businessSection,
  #accountingSection {
    padding: 25px 200px;
  }
  .bannerText {
    padding-left: 200px;
  }
}

@media only screen and (min-device-width: 1700px) {
  #businessSection,
  #accountingSection {
    padding: 25px 250px;
  }
  .banner {
    height: 300px;
  }
  .bannerText {
    padding-top: 130px;
    padding-left: 250px;
  }
}
@media only screen and (min-device-width: 1750px) {
  #businessSection,
  #accountingSection {
    padding: 25px 300px;
  }
  .banner {
    height: 300px;
  }
  .bannerText {
    padding-top: 130px;
    padding-left: 300px;
  }
}
@media only screen and (min-device-width: 1800px) {
  #businessSection,
  #accountingSection {
    padding: 25px 350px;
  }
  .banner {
    height: 300px;
  }
  .bannerText {
    padding-top: 130px;
    padding-left: 350px;
  }
}
@media only screen and (min-device-width: 1900px) {
  #businessSection,
  #accountingSection {
    padding: 25px 400px;
  }
  .banner {
    height: 300px;
  }
  .bannerText {
    padding-top: 130px;
    padding-left: 400px;
  }
}
