.type-of-loan-box {
  width: 460px;
  height: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0px auto;
  box-sizing: border-box;
}

.type-of-loan-box-area {
  width: 500px;
  height: auto;
  display: block;
  position: relative;
  border-radius: 20px;
  border: 1px solid #0000001a;
  box-shadow: 9px 9px 8px 0px #0000000d;
  margin: 0px auto;
  padding: 15px;
  margin-bottom: 40px;
  margin-top: 25px;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: #fff;
}

.type-of-loan-box-icon {
  width: 22%;
  height: auto;
  display: block;
  position: relative;
  margin: 0px auto;
  border-bottom: 4px solid #d9d9d9;
  box-sizing: border-box;
}

.type-of-loan-box-icon img {
  width: 50px;
  height: auto;
  display: block;
  position: relative;
  margin: 0px auto;
}

.type-of-loan-box-icon h5 {
  font-family: Jost Reg;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #45454599;
  margin-bottom: 10px;
  margin-top: 5px;
}

.type-of-loan-box-icon.active {
  border-bottom: 4px solid #fdc119;
}

.type-of-loan-box-icon.active h5 {
  color: #000;
}

@media screen and (max-width: 576px){
 .type-of-loan-box{
      width:100%;
  }
 .type-of-loan-box-icon img{
      width:37px;
 }
 .type-of-loan-box-icon h5{
      font-size:13px;
 }
}

@media screen and (max-width: 768px) {
  .type-of-loan-box-area {
    width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .type-of-loan-box-area {
    overflow-x: scroll;
  }
}

@media screen and (max-width: 375px) {
  .type-of-loan-box-area {
    margin-bottom: 40px;
  }
}