.banner {
  background-image: unset;
  background-image: linear-gradient(to right, #041b56, rgba(255, 255, 255, 0)), url("../assets/images/banner/contact-banner.png");
}

.contact {
  display: flex;
  margin: auto;
  flex-direction: column;
  gap: 25px;
  padding: 50px 0;
}

.content .text {
  color: #585858;
  font-family: "Gill-Sans-Nova";
  font-size: 16px;
}

.content .text .bold {
  font-family: "DIN-Condensed";
  font-size: 20px;
}

.content .text img {
  width: 250px;
  margin-left: -10px;
}

.content .text p:last-child {
  margin-top: 20px;
}

.contact .content {
  display: grid;
  grid-template-columns: 45% 45%;
  column-gap: 10%;
  grid-template-areas: "form" "text";
}

.form-title {
  background-color: #0231a8;
  color: #fff;
  font-family: "DIN-Condensed";
  font-size: 24px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px 25px;
  margin-top: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

input,
textarea {
  all: unset;
  border-bottom: 1px solid #909090;
  padding: 0px;
  font-family: "Gill-Sans-Nova";
  font-size: 16px;
  color: #585858;
}

textarea {
  white-space: pre-wrap;
}

input:focus,
textarea:focus {
  border-bottom: 1px solid #0fc3ed;
}

input:-internal-autofill-selected {
  border-bottom: 1px solid #0fc3ed;
}

.blue-button {
  width: 100%;
  padding: 15px 0;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Gill-Sans-Nova";
}

.msg-box {
  width: 40%;
  display: block;
  margin: auto;
  border-radius: 10px;
  background-color: white;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.msg-box .blue-button {
  width: 10%;
  padding: 10px 0;
}

#box-ico {
  text-align: center;
}

#box-action {
  text-align: center;
}

#box-action button {
  font-family: "Gill-Sans-Nova";
  font-size: 15px;
}

#box-content {
  font-family: "Gill-Sans-Nova";
  font-size: 16px;
  text-align: center;
  color: rgb(127, 127, 127);
}

#box-title {
  font-family: "Gill-Sans-Nova";
  font-size: 22px;
  text-align: center;
  font-weight: 700;
}

.mandatory-field {
  color: #909090;
  font-style: italic;
}
