.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 75vh;
}


.container2 {
  position: relative;
  min-width: 1100px;
  min-height: 550px;
  display: flex;
  z-index: 1000;
  background-color: white;
}

.container2 .contactInfo {
  position: absolute;
  top: 40px;
  width: 350px;
  height: calc(100% - 80px);
  background-color: #019ee2;
  z-index: 1;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  border-radius: 20px 0 0 20px;
}

.container2 .contactInfo h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.container2 .contactInfo ul.info {
  position: relative;
  margin: 20px 0;
}

.container2 .contactInfo ul.info li {
  position: relative;
  list-style: none;
  display: flex;
  margin: 20px 0;
  cursor: pointer;
  align-items: flex-start;
}

.container2 .contactInfo ul.info li span:nth-child(1) {
  width: 30px;
  min-width: 30px;
}

.container2 .contactInfo ul.info li span:nth-child(1) img {
  max-width: 100%;
  filter: invert(1);
}

.container2 .contactInfo ul.info li span:nth-child(2) {
  color: #fff;
  margin-left: 10px;
  font-weight: 300;
}

.container2 .contactForm {
  position: absolute;
  padding: 70px 50px;
  padding-left: 250px;
  margin-left: 150px;
  width: calc(100% - 150px);
  height: 100%;
  background-color: white;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.25);
  border-radius: 0 20px 20px 0;

}

.sci {
  position: relative;
  display: flex;
}

.sci li {
  list-style: none;
  margin-right: 15px;
}

.sci li a {
  text-decoration: none;
}

.sci li a img {
  filter: invert(1);
}

.container2 .contactForm h2 {
  color: #019ee2;
  font-size: 24px;
  font-weight: 500;
}

.formBox {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

.formBox .inputBox {
  position: relative;
  margin-bottom: 35px;
}

.formBox .inputBox.w50 {
  width: 47%;
}

.formBox .inputBox.w100 {
  width: 100%;
}

.formBox .inputBox input,
.formBox .inputBox textarea {
  width: 100%;
  resize: none;
  padding: 5px 0;
  font-size: 18px;
  font-weight: 300;
  color: #333;
  border: none;
  outline: none;
  border-bottom: 1px solid #019ee2;
}

.inputBox textarea {
  height: 120px;
}

.inputBox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  pointer-events: none;
  font-size: 18px;
  font-weight: 300;
  transition: 0.3s;
}

.formBox .inputBox input:focus ~ span,
.formBox .inputBox input:valid ~ span,
.formBox .inputBox textarea:focus ~ span,
.formBox .inputBox textarea:valid ~ span {
  transform: translateY(-20px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #019ee2;
}

.inputBox input[type="submit"] {
  position: relative;
  cursor: pointer;
  background-color: #019ee2;
  color: #fff;
  border: none;
  max-width: 150px;
  padding: 12px;
}

.inputBox input[type="submit"]:hover {
  background-color: #0291ce;
}

@media (max-width: 1200px) {
  .container2 {
    width: 90%;
    min-width: auto;
    margin: 20px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); */
  }

  .container2 .contactInfo {
    top: 0;
    height: 500px;
    position: relative;
    /* box-shadow: none; */
  }

  .container2 .contactForm {
    position: relative;
    width: calc(100% - 350px);
    padding-left: 0;
    margin-left: 0;
    padding: 40px;
    height: 500px;
    /* box-shadow: none; */
  }
}

@media (max-width: 991px) {
  .contact-section::before {
    display: none;
  }
  .container2 {
    display: flex;
    flex-direction: column-reverse;
  }

  .container2 .contactForm {
    width: 100%;
    height: auto;
  }
  .container2 .contactInfo {
    width: 100%;
    height: auto;
    flex-direction: row;
  }

  .sci {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .container2 .contactForm {
    padding: 25px;
  }
  .container2 .contactInfo {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  .sci {
    margin-top: 40px;
  }
  .formBox .inputBox.w50 {
    width: 100%;
  }
}
