.contact-info {
  width: 100%;
  min-height: 200px;
  height: 32vh;
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  text-align: center;
  color: rgb(255, 255, 255);
  padding-bottom: 50px;
  padding-top: 20px;
}
.contact-info > h2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 50px;
  margin-bottom: 15px;
  color: rgb(30, 94, 196);
}
.contact-info > p {
  font-size: 16px;
  width: 60%;
  margin: 0px 0px 10px 0px;
}
.contact-info-scndp {
  font-weight: 900;
  color: rgb(42, 123, 255);
}

.contact-data-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-content: center;
  width: 100%;
  min-height: 58vh;
  height: auto;
}

.contact-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(30, 94, 196);
}

.data-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
  width: 80%;
  /* margin: 0; */
}
.data-title {
  grid-column: 1/3;
  font-size: 32px;
  /* padding-left: 150px; */
}

.data-element > h4 {
  font-size: 17px;

  margin: 0;
  padding: 0;
  color: rgb(30, 94, 196);
}
.data-element > p {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  color: rgb(102, 102, 102);
  text-align: left;
}

.contact-call > div {
  width: 60%;
  color: rgb(30, 94, 196);
}
.contact-call > h3 {
  color: rgb(30, 94, 196);
  font-size: 32px;
}

.contact-form {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 25px;
  font-family: Arial, Helvetica, sans-serif;
  /* background-color: rgb(226, 226, 226); */
  background-color: rgba(0, 0, 0, 0.13);
}
.form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 50%;
  height: auto;
  font-weight: 900;
  padding-bottom: 50px;
  padding-top: 80px;
}

label {
  text-transform: uppercase;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

textarea {
  resize: none;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.083);
  padding-left: 18px;
  padding-top: 18px;
  margin-bottom: 20px;
  margin-top: 10px;
  height: 170px;
  font-size: 16px;
  color: rgb(102, 102, 102);
  border-radius: 20px;
}

input {
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.083);
  padding-left: 18px;
  margin-bottom: 10px;
  margin-top: 10px;
  height: 35px;
  text-align: left;
  font-size: 15px;
  color: rgb(102, 102, 102);
  transition: all 100ms;
  border-radius: 20px;
}
input:hover,
textarea:hover {
  border: solid 1px rgba(30, 94, 196, 0.583);
}
input:focus,
textarea:focus {
  outline: none;
  border: solid 1px rgb(30, 94, 196);
}
button {
  display: block;
  min-width: 104%;
  width: auto;
  min-height: 42px;
  height: auto;
  border: solid 1px rgba(0, 0, 0, 0.152);
  margin: auto;
  margin-bottom: 20px;
  text-align: center;
  font-size: 25px;
  color: rgb(63, 63, 63);
  border-radius: 40px;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  background-color: rgb(40, 112, 230);
  color: rgb(255, 255, 255);
}

button:hover {
  background-color: rgb(28, 82, 168);
}

@media (max-width: 700px) {
  .contact-data-container {
    grid-template-columns: none;
    justify-content: center;
    height: auto;
  }
  .data-container > h3,
  .data-element > p,
  .data-element > h4 {
    text-align: center;
  }
  .data-element > h4 {
    font-size: 22px;
  }
  .data-container {
    display: block;
    border-bottom: solid 1px rgba(0, 0, 0, 0.644);
  }
  .contact-call {
    width: 90%;
    margin: auto;
  }
  .contact-call > div {
    width: 60%;
    color: rgb(30, 94, 196);
    margin: auto;
  }

  .contact-call > h3 {
    text-align: center;
    font-size: 30px;
  }
}
