#why-choose{
  padding: 100px 0;
  background-color: #353b48;
}

.why-choose-section-title{
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
  color: #fff;
}

.why-choose-section-title::before{
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #fff;
  bottom: 0;
  left: calc(50% - 40px);
}

.why-choose-section-title::after{
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  background-color: #48dbfb;
  border: 4px solid #353b48;
  left: calc(50% - 12px);
  bottom: -7px;
}

.why-choose-subtitle{
  text-align: center;
  color: #c9ccd1;
  font-size: 16px;
  max-width: 600px;
  margin: 40px auto 60px;
}

.why-choose-list{
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-choose-list li{
  color: #fff;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 18px 24px;
  border-radius: 8px;
  border: 1px solid rgba(72, 219, 251, 0.25);
}

.why-choose-list li i{
  color: #48dbfb;
  font-size: 20px;
}

@media screen and (max-width: 900px){
  #why-choose{
    padding: 60px 0;
  }

  .why-choose-section-title{
    font-size: 26px;
  }

  .why-choose-subtitle{
    font-size: 15px;
    margin: 30px auto 40px;
  }

  .why-choose-list li{
    font-size: 15px;
    padding: 16px 18px;
  }
}