.private {
  max-width: 1260px;
  margin: 0 auto;
}

.equity {
  box-sizing: border-box;
  width: 100%;
  padding: 130px 200px;
  background: #041622;
}

.eqTxt {
  font-size: 24px;
  line-height: 35px;
  color: #fff;
  text-align: center;
}

.credit {
  width: 100%;
  box-sizing: border-box;
  padding: 120px 200px 140px;
  background: #F6F6F6;
}

.creInfo {
  text-align: center;
}

.creInfo h3 {
  font-size: 40px;
}

.prinfo {
  margin: 30px 0 0;
}

.creInfo p {
  font-size: 24px;
  line-height: 35px;
  font-weight: lighter;
}

.portfo {
  margin: 90px 0 0;
}

.portfo h4 {
  text-align: left;
  font-size: 32px;
  font-weight: normal;
}

.portUl {
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.portUl li {
  box-sizing: border-box;
  border: 1.1px solid #d9d9d9;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.portUl img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.explore {
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  padding: 120px 200px;
}

.explore h3 {
  text-align: center;
  font-size: 40px;
  margin: 0 0 55px;
}

.expList li {
  border-top: 1px solid rgba(4, 22, 34, .2);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.expList li:last-child {
  border-bottom: 1px solid rgba(4, 22, 34, .2);
}

.expList li:nth-child(even) .expMg {
  order: 2;
}

.expMg img {
  display: block;
  width: 100%;
}

.expList li:nth-child(odd) .expTxt {
  box-sizing: border-box;
  padding-left: 55px;
}

.expList li:nth-child(even) .expTxt {
  box-sizing: border-box;
  padding-right: 55px;
}

.expTxt h4 {
  font-size: 32px;
  margin: 0 0 25px;
  font-weight: normal;
}

.expTxt p {
  font-size: 18px;
  line-height: 30px;
  font-weight: lighter;
}

.know {
  width: 100%;
  box-sizing: border-box;
  padding: 0 200px 150px;
}

.know>div {
  max-width: 620px;
  margin: 0 auto;
  color: #041622;
}

.know h3 {
  font-size: 40px;
}

.know h4 {
  font-size: 28px;
  font-weight: normal;
  margin: 70px 0 35px;
}

.know form {
  width: 100%;
}

.know input,
.know textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  border: solid 1px #cbcbcb;
  margin: 0 0 15px;
  border-radius: 8px;
  font-size: 20px;
}

.know textarea {
  resize: none;
  height: 420px;
}

.know button {
  margin: 35px 0 0;
  width: 100%;
  border: none;
  background: #041622;
  font-size: 24px;
  color: #fff;
  height: 90px;
  border-radius: 8px;
}


@media screen and (max-width:1440px) {

  .equity,
  .credit,
  .explore,
  .know {
    padding: 80px 100px;
  }

  .know {
    padding-top: 0 !important;
  }

  .eqTxt,
  .creInfo p {
    font-size: 20px;
  }

  .expTxt h4 {
    font-size: 28px;
    margin: 0 0 10px;
  }

  .expTxt p {
    font-size: 17px;
    line-height: 25px;
  }

  .creInfo h3,
  .explore h3,
  .know h3 {
    font-size: 32px;
  }

  .explore h3 {
    margin: 0 0 40px;
  }

  .know h4 {
    font-size: 24px;
    margin: 30px 0 15px;
  }

}


@media screen and (max-width:1280px) {

  .equity,
  .credit,
  .explore,
  .know {
    padding: 50px 60px;
  }

}


@media screen and (max-width:1024px) {

  .equity,
  .credit,
  .explore,
  .know {
    padding: 40px 30px;
  }

  .eqTxt,
  .creInfo p {
    font-size: 18px;
    line-height: 30px;
  }

  .expList li {
    grid-template-columns: repeat(1, 1fr);
    padding: 15px 0;
    gap: 15px;
  }

  .expList li:nth-child(even) .expMg {
    order: 0;
  }

  .expList li:nth-child(odd) .expTxt,
  .expList li:nth-child(even) .expTxt {
    padding: 0;
  }

  .creInfo h3,
  .explore h3,
  .know h3,
  .portfo h4 {
    font-size: 26px;
  }

  .know button {
    margin: 20px 0 0;
    font-size: 20px;
    height: 60px;
  }

  .portUl li {
    padding: 20px;
  }


}



@media screen and (max-width:768px) {

  .equity,
  .credit,
  .explore,
  .know {
    padding: 30px 20px;
  }

  .eqTxt,
  .creInfo p,
  .expTxt p {
    font-size: 14px;
    line-height: 25px;
  }

  .creInfo h3,
  .explore h3,
  .know h3,
  .portfo h4,
  .expTxt h4 {
    font-size: 20px;
  }

  .prinfo {
    margin: 10px 0 0;
  }

  .portfo {
    margin: 30px 0 0;
  }

  .portUl {
    margin: 20px 0 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .portUl li {
    padding: 10px;
  }

  .know h4 {
    font-size: 18px;
    margin: 10px 0;
  }

  .know input,
  .know textarea {
    padding: 5px 15px;
    margin: 0 0 15px;
    font-size: 16px;
  }

  .know button {
    margin: 10px 0 0;
    font-size: 16px;
    height: 40px;
  }


}
