.contactBanner {
  width: 100%;
  height: 957px;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-start;
  margin-bottom: 250px;
  background: url('../images/contact_bg.png') center/cover no-repeat;
}

.contactBannerTitle {
  margin-top: 100px;
  text-align: center;
  font-weight: 600;
  font-size: 50px;
  color: #FFFFFF;
}

.contactContent {
  position: absolute;
  bottom: -174px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
  box-sizing: border-box;
  padding: 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, #FFFFFF 100%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05); */
  border-radius: 8px;
}

.contactInfo {
  padding: 37px 44px;
  background: #FFFFFF;
  border-radius: 8px;
  /* border: 1px solid rgba(0, 0, 0, 0.05); */
  font-weight: 400;
  font-size: 20px;
  color: #000000;
}

.contactInfoTitle {
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 22px;
  color: #000000;
}
.contactInfoBtn {
  width: 569px;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #0a314d;
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
  cursor: pointer;
}

.contactInfo p {
  padding-bottom: 60px;
}

input {
  width: 569px;
  height: 74px;
  padding: 0 30px;
  margin-bottom: 27px;
  box-sizing: border-box;
  border-radius: 8px;
  border: none;
  background: #ffffff;
  color: #000000;
  font-weight: 400;
  font-size: 24px;
}

textarea {
  width: 569px;
  height: 224px;
  padding: 30px;
  border: none;
  border-radius: 8px;
  color: #000000;
  font-family: "";
  font-weight: 400;
  font-size: 24px;
}

input::placeholder,
textarea::placeholder {
  color: #666666;
}

input:active,
input:focus, textarea:active,
textarea:focus {
  /* outline: none;
  border: none !important; */
}

