@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
:root {
  --primary-color: #e42c2c;
}
.sm-img-container img {
  width: 100%;
  height: 40vh;
}
.container h2 {
  color: var(--primary-color);
  /* text-transform: capitalize; */
  font-weight: 900;
}
.container h4 {
  color: #000;
  text-transform: capitalize;
  font-weight: 900;
}
.btns-group {
  background: var(--primary-color);
  border-radius: 15px;
}
.btns-group button {
  background: #fff;
  font-weight: 900;
  font-size: large;
  border-radius: 20px;
}
.btns-group button:hover {
  background: #794c74;
  color: #fff;
}
.bg-img-container {
  width: 70%;
}
.bg-img-container img {
  width: 100%;
  height: 100vh;
  min-height: 100%;
}
/* final result */
.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  position: relative;
}
.info input {
  text-align: center;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 5px rgb(182, 178, 178);
}
.info .inp1::placeholder {
  color: #000;
  font-weight: 600;
}
.info .inp2 {
  width: 60%;
  height: 50px;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.container .back-p {
  transition: all 0.7s ease;
}
.container .back-p:hover {
  transform: scale(1.2);
  cursor: pointer;
}
.info h5 {
  /* color: var(--primary-color); */
}
.form-group input,
.form-group textarea {
  /* border: 1px solid var(--primary-color); */
  box-shadow: 0 0 5px rgb(182, 178, 178);
}
.d-block {
  display: block;
}
/* after-submitting */
.after-sub {
  text-align: center;
}
.after-sub div h5 {
  color: var(--primary-color);
  font-weight: 900;
}
.after-sub .last-btn,
.modal-content .btns-group {
  background: #fff;
}
.after-sub .last-btn button,
.modal-content .btns-group button {
  background: var(--primary-color);
  color: #fff;
}
.after-sub .last-btn button:hover,
.modal-content .btns-group button:hover {
  background: #794c74;
}
.payment-salary {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}
.our-website {
  /* margin-top: 5rem; */
}
/* dialog modals */
.selections {
  overflow-y: scroll;
  height: 52vh;
}
.close-icon {
  border: 3px solid var(--primary-color);
  background: #fff;
  color: var(--primary-color);
  border-radius: 100%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  font-weight: 600;
  outline: none;
  transition: all 1s ease;
}

.close-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 3px grey;
}
.header h2 {
  color: var(--primary-color);
  font-weight: 900;
}
.form-check-label {
  font-weight: 600;
}
