body {
  margin: 0;
  padding: 0px;
  font-family: Poppins;
}
.section-container {
  margin: 0 auto;
  max-width: 1330px;
}
/*section CSS*/
h1 {
  font-size: 34px;
  text-align: center;
  font-weight: bolder;
  padding-top: 50px;
}

h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

h4 {
  font-size: 19px;
  text-align: left;
  font-weight: bold;
  margin: 0;
  padding: 15px;
}

section {
  margin: 0;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 100px;
}

section p {
  font-family: "Times New Roman";
  font-size: 16px;
}

section li {
  font-family: "Times New Roman";
  font-size: 16px;
}

section button {
  background-color: #b83239;
  border: 0;
  color: white;

  text-align: center;
  margin: 0px;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
}

button:hover {
  background-color: black;
}

/*content css*/

.payment-img {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  margin: 3%;
}

.payment-img img {
  height: 200px;
  width: 30%;
  padding: 15px;
  object-fit: contain;
  object-position: center;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.payment-img img:hover {
  background-color: #b83239;
}

.billing-info {
  display: flex;
  flex-wrap: nowrap;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.column {
  flex: 50%;
  padding: 2%;
  justify-content: center;
}

.column1 {
  flex: 50%;
  padding: 2%;
  justify-content: center;
}

.column1 button {
  width: 49%;
}

.column button {
  width: 100%;
}

.column img {
  padding-bottom: 4px;
}

/*booking form*/

.billingform {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
}

.billingform label {
  padding-bottom: 5px;
  padding-top: 5px;
}

.billingform input {
  background-color: rgb(180, 180, 180);
  padding: 15px;
  border: none;
}

.proceedbtn {
  text-align: right;
  margin-top: 30px;
}

.billingform button {
  width: 50%;
}

.orderconfirm {
  padding: 5%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  text-align: right;
}

.orderconfirm p {
  text-align: left;
}
.orderconfirm button {
  width: 300px;
}
h5 {
  font-size: 17px;
  font-weight: bold;
  padding: 10px 0px;
}

.totalconfirm {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 720px) {
  .payment-img {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
    align-content: center;
  }

  .payment-img img {
    height: 150px;
    width: 50%;
  }

  .billing-info {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .billing-info h4 {
    text-align: center;
  }

  .column button {
    width: 100%;
  }

  .orderconfirm button {
    width: 100%;
  }
}
